:root {
  --font-inter: 'Inter', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --primary: #C3DDA1;
  --secondary: #D4A2DE;
  --dgreen: #798965;
  --lila: #836589;
  --white: #F1F1F1;
  --black: #010101;
  --grey: #010101;
}

/* Standards */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-inter), sans-serif;
    background: #FFF;
    line-height: 1.6;
    font-size: 1rem;
    line-height: 1.3rem;
    overflow-x: hidden;
}

/* Verhindere horizontalen Overflow durch Bootstrap row */
.row {
    margin-left: 0;
    margin-right: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: var(--black);
    font-family: var(--font-poppins), sans-serif;
    margin-bottom: 1.25rem;
}

h1 {
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    font-size: 3.5rem;
    line-height: 3.5rem;
}

h2, .h2 {
    font-size: 2rem;
    line-height: 2.3rem;
    margin-bottom: 1.4rem;
}

h2 span {
    display: inline-block;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
}

h3 i {
    font-style: normal;
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin-bottom: 1.6rem;
    font-weight: 300;
    line-height: 1.5rem;
}

a, p, ul, ol, li {
    color: var(--black);
}

ol, ul {
    padding-left: 0!important;
}

.txt-content li, .txt-content ol li, .station ul li {
    margin-bottom: 0.5rem;
}

.txt-content li:last-child, .txt-content ol li:last-child, .station ul li:last-child {
    margin-bottom: 1.4rem;
}

.txt-content li, .station li {
    list-style: none;
    padding-left: 1.4rem;
    position: relative;
    text-align: left;
}

.txt-content ul li:before, .txt-content ol li:before, .station ul li:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    border: 2px solid var(--black);
    position: absolute;
    left: 0;
    top: 6px;
}

.center {
    text-align: center;
}

@media (min-width: 450px) {
    h1 {
        font-size: 4.2rem;
        line-height: 4.2rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 4.7rem;
        line-height: 4.7rem;
    }

    h1 span {
        display: block;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 6rem;
        line-height: 5.7rem;
    }
}

@media (min-width: 1200px) {
    h1 {
        font-size: 8rem;
        line-height: 8.3rem;
    }

    .tar {
        text-align: right;
    }
}

/* btn */

.btn {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background-color: var(--primary);
    color: var(--black);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    margin-bottom: 1.4rem;
    text-align: left;
}

.btn:hover {
    background-color: var(--dgreen);
    color: #fff;
}

.btn:after {
    margin-left: 10px;
    content: '→';
}

.btn span {
    overflow: hidden;
    font-size: 0.001rem;
    color: #fff;
}

@media (min-width: 1250px) {
    .btn {
        letter-spacing: 1px;
    }

    .btn span {
        overflow: inherit;
        font-size: inherit;
        color: inherit;
    }
}

/* section, container, usw. */


@media (min-width: 1440px) {
    main, section, footer {
        max-width: 1440px;
        margin: 0 auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* header */

header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 1rem;   
    align-items: center;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
}

.branding {
    display: inline-block;
    width: 90px;
}

@media (min-width: 992px) {
    header.scrolled {
        padding: 0.5rem 1rem;
    }

    .branding {
        width: inherit;
    }
}

@media (min-width: 1440px) {
    header {
        max-width: 100%;
        padding: 1rem;
    }
}

/* nav - menu */

nav, footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 300;
    color: var(--black);
    font-family: var(--font-poppins), sans-serif;
}

nav.mobile {
    order: 1;
}

nav.desktop {
    display: none;
}

nav ul.menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin-bottom: 0!important;
    flex-direction: column;
}

footer ul.menu {
    list-style: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    gap: .5rem;
    margin-bottom: 0!important;
}

nav ul.menu li a, footer ul.menu li a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    color: var(--black);
}

footer ul.menu li a {
    padding: 0 0.7rem;
}

nav ul.menu li a span, footer ul.menu li a span {
    z-index: 1;
    position: relative;
}

nav ul.menu li a.active:after, footer ul.menu li a.active:after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: var(--primary);
    transition: width 0.3s;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-12px);
    border-radius: 100%;
    z-index: -1;
}

@media (min-width: 992px) {
    nav.mobile {
        display: none;
    }

    nav.desktop {
        display: flex;
    }

    nav ul.menu, footer ul.menu {
        flex-direction: row;
    }
}

/* hamburger */

.burger-button {
    position: relative;
    cursor: pointer;
    z-index: 1000;
    width: 1.7rem;
    height: 1.3rem;
    display: flex;
}

.burger-icon,
.burger-icon:before,
.burger-icon:after {
    content: '';
    position: absolute;
    height: 4px;
    width: 1.7em;
    border-radius: 3px;
    background: var(--black);
    transition: all .2s ease;
}

.burger-icon {
  top: 0.75em;
}

.burger-icon:before {
  top: -0.55em;
}

.burger-icon:after {
  top: 0.55em;
}

.burger-active .burger-button .burger-icon{
  color:var(--lila);
}

.burger-active .burger-icon {
  background: transparent;
  transform: rotate(-135deg);
}

.burger-active .burger-icon:before,
.burger-active .burger-icon:after {
  top: 0;
}

.burger-active .burger-icon:before {
  transform: rotate(90deg);
}

/* mobile menu */

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.nav-open .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
    pointer-events: auto;
    padding-left: 2rem;
}

.mobile-menu .menu {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mobile-menu .menu li a {
    color: var(--black);
    font-size: 1.5rem;
}

.mobile-menu .footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0;
    padding-left: 2rem;
}

