/* Generelles Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 2. Variablen */
:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --light-text: #821717;
    --font-serif: "Times New Roman", Times, serif;
    --font-sans: Arial, sans-serif;
}

/* 3. Flüssiger Farbverlauf beim scrollen "Hören" und "Sehen" */
#trans-body {
    transition: background-color 1.2s ease, color 1.2s ease !important;
}

/* Farbe Übergang */
#trans-body p, 
#trans-body span, 
#trans-body h2, 
#trans-body h3, 
#trans-body a,
#trans-body .intro-text {
    transition: color 1s ease !important;
}

body {
    background-color: var(--bg-color);
    opacity: 100% !important;
    color: var(--text-color);
    font-family: var(--font-serif);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 18px;
}

/* Sprache Knopf */
.lang-nav {
    position: fixed;
    font-size: 0.9rem;
    padding-top: 10px;
    top: 20px;
    right: 40px;
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
    z-index: 100;
}

.lang-nav a {
    text-decoration: none;
    color: var(--light-text);
}

.lang-nav a.active {
    color: var(--text-color);
    font-weight: bold;
}


/* Blendet den Namen auf der Startseite aus */
.nav-home-link {
    opacity: 0 !important;
    pointer-events: none !important; /* Verhindert, dass man auf den unsichtbaren Link klickt */
    transition: opacity 2s ease !important;
}

/* Optional: Falls er auf Mobile im Menü doch erscheinen soll, 
   kannst du ihn dort wieder einblenden */
@media (max-width: 768px) {
    .nav-home-link {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}



/* Section Layouts */
section {
    padding: 6vw;
    display: flex;
    flex-direction: column;
}

.full-view {
    justify-content: center; /* Vertikales Balance */
}


/* ---------------------AKTUELLES SEITE-------------------------- */


/* Minimalist Base */
body {
    background-color: #fcfcfc; /* Off-white for less eye-strain */
    color: #1a1a1a;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* Navigation: "Dienend" (Serving) */
nav {
    position: fixed;
    top: 40px;
    right: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    z-index: 100;
}

nav a {
    text-decoration: none;
    color: #888;
    margin-left: 25px;
    transition: color 0.4s ease;
}

nav a:hover, nav a.active {
    color: #000;
}

/* Container for News/Aktuelles */
.content-container {
    max-width: 800px;
    margin: 12vh auto; /* High top margin for "Room to Breathe" */
    padding: 0 40px;
}


.date-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #999;
    margin-bottom: 30px;
    display: block;
}

.title-main {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
}

.subtitle-company {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

/* Event List (Instead of Bullet Points) */
.event-row {
    margin: 15px 0;
    font-size: 1rem;
    color: #333;
}

.event-details {
    color: #777;
    margin-left: 10px;
}

/* Ticket Links as "Arrows" */
.ticket-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.ticket-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.ticket-link:hover {
    border-bottom: 1px solid #000;
}


/* ------------------- KONTAKT SEITE ---------------- */

.contact-section {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 4vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10vw;
    margin-top: 5vh;
}

.contact-info .name {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.contact-info .description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 4rem;
}

.email-link {
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--light-text);
    transition: opacity 0.3s;
}

.email-link:hover {
    opacity: 0.7;
}

.legal-mini-links a {
    display: block;
    font-size: 1rem;
    text-decoration: none;
    color: #999;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.legal-mini-links a:hover {
    color: var(--text-color);
}

/* Minimal Form Styling */
.minimal-form .form-group {
    margin-bottom: 2.5rem;
    position: relative;
    background-color: #f1f1f1;
}

.minimal-form label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #999;
}

.minimal-form input, 
.minimal-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0; /* The Hendler Line */
    padding: 10px 0;
    font-family: var(--font-serif);
    font-size: 1rem;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.minimal-form input:focus, 
.minimal-form textarea:focus {
    border-bottom-color: var(--text-color);
}

.submit-btn {
    background: none;
    border: 1px solid var(--text-color);
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--text-color);
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
}




/* --------------------BIOGRAPHIE SEITE----------------------- */


/* Biography Specific Layout */
.bio-section {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 3vw;
    align-items: start;
    padding: 0vw !important;
}

.bio-main-text p {
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    font-weight: 300;
}

.bio-sidebar {
    position: sticky;
    top: 150px;
}

