*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body {
    background: #0a0a0a;
    color: #fff;
}

#header {
    width: 100%;
    height: 100vh;
    background-image: url(img/portrait.png);
    background-size: cover;
    background-position: center;
    padding: 10px 10%;
}

.container {
    padding: 10px 10%;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

.logo-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.logo-l {
    color: #ff004f;
    text-shadow: 0 0 15px rgba(255, 0, 79, 0.6);
    font-weight: 700;
}

nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

nav ul {
    margin: 0;
    padding: 0;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 0 5px;
}

nav ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    transition: all 0.3s ease;
    padding: 6px 8px;
    display: inline-block;
}

nav ul li a:hover{
    color: #ff004f;
    text-shadow: 0 0 10px rgba(255, 0, 79, 0.5);
}

.header-text{
    margin-top: 22%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.header-text .job-title {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 26px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    display: inline-block;
}

.header-text h1{
    font-size: 60px;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 15px 25px;
    display: inline-block;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.header-text h1 span{
    color: #ff004f;
    text-shadow: 0 0 20px rgba(255, 0, 79, 0.6);
}

.header-text .location {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 36px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    display: inline-block;
}

/*---------------about---------------*/

#about{
    padding: 60px 0 40px 0;
    color: #e0e0e0;
}
.row{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.about-col-1{
    flex-basis: 35%;
    display: fixed;
}
.about-col-1 img{
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}
.about-col-2{
    flex-basis: 60%;
    display: flex;
    flex-direction: column;
}

.about-col-2 > p {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.sub-title{
    font-size: 38px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 12px 25px;
    display: inline-block;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.about-col-2 > br {
    display: none;
}

.tab-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.tab-titles{
    display: flex;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px;
    width: fit-content;
    gap: 8px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.tab-links{
    margin-right: 0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: #e0e0e0;
    text-align: center;
    white-space: nowrap;
}

.tab-links:hover{
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.tab-links.active-link{
    background: rgba(255, 0, 79, 0.25);
    border: 1px solid rgba(255, 0, 79, 0.4);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 79, 0.3);
}

.tab-contents{
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: none;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    flex: 1;
    overflow: hidden;
}

.tab-contents.active-tab{
    display: flex;
}

.tab-contents ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

.tab-contents ul li{
    list-style: none;
    margin: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    transition: all 0.3s ease;
    line-height: 1.5;
    color: #e0e0e0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.tab-contents ul li:hover{
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border: 1px solid rgba(255, 0, 79, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 79, 0.2);
}

.tab-contents ul li span{
    color: #ff004f;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 0, 79, 0.4);
    display: block;
    margin-bottom: 8px;
}


/*---------------services---------------*/

#services{
    padding: 40px 0;
}

.services-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.services-list div{
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    font-size: 13px;
    font-weight: 300;
    border-radius: 20px;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    overflow: hidden;
}

.services-list div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 79, 0.1), rgba(255, 107, 157, 0.1));
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: 20px;
}

.services-list div i{
    font-size: 50px;
    margin-bottom: 30px;
    color: #ff004f;
    filter: drop-shadow(0 0 10px rgba(255, 0, 79, 0.5));
    position: relative;
    z-index: 1;
}

.services-list div h2{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.services-list div p{
    position: relative;
    z-index: 1;
}
.services-list div a{
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    margin-top: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.services-list div:hover{
    border: 1px solid rgba(255, 0, 79, 0.3);
    box-shadow: 0 12px 40px 0 rgba(255, 0, 79, 0.25);
}

.services-list div:hover::before {
    opacity: 1;
}

/*---------------portfolio---------------*/
#portfolio{
    padding: 40px 0;
}

.work-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}
.work{
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: border 0.2s ease, box-shadow 0.2s ease;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.work img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
    transition: none;
}

.layer{
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.layer h3{
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.layer p{
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.layer a{
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: rgba(255, 0, 79, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 79, 0.4);
}
.layer a:hover{
    background: rgba(255, 0, 79, 0.6);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 0, 79, 0.6);
}

.work:hover .layer{
    height: 100%;
}

.work:hover{
    border: 1px solid rgba(255, 0, 79, 0.3);
    box-shadow: 0 12px 40px 0 rgba(255, 0, 79, 0.25);
}

.btn{
    display: block;
    margin: 50px auto;
    width: fit-content;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 50px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    font-weight: 500;
}
.btn:hover{
    background: rgba(255, 0, 79, 0.3);
    border: 1px solid rgba(255, 0, 79, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 79, 0.4);
}

/*---------------contact---------------*/
#contact{
    padding: 40px 0;
}

.contact-left{
    flex-basis: 35%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.contact-right{
    flex-basis: 60%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}
.contact-left p{
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.contact-left p:hover{
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}
.contact-left p i{
    color: #ff004f;
    margin-right: 15px;
    font-size: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 79, 0.5));
}
.social-icons{
    margin-top: 30px;
    display: flex;
    gap: 15px;
}
.social-icons a{
    text-decoration: none;
    font-size: 30px;
    color: #ababab;
    display: inline-block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.social-icons a:hover{
    color: #ff004f;
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 0, 79, 0.2);
    border: 1px solid rgba(255, 0, 79, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 79, 0.4);
}
.btn.btn2{
    display: inline-block;
    background: rgba(255, 0, 79, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 0, 79, 0.5);
    box-shadow: 0 8px 32px rgba(255, 0, 79, 0.3);
}
.btn.btn2:hover{
    background: rgba(255, 0, 79, 0.5);
    box-shadow: 0 12px 40px rgba(255, 0, 79, 0.5);
}
.contact-right form{
    width: 100%;
}
form input, form textarea{
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    margin: 15px 0;
    color: #fff;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}
form input:focus, form textarea:focus{
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 0, 79, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 79, 0.2);
}
form input::placeholder, form textarea::placeholder{
    color: rgba(255, 255, 255, 0.5);
}
form .btn2{
    padding: 14px 60px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 500;
}
.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    font-weight: 300;
    margin-top: 40px;
}
.copyright i{
    color: #ff004f;
}

/* Floating Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: rgba(255, 0, 79, 0.2);
    border-color: rgba(255, 0, 79, 0.5);
    box-shadow: 0 8px 32px 0 rgba(255, 0, 79, 0.3);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}


/*Impresum und Datenschutzerklärung Popup*/

/* --- Popup (Impressum/Datenschutz) --- */
.imprint-link {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.imprint-link:hover {
    color: #ff004f;
}

.popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9); /* Dunkle Abdeckung */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Standardmässig unsichtbar */
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

/* Wird aktiv, wenn der Hash-Tag in der URL gesetzt ist (z.B. #popup-imprint) */
.popup-modal:target {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: #111111; /* Dunkler Hintergrund, damit es sich abhebt */
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto; /* Scrollbar, falls Text zu lang */
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.popup-content h2 {
    margin-bottom: 20px;
    color: #ff004f;
}

.popup-content h3 {
    margin-top: 15px;
    margin-bottom: 5px;
}

.popup-content p {
    font-size: 14px;
    line-height: 1.5;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    line-height: 20px;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ff004f;
}

/* Mobile Anpassung: Reduziert Padding für kleinere Bildschirme */
@media (max-width: 850px) {
    .popup-content {
        padding: 20px;
        max-width: 95%;
    }
}

/*---------------CSS für Handys / Tablets---------------*/
nav .fas{
    display: none;
}

/* Name jede sekunde Geschrieben Animation */
.type-name::after{
    content: '|';
    margin-left: 2px;
    animation: blink 0.9s steps(1, end) infinite;
}
@keyframes blink { 50% { opacity: 0; } }




/* <--- breakpoints ---> */
@media (max-width: 850px){
    /* Header & Typografie */
    #header{ background-image: url(img/phone-portrait.png); }
    .header-top{ flex-direction: row; justify-content: space-between; align-items: center; }
    .logo-text{ font-size: 22px; padding: 10px 22px; }
    .header-text{ margin-top: 65%; }
    .header-text h1{ font-size: 35px; padding: 10px 25px; }
    .header-text .job-title{ font-size: 16px; padding: 7px 16px; }
    .header-text .location{ font-size: 20px; padding: 7px 16px; }
    .sub-title{ font-size: 35px; }

    /* KORREKTUR: Allgemeine Symmetrie und festeres Padding */
    .container {
        padding: 10px 20px; /* Fester Abstand für Symmetrie */
    }

    /* KORREKTUR: Zentrierung für Titel, Tabs und Buttons */
    .sub-title {
        display: table; /* Zentriert den Titel selbst */
        margin-left: auto;
        margin-right: auto;
    }
    .tab-titles {
        margin-left: auto; /* Zentriert die Tab-Buttons (Skills, Erfahrungen, Ausbildung) */
        margin-right: auto;
    }
    .btn {
        margin-left: auto; /* Zentriert den "Mehr Anzeigen" Button */
        margin-right: auto;
    }
    .social-icons {
        justify-content: center; /* Zentriert die Social Media Icons */
    }

    /* KORREKTUR: "Über mich" Spalten und Text (für Symmetrie) */
    .about-col-1, .about-col-2{ flex-basis: 100%; }
    .about-col-1{ margin-bottom: 30px; }
    .about-col-1 img{ width: 100%; }
    .about-col-2 > p {
        text-align: center; /* Zentriert den Haupt-Über-mich-Text */
    }
    .tab-contents ul {
        grid-template-columns: 1fr; /* Stapelt die Skills untereinander */
        gap: 15px;
    }
    .tab-links{ font-size: 14px; margin-right: 0; }
    .tab-titles{ flex-wrap: wrap; gap: 10px; }


    /* KORREKTUR: Layout Stacks */
    .services-list{ grid-template-columns: 1fr; grid-gap: 20px; }
    .services-list div{ padding: 25px; }
    .work-list{ grid-template-columns: 1fr; grid-gap: 30px; }
    .contact-left, .contact-right{ flex-basis: 100%; margin-bottom: 20px; }
    .contact-left{ padding: 20px; }
    .copyright{ font-size: 14px; }
    .scroll-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; font-size: 18px; }

    /* Navigation Container: kein doppelter Rand im Mobile */
    nav{ background: transparent; border: 0; box-shadow: none; padding: 0; }

    /* Burger Button */
    nav .fas{
        display: flex; align-items: center; gap: 12px; color: #fff; cursor: pointer; z-index: 1001;
        background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.2); border-radius: 30px; padding: 11px 27px;
        box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37); font-family: 'Poppins', sans-serif; font-weight: 500;
        font-size: 0;
    }
    nav .fas::before{
        content: ""; display: inline-block; width: 22px; height: 14px; margin-right: 12px;
        background:
          linear-gradient(currentColor, currentColor) 0 0/100% 2px no-repeat,
          linear-gradient(currentColor, currentColor) 0 6px/100% 2px no-repeat,
          linear-gradient(currentColor, currentColor) 0 12px/100% 2px no-repeat;
    }
    nav .fas::after{ content: "Menu"; font-size: 20px; font-family: 'Poppins', sans-serif; font-weight: 500; }

    /* Menü (wenn Burger Button gedrückt wird) */
    nav ul{
        position: fixed; top: 80px; right: -520px; z-index: 1000; opacity: 0; pointer-events: none;
        background: rgba(20, 20, 20, 0.85); /* <-- Dunkel und stabil */
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 25px; box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
        padding: 10px 20px; display: flex; flex-direction: row; align-items: center; gap: 20px;
        transition: right 0.5s ease, opacity 0.3s ease;
    }
    nav ul.open{ right: -41px; opacity: 1; pointer-events: auto; }
    nav ul li{ display: inline-block !important; margin: 0; list-style: none; }
    nav ul li a{ font-size: 18px; color: #fff; text-decoration: none; transition: color 0.5s; }
    nav ul li a:hover{ color: #ff004f; }
    
    /* KORREKTUR: Projekte-Höhe (weniger hoch) */
    .work {
        aspect-ratio: 16 / 10;
    }

    

    /* 1. "Abschicken" Button im Kontaktformular */
    .contact-right form .btn2 {
        display: block; 
        margin-left: auto; 
        margin-right: auto;
    }

    /* 2. "Lebenslauf PDF" Button (in der linken Spalte) */
    .contact-left a.btn2 {
        display: block; 
        width: fit-content; 
        margin-left: auto; /* Zentriert den Button horizontal */
        margin-right: auto;
        margin-top: 40px; /* Optional: Fügt etwas Abstand nach oben hinzu */
    }
    
    /* KORREKTUR: "Über mich" Tabs (Horizontal auf Mobilgeräten) */
    .tab-links{ 
        font-size: 14px; 
        margin-right: 0;
        padding: 10px 15px; /* GEÄNDERT: Kleineres Links/Rechts-Padding */
    }
    .tab-titles{ 
        flex-wrap: nowrap; /* GEÄNDERT: Verhindert den Zeilenumbruch */
        gap: 5px;          /* GEÄNDERT: Kleinerer Abstand zwischen den Tabs */
        margin-left: auto;
        margin-right: auto;
    }
}
    