.mobile-menu .footer-menu li a {
    color: var(--grey);
    font-size: 0.9rem;
    text-decoration: none;
}

/* social-kanaele */

ul.social-kanaele {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin-bottom: 0!important;
}

ul.social-kanaele li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.001rem;
    transition: color 0.3s ease;
}

ul.social-kanaele li a img {
    display: inline-block;
    width: 1.25rem; /* adjust icon size */
    height: auto;
    vertical-align: middle;
}

ul.social-kanaele li a:hover {
    opacity: 0.7;
}

/* Mobil contact menu */

.contact-menu {
    width: 100%;
    padding: 2rem 0;
    border-top: 1px solid #ddd;
    margin-top: auto;
}

.contact-menu .contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-menu .social-kanaele {
    gap: 1rem;
    margin-bottom: 0;
}

.contact-menu .contact-info {
    list-style: none;
    padding-top: 3px;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.contact-menu .contact-info li a {
    display: block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0.3s ease;
}

.contact-menu .contact-info li a:hover {
    opacity: 0.7;
}

.contact-menu .contact-info li a.whatsapp {
    background-image: url('../assets/standard/whatsapp.svg');
}

.contact-menu .contact-info li a.phone {
    background-image: url('../assets/standard/mobile.svg');
}

.contact-menu .contact-info li a.mail {
    background-image: url('../assets/standard/mail.svg');
}

/* img-round */

.img-round {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.4rem;
    overflow: hidden;
}

.img-round img {
    z-index: 1;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 1rem;
}
 
.img-round::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%; 
    border: 20px solid var(--primary);
    border-right-color: transparent;
    border-bottom-color: transparent;
    z-index: 0;
    transform: translate(-50%, -50%) rotate(-56deg);
    transition: transform 0.6s ease;
    z-index: -1;
}  

.img-round:hover::after {
    transform: translate(-50%, -50%) rotate(556deg);
    border: 20px solid var(--secondary);
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.img-round.selfie::after {
    height: 91%;
    transform: translate(-50%, -46%) rotate(196deg);
    transition: transform 0.6s ease;
    border: 20px solid var(--secondary);
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.img-round.selfie:hover::after {
    transform: translate(-50%, -46%) rotate(356deg);
    border: 20px solid var(--primary);
    border-right-color: transparent;
    border-bottom-color: transparent;
}

@media (min-width: 1200px) {
    .img-round {
        max-width: 100%;
    }

    .img-round .round {
        width: 575px;
        height: 575px;
    }
}

/* img-container */

.img-container {
    margin-bottom: 1.4rem;
    display: block;
}

.img-container.social-media {
    display: none;
}

@media (min-width: 992px) {
    .img-container.social-media {
        display: flex;
    }
}

/* IMG Slider */

.img-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 1.4rem;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out; 
}

.slider-wrapper .slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
    text-align: center;
}

.slider-wrapper .slide.active {
    opacity: 1;
    display: block;
}

.slider-wrapper .slide img {
    margin: 0 auto;
    display: block;
}

.slider-wrapper .slide .img-round {
    margin-bottom: 0;
}

@media (min-width: 600px) {
    .slider-container {
        padding: 0 .5rem;
    }
}

@media (min-width: 992px) {
    .img-slider {
        display: none;
    }
}

/* Slider Controls - Arrow Navigation */