.bio-sidebar h3 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}


.bio-sidebar p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 4rem;
}

.download-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-link {
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.download-link:hover {
    opacity: 1;
}

.awards-list p {
    width: 60%;
    margin-bottom: 1.5em !important;
    line-height: 1.4; 
}


@media (max-width: 900px) {
    .bio-section {
        grid-template-columns: 1fr;
    }
    .bio-sidebar {
        margin-top: 5vh;
        position: static;
    }
}


/* CAROUSEL FOTOS */
/* Carousel Styling */

.carousel-inner {
    margin-top: 2vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: #fff; /* Ensures white space remains clean */
    overflow: hidden;
    
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    outline: none; /* Removes focus rings */
    font-size: 2rem;
    font-weight: 100;
    color: var(--text-color);
    cursor: pointer;
    opacity: 0.3;
    padding: 10px;
    line-height: 1; 
    transition: opacity 0.3s;
    z-index: 10;
    font-family: serif;
    overflow: hidden; 

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.nav-arrow::before, .nav-arrow::after {
    display: none !important;
}

.nav-arrow:hover {
    opacity: 1;
}

.prev { 
    left: 5px;
}

.next { 
    right: 5px;
 }

.carousel-item {
    display: none;
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    object-fit: contain;
}

.carousel-item.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}

.carousel-counter{
font-size: 1.3vh;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* -------------------INTERDISZIPLINAER SEITE---------------- */




.audio-list{
    padding-top: 20vh;
    margin-left: auto;
    margin-right: auto;
}

.audio-item {
    padding-bottom: 40vh;
}

.audio-item .meta, 
.audio-item .details {
    line-height: 2; /* Erhöht den Zeilenabstand für bessere Lesbarkeit */
    display: block;   /* Stellt sicher, dasxs die Zeilenhöhe korrekt greift */
    margin-bottom: 0.5rem; /* Kontrollierter Abstand statt unvorhersehbarem Padding */
}

.dark-mode .section-header{
    max-width: max-content !important;
    text-align: center;
    padding-top: 8vh;
}

.dark-mode .section-header p.intro-text {

    font-family: var(--font-sans);
    font-size: 1.5rem !important;
    letter-spacing: 0.20em;
    color: var(--light-text);
    line-height: 6vh;
    font-family: var(--font-sans);
    color:#989b6d;
}


@media (max-width: 768px){
    .dark-mode .section-header p.intro-text{ 
        font-size: 1.1rem !important;
        letter-spacing: 0.2em;
    }

    .dark-mode .section-header{
        padding-top: 17vh !important;
    }

    .dark-mode #hoeren .media-section {
        padding-left: 8vw !important;
    }

}


 
/* Dark aesthetic for the interdisciplinary page */
.dark-mode {
    background-color: #000000;
    color: #a4a4a4;
    transition: background-color 1.2s ease;
}

.dark-mode .video-item{
    color: #808080;
}

.dark-mode a p h1 h2 h3{
    color: #a4a4a4 !important;
}

.dark-mode .main-nav a {
    color: #b9b9b9;
}

.video-heading{
    margin-bottom: 10vh;
    font-family: sans-serif;
    font-weight: 100;
    justify-self: center;
    letter-spacing: 0.3rem;
    border-bottom: 1px solid #e4e4e4; /* Sehr dezente Linie */

}

.dark-mode .site-header{
    background-color: #0a0a0a;
}


.dark-mode .lang-nav a{
    color: #c7c7c7;

}

.dark-mode .lang-nav a.active{
    color: #eef662;
}


.media-section {
    padding: 2vw !important;
    margin-bottom: 5vh !important; /* Massive spacing to separate experiences */
}

#uebergaenge.media-section{
    margin-bottom: 30vh !important;
}

#sehen.media-section .section-header{
    padding-bottom: 20vh;
}



/* Rhythmic Text for Übergänge */
.rhythmic-text {
    text-align: left;
    max-width: 600px;
    margin-top: 20vh;
}

.rhythmic-text h2 {
    font-weight: 400;
    margin-bottom: 3rem;
}

.rhythmic-text p {
    margin: 0.5rem 0;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.emphasis {
    margin-top: 2rem !important;
    font-style: italic;
    opacity: 0.8;
}

/* Video Container */
.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #0a0a0a;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1a1a1a; /* Very subtle border */
}

.video-placeholder {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #333;
}

.video-item {
    margin-bottom: 10rem;
}



/* ------------------------------------------------------------- */




/* Sicherstellen, dass die Sektion der Bezugspunkt für den Hintergrund ist */
#hoeren {
    position: relative;
    overflow: hidden; /* Behält den Hintergrund innerhalb der Sektionsgrenzen */
    padding: 10rem 2rem; /* Großzügiger Weißraum (Atmen) */
}


/* Sicherstellen, dass der Text klar über dem Hintergrund liegt */
.section-header, .audio-list {
    position: relative;
    z-index: 1; 
}

/* Minimalistisches Player-Styling ohne Rahmen */
audio.custom-audio {
    filter: grayscale(100%) invert(0%); /* Hält das Design neutral */
    width: 100%;
    max-width: 400px;
    height: 30px;
    margin-top: 1rem;
}


/* Grundlegende Hintergrundfarbe der gesamten Seite sicherstellen */
body {
    background-color: #ffffff; 
    margin: 0;
}

/* Der Hintergrund wird nun absolut im Container platziert für Parallax */
#hoeren {
    position: relative;
    overflow: visible; /* Wichtig für das Überlappen */
    background: transparent;
    padding: 15vh 2rem; /* Viel Weißraum für die 'Haltung' */
    z-index: 1;
}

#hoeren-bg {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 50%; /* Etwas höher als die Sektion für den Scroll-Spielraum */
    
    background-image: url('CC_gina-accompanied-by-a-string-trio.png');
    background-size: cover;
    background-position: center;
    
    /* Parallax-Effekt: Bild bewegt sich langsamer als der Text */
    background-attachment: scroll; 
    
    z-index: -1; 
    opacity: 0.3 !important; 
    pointer-events: none;
}



@media (max-width: 768px){



    #hoeren-bg {
    background-position: 27% center;
    height: 45%;
    top: 50%;
    }
   

}


/* --------------------LITERATUR SEITE--------------------- */


.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 10rem 2rem; 
}


.content-wrapper-bio{
    max-width: 1000px;
    margin: 0 auto;
    padding: 10rem 2rem; 
}

/* Navigation - Subtle & Serving */
.main-nav {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    opacity: 1;
}

/* Section Header */
.section-header {
    margin-bottom: var(--spacing-unit);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3vh;
    padding-bottom: 3vh;
}

.intro-text {
    font-size: 1.1 rem;
    font-weight: 300;
}

.lang-toggle {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.  ;
}

/* Work Entries */
.work-item {
    margin-bottom: 8rem; /* Large gaps between works */
    display: grid;
    grid-template-columns: 1fr 2fr; /* Asymmetric layout */
    gap: 2rem;
}

.year {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
    color: var(--grey-text);
}

.title {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    margin-bottom: 2rem;
}

.subtitle {
    font-size: 0.9rem;
    margin: 0;
    margin-bottom: 0.9rem;
}

.subtitle-bg{
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--light-text);
    background-color: #000000af;
}

.status {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--grey-text);
    margin-bottom: 0.9rem;
}

.work-description p {
    margin-top: 0;
    max-width: 500px;
}

/* Quotes */
.braille-quote, .italic-quote {
    margin: 1.5rem 0;
    padding: 0;
    border-left: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.italic-quote {
    font-style: italic;
    font-size: 0.85rem; /* Zitat bei Zikadengesänge kleiner */
}

.cite {
    display: block;
    font-style: normal;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Links */
.links {
    margin-top: 2rem;
}

.links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.8rem;
    margin-right: 1.5rem;
    opacity: 0.7;
}

.links a:hover {
    opacity: 1;
}

.separator {
    border: none;
    border-top: 1px solid #eee;
    margin: 6rem 0;
}

/* Libretti Section */
.secondary-section h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.libretti-list {
    list-style: none;
    padding: 0;
}

.libretti-list li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .work-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .content-wrapper {
        padding-top: 6rem;
    }
}







 /* -----------------BÜHNE SEITE-------------------- */