.slider-arrow {
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    border: 5px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.slider-arrow svg {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;  
    transform: translate(-50%, -50%);
}

.slider-arrow.prev {
    left: 0;
    transform: rotate(180deg);
}

.slider-arrow.next {
    right: 0;
    top: 55%;
}

.slider-arrow:hover {
    background: var(--black);
    border: 5px solid var(--black);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-arrow img {
    width: 24px;
    height: 24px;
    display: block;
}

.slider-arrow.prev img {
    transform: scaleX(-1);
}

@media (min-width: 992px) {
    .slider-arrow {
        width: 60px;
        height: 60px;
    }
    
    .slider-arrow img {
        width: 28px;
        height: 28px;
    }
}

/* section */
section {
    padding: 3.5% 0;
}

section .row {
    align-items: center;
}

@media (min-width: 425px) {
    section {
        padding: 5% 0;
    }
}

@media (min-width: 600px) {
    section .row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    section {
        padding: 4% 0;
    }
}

@media (min-width: 1440px) {
    section {
        padding: 3% 0;
    }
}

/* Start */

section.my-person {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 670px) {
    section.my-person .txt {
        z-index: 2;
    }
}

@media (min-width: 768px) {
    section.my-person .row {
        justify-content: space-between;
    }

    section.my-person .img-header {
        position: absolute;
        top: 50%;
        left: 50%;  
        transform: translate(-74%, -10%);
    }
}

@media (min-width: 825px) {
    section.my-person .img-header {
        transform: translate(-84%, -10%);
    }
}

@media (min-width: 920px) {
    section.my-person .img-header {
        transform: translate(-84%, -10%);
    }
}

@media (min-width: 980px) {
    section.my-person .img-header {
        transform: translate(-75%, -40%);
    }
}

@media (min-width: 1200px) {
     section.my-person .img-header {
        transform: translate(-50%, -50%);
        width: 600px;
    }
}

/* section ui-ux-marketing */

section.ui-ux-marketing {
    position: relative;
}

section.ui-ux-marketing .img-container {
    margin-bottom: 1.4rem;
}

section.ui-ux-marketing .txt-content {
    padding-bottom: 1.4rem;
    order: 1;
}

/* Tools Section Icons */

.tool-icons {
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.tool-icons.software {
    width: 100%;
}

.tool-icons .row {
    justify-content: center;
}

.tool-icons .icon-link {
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: 0.625rem;
    width: 90px;
}

.tool-icons.thumble .icon-link,
.tool-icons.merkmale .icon-link {
    width: 33.3333%;
}

.tool-icons .icon-link span {
    display: block;
    line-height: 1rem;
}

.tool-icons .icon-link.point span {
    display: none;
}

.tool-icons .icon-link:before {
    content: '';
    display: block;
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 100%;
    border: var(--primary) 10px solid;
}

.tool-icons .icon-link.point:before {
    opacity: .5;
}

.tool-icons .icon-link:after {
    content: '';
    display: block;
    width: 40px; 
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 19px auto 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.tool-icons .icon-link.line:after {
    width: 62px; 
    height: 62px;
    margin: 7px auto 0 auto;
}

@media (min-width: 425px) {
    .tool-icons.merkmale .icon-link {
        width: 25%;
    }
}

@media (min-width: 630px) {
    .tool-icons.merkmale .icon-link {
        width: 16.666%;
    }
}

@media (min-width: 680px) {
    .tool-icons.software,
    .tool-icons.apps {
        justify-content: flex-start;
    }

    .list-box .tool-icons.software {
        padding-left: 2rem;
        margin: 0 auto 0 0;
    }

    .list-box.tar .tool-icons.software {
        justify-content: flex-end;
    }

    .list-box.tar .tool-icons.software {
        padding-right: 2rem;
        padding-left: inherit;
        margin: 0 0 0 auto;
    }
}

@media (min-width: 768px) {
    .list-box.tar .tool-icons.software {
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .tool-icons .icon-link {
        font-size: .8rem;
    }

    .tool-icons.icon-size .icon-link:before {
        width: 100px;
        height: 100px;
        border: var(--primary) 15px solid;
    }

    .tool-icons.icon-size .icon-link:after {
        width: 44px; 
        height: 44px;
        margin: 28px auto 0 auto;
    }

    .tool-icons.icon-size .icon-link.line:after {
        width: 60px; 
        height: 60px;
        margin: 20px auto 0 auto;
    }

    .zeitleiste .station.tar .tool-icons.apps {
        justify-content: flex-end;
    }
}

@media (min-width: 1200px) {
    .tool-icons .icon-link {
        font-size: 1rem;
    }

    .tool-icons.icon-size .icon-link:before {
        width: 156px;
        height: 156px;
    }

    .tool-icons.icon-size .icon-link:after {
        width: 64px; 
        height: 64px;
        margin: 45px auto 0 auto;
    }

    .tool-icons.icon-size .icon-link.line:after {
        width: 90px; 
        height: 90px;
        margin: 32px auto 0 auto;
    }

    .list-box .tool-icons.software {
        margin: 0 auto 0 6rem;
        width: 400px;
    }

    .list-box.tar .tool-icons.software {
        margin: 0 6rem 0 auto;
    }
}

/* icons tools */

.tool-icons .icon-link.jtl::after {
    background-image: url('../assets/tools/jtl.svg'); 
}

.tool-icons .icon-link.adobe.photoshop::after {
    background-image: url('../assets/tools/adobe-photoshop.svg'); 
}

.tool-icons .icon-link.adobe.illustrator::after {
    background-image: url('../assets/tools/adobe-illustrator.svg'); 
}

.tool-icons .icon-link.adobe.xd::after {
    background-image: url('../assets/tools/adobe-xd.svg'); 
}

.tool-icons .icon-link.adobe.indesign::after {
    background-image: url('../assets/tools/adobe-indesign.svg'); 
}

.tool-icons .icon-link.canva::after {
    background-image: url('../assets/tools/canva.svg'); 
}

.tool-icons .icon-link.meta::after {
    background-image: url('../assets/tools/meta.svg'); 
}

.tool-icons .icon-link.figma::after {
    background-image: url('../assets/tools/figma.png'); 
}

.tool-icons .icon-link.brevo::after {
    background-image: url('../assets/tools/brevo.svg'); 
}

.tool-icons .icon-link.gitlab::after {
    background-image: url('../assets/tools/gitlab.svg'); 
}

.tool-icons .icon-link.shopify::after {
    background-image: url('../assets/tools/shopify.svg'); 
}

.tool-icons .icon-link.chatgtp::after {
    background-image: url('../assets/tools/chatgpt.svg'); 
}

.tool-icons .icon-link.wordpress::after {
    background-image: url('../assets/tools/wordpress.svg'); 
}

.tool-icons .icon-link.bootstrap::after {
    background-image: url('../assets/tools/bootstrap.svg'); 
}

.tool-icons .icon-link.shopify::after {
    background-image: url('../assets/tools/shopify.svg'); 
}

.tool-icons .icon-link.shopware::after {
    background-image: url('../assets/tools/shopware.png'); 
}

.tool-icons .icon-link.html5::after {
    background-image: url('../assets/tools/html5.png'); 
}

.tool-icons .icon-link.sass::after {
    background-image: url('../assets/tools/sass.svg'); 
}

.tool-icons .icon-link.css3::after {
    background-image: url('../assets/tools/css3.png'); 
}

.tool-icons .icon-link.javascript::after {
    background-image: url('../assets/tools/javascript.svg'); 
}

.tool-icons .icon-link.php::after {
    background-image: url('../assets/tools/php.svg'); 
}

.tool-icons .icon-link.midjourney::after {
    background-image: url('../assets/tools/midjourney.svg'); 
}

.tool-icons .icon-link.amazon::after {
    background-image: url('../assets/tools/amazon.svg'); 
}

.tool-icons .icon-link.gitlab::after {
    background-image: url('../assets/tools/gitlab.svg'); 
}

.tool-icons .icon-link.clockify::after {
    background-image: url('../assets/tools/clockify.png'); 
}

.tool-icons .icon-link.paqato::after {
    background-image: url('../assets/tools/paqato.png'); 
}

.tool-icons .icon-link.asana::after {
    background-image: url('../assets/tools/asana.svg'); 
}

.tool-icons .icon-link.miro::after {
    background-image: url('../assets/tools/miro.png'); 
}

.tool-icons .icon-link.slack::after {
    background-image: url('../assets/tools/slack.svg'); 
}

.tool-icons .icon-link.microsoft-office-teams::after {
    background-image: url('../assets/tools/microsoft_office_teams.svg'); 
}

.tool-icons .icon-link.google-gemini::after {
    background-image: url('../assets/tools/google_gemini.svg'); 
}

.tool-icons .icon-link.zeplin::after {
    background-image: url('../assets/tools/zeplin.svg'); 
}

.tool-icons .icon-link.datev::after {
    background-image: url('../assets/tools/datev.png'); 
}

.tool-icons .icon-link.adobe.pdf::after {
    background-image: url('../assets/tools/adobe-acrobat.svg'); 
}

.tool-icons .icon-link.adobe.dreamweaver::after {
    background-image: url('../assets/tools/adobe-dreamweaver.svg'); 
}

.tool-icons .icon-link.phpstorm::after {
    background-image: url('../assets/tools/phpstorm.svg'); 
}

.tool-icons .icon-link.linkedin::after {
    background-image: url('../assets/tools/linkedin.png'); 
}

/* icons tools projekte nav */

.tool-icons .icon-link.websites::after {
    background-image: url('../assets/projekte/websites.svg'); 
}

.tool-icons .icon-link.branding::after {
    background-image: url('../assets/projekte/branding.svg'); 
}

.tool-icons .icon-link.fotografie::after {
    background-image: url('../assets/projekte/fotografie.svg'); 
}

.tool-icons .icon-link.e-commerce::after {
    background-image: url('../assets/projekte/ecommerce.svg'); 
}

.tool-icons .icon-link.social-media::after {
    background-image: url('../assets/projekte/social-media-marketing.svg'); 
}

.tool-icons .icon-link.printmedien::after {
    background-image: url('../assets/projekte/newsletter-vk.svg'); 
}

/* section visitenkarte */

section.visitenkarte {
    position: relative;
}

section.visitenkarte .img-round {
    margin-bottom: 1.4rem;
}

section.visitenkarte .txt-content {
    order: 1;
}

/* icons eigenschaften */

.tool-icons .icon-link.kreativ::after {
    background-image: url('../assets/hobbys/kreativitat.svg'); 
}

.tool-icons .icon-link.strukturiert::after {
    background-image: url('../assets/hobbys/strukturierte-daten.svg'); 
}

.tool-icons .icon-link.zuverlaessig::after {
    background-image: url('../assets/hobbys/zuverlassigkeit.svg'); 
}

.tool-icons .icon-link.lernfreudig::after {
    background-image: url('../assets/hobbys/lernen.svg'); 
}

.tool-icons .icon-link.kommunikativ::after {
    background-image: url('../assets/hobbys/sprechblase.svg'); 
}

.tool-icons .icon-link.loesungsorientiert::after {
    background-image: url('../assets/hobbys/losung.svg'); 
}

/* Section zitat */

section.eigenschaften,
section.abschlusswort {
    flex-direction: column!important;
    justify-content: center;
}

section.eigenschaften > p {
    margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
    section.eigenschaften > .row {
        justify-content: center;
    }
}

/* zitat */

.zitat {
    margin-bottom: 1.5rem;
    text-align: center;
}

.zitat blockquote {
    font-family: var(--font-poppins), sans-serif;
    font-size: 2rem;
    line-height: 2.3rem;
    font-weight: 300;
    margin-bottom: 1.4rem;
    position: relative;
}

.zitat blockquote span {
    position: relative;
    padding-left: 13%;
}

.zitat blockquote span:before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    font-size: 3rem;
    position: absolute;
    left: 0;
    bottom: 20%;
    color: var(--primary);
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../assets/anführungszeichen-zitat.svg');
}

.zitat p small {
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.zitat p small:before {
    content: '— ';
}

.zitat p small:after {
    content: ' —';
}

@media (min-width: 425px) {
    .zitat blockquote span {
        padding-left: 11%;
    }
}

@media (min-width: 550px) {
    .zitat blockquote span {
        padding-left: 8%;
    }
}

@media (min-width: 600px) {
    .zitat blockquote {
        font-size: 3rem;
        line-height: 3rem;
    }

    .zitat blockquote span {
        padding-left: 12%;
    }

    .zitat blockquote span:before {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 768px) {
    .zitat blockquote {
        font-size: 4rem;
        line-height: 4rem;
    }

    .zitat blockquote span {
        padding-left: 14%;
    }

    .zitat blockquote span:before {
        width: 90px;
        height: 90px;
        bottom: 10%;
    }
}

@media (min-width: 1024px) {
    .zitat blockquote span {
        padding-left: 15%;
    }

    .zitat blockquote span:before {
        width: 110px;
        height: 110px;
        bottom: 6%;
    }
}

@media (min-width: 1100px) {
    .zitat blockquote span {
        padding-left: 13%;
    }
}

@media (min-width: 1250px) {
    .zitat blockquote {
        font-size: 5rem;
        line-height: 5.3rem;
    }

    .zitat blockquote span {
        padding-left: 14%;
    }

    .zitat blockquote span:before {
        width: 120px;
        height: 120px;
        bottom: 10%;
    }
}

/* Section Lebenslauf */

section.lebenslauf {
    text-align: center;
}

section.lebenslauf .headline-grafic {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 5.8rem;
    color: var(--secondary);
    text-transform: uppercase;
    transform: translateX(-1.25%);
}

section.lebenslauf a {
    margin-bottom: 1.5rem;
    text-align: center;
}

section.lebenslauf .txt-p {
    margin-bottom: 2rem;
    text-align: center;
}

section.lebenslauf .h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 0;
}

section.lebenslauf h2.h3 {
    font-size: 1.25rem!important;
    line-height: 1.5rem!important;
    font-weight: 700!important;
}

section.lebenslauf .h3 small {
    font-size: 1rem;
    color: var(--lila);
    display: block;
    margin-bottom: 1rem;
}

section.lebenslauf h3 {
    font-weight: 700;
}

section.lebeslauf h3 span {
    font-weight: 300;
}

.lebenslauf h2.center {
    margin-bottom: 0;
}

.zeitleiste {
    position: relative;
    z-index: 0;
}

.zeitleiste::after {
    content: '';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 100%;
    background: var(--secondary);
    z-index: -1;
} 

.zeitleiste.schule::after {
    background: var(--lila);
    top: 0;
}

@media (min-width: 576px) {
    .zeitleiste .station .txt-content {
        padding-left: 1rem;
    }

    .zeitleiste .station.tar .txt-content {
        padding-left: inherit;
        padding-right: 1rem;
    }
}

@media (min-width: 600px) {
    section.lebenslauf .row {
        align-items: inherit;
    }

    section.lebenslauf .headline-grafic {
        font-size: 9.5rem;
        line-height: 9.5rem;
    }
}

@media (min-width: 992px) {
    section.lebenslauf .headline-grafic {
        font-size: 17rem;
        line-height: 17.2rem;
    }

    section.lebenslauf .h3 small {
        display: inline-block;
    }

    .zeitleiste::after {
        top: -5rem;
    } 
}

@media (min-width: 1024px) {
    .zeitleiste .txt-content {
        width: 360px;
    }
}

@media (min-width: 1200px) {
    .zeitleiste .txt-content {
        width: 440px;
    }
}

/* station */

.station {
    position: relative;
    margin-bottom: 1.4rem;
    padding: 1.5rem 1rem 0;
    margin-top: 5rem;
    background: #fff;
}

.station:first-child {
    margin-top: 3rem;
}

.zeitleiste .point-line::after {
    top: 0;
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-2.2rem);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 100%;
    border: var(--secondary) 10px solid;
    z-index: 1;
}

.zeitleiste.schule .point-line::after {
    border: var(--lila) 10px solid;
}

.station p strong {
    font-weight: 700;
    color: var(--lila);
    font-size: 1rem;
    display: block;
}

@media (min-width: 578px) {
    .station {
        margin-top: 0;
        background: transparent;
        text-align: left;
    }

    .zeitleiste .point-line::after {
        left: 0;
        top: 5.5rem;
    }

    .zeitleiste .point-line.tar::after {
        left: inherit;
        right: -13%;
    }

    .station.four,
    .station.three {
        margin-top: 6rem;
    }

    .station .white-box::after {
        content: '';
        position: absolute;
        top: 6.5rem;
        right: -10px;
        width: 30px;
        height: 100%;
        background: #fff;
    }

    .station.four .white-box::after {
        content: '';
        position: absolute;
        top: 6.5rem;
        right: -10px;
        width: 30px;
        height: 100%;
    }
}

@media (min-width: 600px) {
    .station:first-child {
        margin-top: 0;
    }

    .zeitleiste .point-line::after {
        left: 0;
        transform: translateX(-50%);
    }

    .zeitleiste .point-line.tar::after {
        right: 0;
        left: inherit;
        transform: translateX(50%);
    }

    .station p strong {
        font-size: 1.25rem;
    }
}

@media (min-width: 680px) {
    .station {
        text-align: left;
        padding-left: 3rem;
    }

    .station.tar {
        padding-right: 3rem;
        padding-left: 1rem;
    }

    .station.tar .txt-content {
        margin: 0 0 0 auto;
    }
}

@media (min-width: 992px) {
    .station {
        background: #fff;
    }

    .station::after {
        left: -25%;
        transform: translateY(-50%);
    }

    .zeitleiste .point-line::after {
        left: -25%;
        transform: translateX(3%) translateY(-42%);
    }

    .zeitleiste .point-line.tar::after {
        right: -20%;
        left: inherit;
    }

    .station {
        text-align: left;
        padding-left: inherit;
    }

    .station.tar {
        padding-right: inherit;
        padding-left: 1rem;
    }

    .station .white-box::after {
        right: -22%;
    }
}

@media (min-width: 1024px) {
    .lift-up {
        margin-top: -6rem;
    }

    .zeitleiste .point-line::after {
        left: -25%;
        transform: translateX(3%) translateY(-42%);
    }

    .zeitleiste.schule .point-line::after {
        left: -20%;
        transform: translateX(-50%);
    }

    .zeitleiste .point-line.tar::after {
        right: -25%;
        left: inherit;
        transform: translateX(-3%) translateY(-31%);
    }

    .zeitleiste .point-line::before {
        content: '';
        position: absolute;
        top: 5.5rem;
        left: -22%;
        width: 19%;
        height: 10px;
        background: var(--secondary);
        border-radius: 5px;
        display: block;
    }

    .zeitleiste.schule .point-line::before {
        top: 6.45rem;
        background: var(--lila);
    }

    .zeitleiste.index .point-line::before::first-child {
        display: none;
    }

    .zeitleiste .point-line.tar::before {
        right: -22%;
        left: inherit;
    }

    .zeitleiste.tools .station.four .white-box::after {
        right: -23%;
    }
}

@media (min-width: 1200px) {
    .zeitleiste.index .point-line::after {
        transform: translateX(-52%) translateY(-42%);
    }

    .zeitleiste.index .point-line.tar::after {
        transform: translateX(52%) translateY(-31%);
        left: inherit;
    }

    .zeitleiste.index .station .white-box::after {
        right: -28%;
    }

    .zeitleiste.tools .point-line::after {
        transform: translateX(12%) translateY(-42%);
    }

    .zeitleiste.tools .point-line.tar::after {
        transform: translateX(-12%) translateY(-31%);
    }
}

@media (min-width: 1440px) {
    .zeitleiste.tools .point-line::after {
        transform: translateX(26%) translateY(-42%);
    }

    .zeitleiste.tools .point-line.tar::after {
        transform: translateX(-26%) translateY(-31%);
    }
}

/* section webdesign */

section.webdesign .thumb-txt {
    display: flex;
    flex-direction: column;
}

section.webdesign .thumb-txt p:first-child {
    font-style: italic;
}

section.webdesign .thumb-txt p.date {
    font-weight: 900;
    font-size: 2.25rem;
    line-height: 3rem;
    text-align: center!important;
    margin-left: 1rem;
}

section.webdesign .thumb-txt p.date span {
    color: var(--primary);
}

section.webdesign .img-container {
    margin-bottom: 1.4rem;
    position: relative;
    border: 10px solid var(--black);
    border-radius: 15px;
}

section.webdesign .img-container.scrollable.green {
    border: 10px solid var(--primary);
}

section.webdesign .img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.img-container.scrollable {
    max-height: 50vh;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

.img-container.scrollable::-webkit-scrollbar {
    width: 8px;
}

.img-container.scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.img-container.scrollable::-webkit-scrollbar-thumb {
    background: var(--dgreen);
    border-radius: 10px;
}

.img-container.scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--dgreen);
}

.img-container-icon {
    position: relative;
}

.img-container-icon button.wish {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--secondary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: floatUpDown 2s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
} 

.img-container-icon button.wish:hover {
    animation-play-state: paused;
    background: var(--lila);
}

.img-container-icon button.wish svg {
    width: auto;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (min-width: 992px) {
    section.webdesign {
        align-items: flex-start!important;
    }

    section.webdesign .thumb-txt {
        flex-direction: row!important;
        align-items: center;
        justify-content: space-between;
    }

    section.webdesign .thumb-txt p {
        text-align: right;
    }

    section.webdesign .thumb-txt p.date {
        width: 520px;
    }

    section.webdesign .img-container.scrollable.green {
        max-height: 70vh;
    }

    section.webdesign .thumb-txt p {
        font-size: .8rem;
        line-height: 1rem;
    }
}

@media (min-width: 1024px) {
    section.webdesign .thumb-txt {
        margin-top: -6rem;
    }
}

/* social media - phone img */

.social-media {
    position: relative;
    margin-bottom: 3rem;
}

.social-media .phone {
    transition: transform 0.5s ease;
    transform: rotate(45deg) translateX(-200%);
    width: 200px;
    opacity: 0;
}

.social-media .phone.one {
    position: absolute;
    top: -312px;
    left: -40px;
}

.social-media .phone.two {
    position: absolute;
    top: -300px;
    left: 250px;
}

.social-media .phone.three {
    position: absolute;
    top: 0;
    left: -50px;
}

.social-media .phone.four {
    position: absolute;
    top: 40px;
    left: 220px;
}

@media (min-width: 1024px) {
    section.social {
        padding: 16% 0!important;
    }

    .social-media .phone {
        width: 233px;
    }

    .social-media .phone.one {
        position: absolute;
        top: -392px;
        left: -60px;
    }

    .social-media .phone.two {
        position: absolute;
        top: -410px;
        left: 310px;
    }

    .social-media .phone.three {
        position: absolute;
        top: -60px;
        left: -40px;
    }
}

@media (min-width: 1250px) {
    section.social {
        padding: 16% 0 8%!important;
    }
}

/* social media - phone img slider */

.social-media .phone.slide-in {
    transform: rotate(45deg) translateX(0);
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.social-media .phone.one.slide-in {
    transition-delay: 0.5s;
}

.social-media .phone.two.slide-in {
    transition-delay: 0.8s;
}

.social-media .phone.three.slide-in {
    transition-delay: 1.1s;
}

.social-media .phone.four.slide-in {
    transition-delay: 1.4s;
}

/* section abschlusswort */
section.abschlusswort .row {
    justify-content: center;
}

section.abschlusswort .row div:last-child p,
section.abschlusswort .row div:last-child {
    text-align: center;
}

/* UEBER MICH */
/* section ui design */

section.ui-design .row {
    position: relative;
}

section.ui-design .row .img-order {
    order: 1;
}

@media (min-width: 576px) {
    section.ui-design .row .img-order {
        order: inherit;
    }
}

/* section tools-ueber-mich */

section.liste .row:first-child {
    text-align: center;
    justify-content: center;
}

section.liste .tool-lists .row {
    align-items: start;
}

section.liste .tool-lists .list-box {
    padding-top: 3rem;
    position: relative;
}

section.liste .tool-lists .list-box .txt-content {
    text-align: center;
}

section.liste .tool-lists .list-box .txt-content {
    width: 300px;
    margin: 0 auto;
}

section.liste .tool-lists .list-box .txt-content h3 span {
    display: inline-block;
}

@media (min-width: 576px) {
    section.liste .tool-lists .list-box .txt-content {
        width: 250px;
    }
}

@media (min-width: 630px) {
    section.liste .tool-lists .list-box .txt-content {
        width: 290px;
    }
}

@media (min-width: 680px) {
    section.liste .tool-lists {
        position: relative;
    }

    section.liste .tool-lists::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 100%;
        background: var(--secondary);
        z-index: -1;
        border-radius: 5px;
    }

    section.liste .tool-lists::before {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        transform: translateX(-50%);
        width: 66px;
        height: 27px;
        background: url('../assets/arrow-ueber-mich.svg') no-repeat center;
        background-size: contain;
        z-index: -1;
        display: block;
    }

    section.liste .tool-lists .list-box .txt-content {
        text-align: left;
        margin: 0 auto 0 2rem;
    }

    section.liste .tool-lists .list-box.tar .txt-content {
        margin: 0 2rem 0 auto;
    }
}

@media (min-width: 768px) {
    section.liste .tool-lists .list-box::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -10px;
        transform: translateY(-50%);
        width: 30px;
        height: 10px;  
        background: var(--secondary);
        z-index: -1;
        border-radius: 5px;
    }

    section.liste .tool-lists .list-box.tar::after {
        top: 50%;
        right: -10px;
        left: inherit;
        transform: translateY(-50%);
    }

    section.liste .tool-lists.karriere .list-box .txt-content {
        width: 310px;
    }
}

@media (min-width: 900px) {
    section.liste .tool-lists .list-box .txt-content {
        text-align: left;
        padding-left: 1rem;
        margin: 0 auto 0 2rem;
    }

    section.liste .tool-lists .list-box.tar .txt-content {
        padding-right: 1rem;
        padding-left: inherit;
        margin: 0 2rem 0 auto;
    }

    section.liste .tool-lists .list-box::after {
        width: 40px;
    }
}

@media (min-width: 1024px) {
    section.liste .tool-lists.karriere .list-box .txt-content {
        width: 370px;
    }
}

@media (min-width: 1200px) {
    section.liste .tool-lists .list-box .txt-content {
        margin: 0 auto 0 8rem;
    }

    section.liste .tool-lists .list-box.tar .txt-content {
        margin: 0 8rem 0 auto;
    }

    section.liste .tool-lists .list-box::after {
        width: 80px;
    }
}

/* section allrounderin */

section.allrounderin {
    padding: 3.5% 0 80%;
    position: relative;
    margin-bottom: 10%;
}

section.allrounderin::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/ueber-mich/allrounderin.svg') no-repeat center;
    background-size: contain;
    background-position: center bottom;
}

@media (min-width: 710px) {
    section.allrounderin {
        padding: 5% 0;
    }

    section.allrounderin .txt-content {
        padding-right: 50%;
    }

    section.allrounderin::after {
        width: 65%;
        z-index: -1;
        background-position: right -3rem center;
    }
}

@media (min-width: 768px) {
    section.allrounderin .txt-content {
        padding-right: inherit;
    }

    section.allrounderin::after {
        width: 70%;
        background-position: right -4rem center;
    }
}

@media (min-width: 1024px) {
    section.allrounderin::after {
        background-position: right -5rem center;
    }
}

@media (min-width: 1440px) {
    section.allrounderin::after {
        background-position: right center;
    }
}

/* section weiterbildung */

section.weiterbildung {
    padding-bottom: inherit!important;
}

/* section mein-ausgleich */

section.mein-ausgleich {
    position: relative;
    padding: 12% 0 140%;
}

section.mein-ausgleich .row {
    position: relative;
    z-index: 1;
}

section.mein-ausgleich::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/ueber-mich/sabrina-dorn-hobbys.png') no-repeat right;
    background-size: contain;
    background-position: right -1rem bottom;
    z-index: 0;
}

@media (min-width: 710px) {
    section.mein-ausgleich {
        padding: 12% 0;
    }

    section.mein-ausgleich .txt-content {
        padding-right: 50%;
    }

    section.mein-ausgleich::after {
        width: 50%;
    }
}

@media (min-width: 768px) {
    section.mein-ausgleich .txt-content {
        padding-right: inherit;
    }
}

@media (min-width: 1200px) {
    section.mein-ausgleich::after {
        width: 100%;
    }
}

@media (min-width: 1440px) {
    section.mein-ausgleich::after {
        background-position: right 1rem bottom;
    }
}

/* section images */

section.images {
    padding: inherit!important;
}

.image-boxes {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.image-boxes .image-box {
    width: 33.3333%;
}

/* LEBENLAUF */
/* section entwicklung */

section.entwicklung .row {
    position: relative;
    justify-content: center;
    text-align: center;
}

/* section leistung */

section.leistung.liste {
    padding-top: 0!important;
}

/* setion lebenslauf */

section.lebenslauf .zeitleiste.tools .row {
    align-items: inherit;
}

section.lebenslauf .zeitleiste.tools .txt-content.new-path {
    padding: 3rem 0;
    border-radius: 10px;
    text-align: left;
    position: relative;
    z-index: 1;
}

section.lebenslauf .zeitleiste.tools .txt-content.new-path::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    background-color: var(--primary);
    width: 150%;
    height: 100%;
    z-index: -1;
    border-radius: 100%;
}

section.lebenslauf .zeitleiste.tools .txt-content.new-path h2 {
    font-weight: 700;
    font-size: 2rem;
}

@media (min-width: 425px) {
    section.lebenslauf .zeitleiste.tools .txt-content.new-path h2 {
        font-size: 2.5rem;
    }

    section.lebenslauf .zeitleiste.tools .txt-content.new-path {
        padding: 3rem 0 3rem 1rem;
    }
}

@media (min-width: 1024px) {
    section.lebenslauf .zeitleiste.tools .txt-content.new-path {
        padding: 3rem 0 3rem 3rem;
        margin-top: -24rem;
    }

    section.lebenslauf .zeitleiste.tools .row {
        align-items: center;
    }
}

@media (min-width: 1200px) {
    section.lebenslauf .zeitleiste.tools .txt-content.new-path h2 {
        font-size: 3rem;
    }
}

/* Schule & Ausbildung */

.lebenslauf.schule .txt-content h2 {
    font-weight: 700;
    color: var(--lila);
    padding-left: 10px;
}

@media (min-width: 576px) {
    .lebenslauf.schule {
        margin-top: -50%;
    }

    .lebenslauf.schule .txt-content {
        text-align: left;
    }

    .zeitleiste.schule::after {
        top: 0;
    }

    .zeitleiste.schule .station .txt-content.white-box::after {
        content: '';
        width: 30px;
        background-color: #fff;
        position: absolute;
    }

    .zeitleiste.schule .station:first-child .txt-content.white-box::after {
        top: -5.5rem;
        left: -15px;
        height: 50%
    }

    .zeitleiste.schule .station:last-child .txt-content.white-box::after {
        top: 5.5rem;
        left: -15px;
        height: 80%;
    }
}

@media (min-width: 600px) {
     .zeitleiste.schule .station:first-child .txt-content.white-box::after {
        top: inherit;
        bottom: 68%;
        height: 100%
    }
}

@media (min-width: 820px) {
     .zeitleiste.schule .station:first-child .txt-content.white-box::after {
        bottom: 65%;
    }
}

@media (min-width: 850px) {
     .zeitleiste.schule .station:first-child .txt-content.white-box::after {
        bottom: 60%;
    }
}

@media (min-width: 992px) {
    .zeitleiste.schule .station:first-child .txt-content.white-box::after {
        bottom: 56%;
        left: -24%;
    }

    .zeitleiste.schule .station:last-child .txt-content.white-box::after {
        left: -24%;
    }
}

@media (min-width: 1024px) {
    .lebenslauf.schule .txt-content h2 {
        font-size: 2.5rem;
    }
}

/* Projekte start */

section.start {
    padding-bottom: 0!important;
}

/* section projekte */

section.projekte {
    margin: 0 1rem;
}

section.projekte .btn span {
    display: none;
}

section.projekte .btn.later span {
    display: inline;
}

section.projekte .btn.later {
    background-color: #ddd;
    display: block;
}

section.projekte .projekt-nav {
    display: none;
}

section.projekte ul.projekt-icons-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

section.projekte .projekt-nav.last {
    padding-bottom: 5%;
}

@media (min-width: 768px) {
    section.projekte .projekt-nav {
        justify-content: center;
        display: flex;
    }
}

section.projekte ul.projekt-icons-list li a span {
    display: none;
}

section.projekte .projekt-item p strong {
    font-weight: 700;
    display: block;
}

section.projekte .projekt-abschluss h2 {
    font-weight: 700;
}

@media (min-width: 1200px) {
    section.projekte .projekt-abschluss h2 {
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
}

section.projekte .projekt-abschluss .btn {
    background-color: var(--secondary);
}

.projekt-item,
.projekt-abschluss {
    transition: all 0.5s ease;
    opacity: 1;
    transform: scale(1);
}

.projekt-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.projekt-item.fade-in {
    animation: fadeInScale 0.5s ease forwards;
}

.projekt-item.fade-out {
    animation: fadeOutScale 0.3s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeOutScale {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
}

/* filter navigation */

.projekt-filter-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    gap: 0.75rem;
}

.projekt-filter-mobile label {
    margin-bottom: 0;
}

.projekt-filter-mobile select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: #fff;
    color: var(--black);
    font-family: var(--font-inter), sans-serif;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.projekt-filter-mobile select:hover {
    border-color: var(--secondary);
}

.projekt-filter-mobile select:focus {
    outline: none;
    border-color: var(--secondary);
}

.projekt-nav.last .projekt-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .projekt-filter-mobile {
        display: none;
    }
}

/* section nav icons */

section.projekte .projekt-icons-list li a:hover::before {
    border: var(--secondary) 10px solid;
}

/* footer */

footer {
    padding: 5% 1rem;
    text-align: center;
    justify-content: center;
}

@media (min-width: 1250px) {
    footer {
        padding: 2%;
    }
}

/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: var(--black);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@media (min-width: 768px) {
    .whatsapp-float {
        display: flex;
    }
}