/* The container */
#buehne-bg {
    position: absolute;
    top: 10%; 
    left: 70%;
    transform: translateX(-50%);
    width: 70vw;
    height: 80%; /* Etwas höher als die Sektion für den Scroll-Spielraum */
    
    background-image: url('edit_gina-matiello-stage-pink.png');
    background-size: cover;
    background-position: center;
    
    /* Parallax-Effekt: Bild bewegt sich langsamer als der Text */
    opacity: 0.95 !important; 

    z-index: -1; 
    pointer-events: none;
}


@media(max-width:768px){

    #buehne-bg {
    top: 20%;
    width: 100%;
    left: 50%;
    background-size: 140%;
    height: 40%;

    opacity: 0.4 !important;
    }
}

.textblock{
    padding-top: 15vh;
    padding-left: 15vw;
    position: relative; /* Wichtig für das absolute BG-Bild */
    overflow: hidden;
    width: 50%;
}

.textblock-text {
    max-width: 700px;
    margin-top: 5vh;
}

.textblock-text p {
    margin-bottom: 2rem;
}

.textblock-list {
    margin-top: 4rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.textblock-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--light-text);

}

/* Container für das Bild*/
.image-container-large {
    margin-top: 6vh; /* Space between text and image */
    margin-bottom: 4vh;
    width: 100%;      /* Takes full width of the textblock */
    max-width: 1000px; /* Limits size so it doesn't become overwhelming */
}

.image-container-large img {
    width: 100%;      /* Image fills the container */
    height: auto;     /* Maintains aspect ratio */
    display: block;
    filter: grayscale(10%); /* Optional: fits a minimalist aesthetic better */
}

.image-caption {
    margin-top: 1.4rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--light-text);
    opacity: 0.7;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .textblock {
        width: 90%; /* On mobile, let the text and image take more space */
        padding-left: 6vw;
    }
    
    .image-container-large {
        margin-top: 5vh;
    }
}





 /* -----------------HOME SEITE-------------------- */



/* SEKTION 1: SETZUNG */
.setzung-content {
    margin-left: 5vw; /* Leicht nach links versetzt */
}

h1 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--light-text);
}

.setzung-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10%;
    align-items: center;
    justify-content: space-between;
}

.setzung-content{
    display: flex;
    flex-direction: column;
    align-items: baseline; 
    gap: 8vw;
    margin-left: 5vw;
    margin-bottom: 5vh;
}

.setzung-image img {
    width: 35vw; 
    height: auto;
    filter: grayscale(100%); /* macht es sw */
    opacity: 0.9;          /* macht es weniger aggresiv */
    margin-right: 3vw;
}

@media (max-width: 768px) { /* macht es responsive für smartphones*/
    .setzung-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
}

/* SEITE 2: HALTUNG */
.haltung-text {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 15vh;
}

.audio-setzung {
    margin-left: 6vw;
}

.audio-info span {
    display: block;
}

.work-title {
    font-size: 1.2rem;
    font-style: italic;
}

.work-desc, .work-credits {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Custom Player Button */
#play-btn {
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
    transition: color 0.1s linear; /* für weicheren Übergang */
    color: inherit; /* übernimmt die Farbe vom Script */
}

.audio-legend {
    font-size: 0.75rem;
    color: white;
    margin-top: 10px;
    line-height: 1.4;
}

/* SEKTION 3: BÜHNE */
.praxis-text {
    max-width: 700px;
    margin-top: 5vh;
    padding: 1vw;
    background-color: #00000038;
}

.praxis-text p {
    margin-bottom: 2rem;
}

.praxis-list {
    margin-top: 4rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.praxis-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--light-text);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section { padding: 70px 20px; }
    h1 { font-size: 2rem; }
    .haltung-text { font-size: 1.2rem; }
    .setzung-image img {
    width: 80vw; 
}

.textblock {
        width: 90% !important; /* Forces the change */
        margin: 0 auto;        /* Centers it if needed */
    }

    .textblock-text {
        max-width: 100%;      /* Ensures text doesn't hit the edges */
    }

    h1 { font-size: 2rem; }
    .haltung-text { font-size: 1.2rem; }
    
    .setzung-image img {
        width: 80vw; 
    }

}


/* SEKTION 4: ÜBERGÄNGE */
.poetic-layout {
    margin-top: 10vh;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Raum zwischen den Zeilen */
}

.line {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 800px;
    transition: opacity 0.5s ease;
}

/* Rhythmus durch Einrückung (Asymmetrie) */
.indent-0 { margin-left: 0; }
.indent-1 { margin-left: 10vw; }
.indent-2 { margin-left: 20vw; }

.spacer-top {
    margin-top: 5rem; /* Größerer Weißraum zwischen den Gedankenblöcken */
}

/* Audio Fragment Styling */
.audio-fragment {
    margin-top: 15vh;
    margin-left: 20vw;
}

.play-link {
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--light-text);
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color 0.3s ease;
}

.play-link:hover {
    color: var(--text-color);
}

.play-link.playing {
    color: var(--text-color);
    font-style: italic;
}

/* Responsivität für mobile Geräte */
@media (max-width: 768px) {
    .indent-1, .indent-2 {
        margin-left: 2rem; /* Weniger Einrückung auf kleinen Screens */
    }
    .line {
        font-size: 1.1rem;
    }
}


/* 
#haltung {
    position: relative; 
    min-height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
} */

/* #haltung-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(70, 70, 70, 0.5), rgba(37, 37, 37, 0.5)), url('gina-matiello-headphones.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1; 
    opacity: 0;
    pointer-events: none; } */

/* .haltung-container {
    position: relative;
    z-index: 2; /* Text muss über das Bild! } */


/* Generic styles for all blend sections */





.content-view {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #ffffff; /* Base color */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10vw;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0; /* Managed by JS */
    pointer-events: none;
}

/* Ensure content stays above the background */
.content-view > div:not(.section-bg) {
    position: relative;
    z-index: 2;
}

/* Specific background images via IDs */
#haltung-bg {
    background-image: linear-gradient(rgba(70, 70, 70, 0.5), rgba(37, 37, 37, 0.5)), 
    url('gina-matiello-headphones.jpg');
}

#praxis-bg {
    background-image: linear-gradient(rgba(23, 23, 23, 0.87), rgba(37, 37, 37, 0.683)),
    url('Quartett_2021_NICOLAS_PLEASURE_GALANI_42.jpg'); 
}

#uebergaenge-bg{
    background-image: linear-gradient(rgba(23, 23, 23, 0.87), rgba(37, 37, 37, 0.683)),
    url('automatic_speech-fox_quadrat.jpg'); 

}

.haltung-text {
    position: relative;
    z-index: 2; /* Ensures text is above the image */
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 15vh;
    color: rgb(26, 26, 26); /* Initial color */
}


/* 
#praxis {
    background-color: var(--bg-color);
    position: relative;
    z-index: 3;
} */



/* Header Styling */
.site-header { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1000;
    transition: transform 0.4s ease-in-out; /* Sorgt für das sanfte Gleiten */
    background-color: white;
    opacity: 90%;
}


/* Desktop Navigation */
.main-nav{
    margin-left: 20px;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.main-nav a, .lang-nav a {
    text-decoration: none;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light-text);
    transition: color 0.3s ease;
}


.main-nav a:hover, .lang-nav a:hover {
    color: var(--text-color);
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text-color);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}



/* Responsive Mobile Styles */
@media (max-width: 900px) {
    .menu-toggle { display: block; }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        margin: 0;
        padding: 0;
    }

    .site-header{
        padding: 20px;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .main-nav a {
        font-size: 1.2rem;
    }

    /* Animation für das X beim Öffnen */
    .menu-toggle.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.is-active span:nth-child(2) { transform: rotate(-45deg); margin-top: -9px; }
}


/* --- Dark Mode Overrides for Mobile Menu --- */

/* 1. Change the hamburger lines to light gray/white */
.dark-mode .menu-toggle span {
    background: #a4a4a4; /* Matches your body text color */
}

/* 2. Change the full-screen menu background to black */
@media (max-width: 900px) {
    .dark-mode .main-nav {
        background: #000000; /* Deep black for the overlay */
    }

    /* 3. Ensure links inside the open mobile menu are visible */
    .dark-mode .main-nav a {
        color: #a4a4a4;
    }

    .dark-mode .main-nav a:hover, 
    .dark-mode .main-nav a.active {
        color: #ffffff;
    }
}


.site-footer {
    padding: 40px;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    border-top: 1px solid #f0f0f0; /* Sehr dezente Linie */
}

.site-footer a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: #999;
}




 