:root {
    --cream: #F7EBE5;
    --green: #464D3D;
    --terra: #B24D33;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--cream);
    color:var(--green);
    font-family:'Manrope',sans-serif;
}

/* ---------- HEADER ---------- */

.header{
    position:fixed;
    top:0;
    width:100%;
    height:155px;          /* feste Höhe */
    padding:0 5vw;        /* kein vertikales Padding */
    
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(247,235,229,0.92);
    backdrop-filter:blur(14px);
    z-index:1000;
}

.brand{
    height:100px;
    display:flex;
    align-items:center;
}

.brand img{
    height:200px;
    width:auto;
    display:block;
    transform: translateY(5px);
}

.brand img:hover {
    transform: translateY(5px);
}

.brand span:last-child{
    font-size:28px;
    font-weight:800;
}

.nav{
    display:flex;
    gap:14px;
    align-items:center;
}

.nav a{
    text-decoration:none;
    color:var(--green);
    font-weight:700;
    font-size:14px;

    padding:12px 18px;
    border-radius:999px;
}

.nav-book{
    background:var(--terra);
    color:white !important;
}

.nav-insta{
    border:2px solid var(--terra);
    color:var(--terra) !important;
}

/* ---------- HERO ---------- */

.hero{
    min-height:100vh;

    padding:150px 6vw 100px;

    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:50px;
    align-items:center;
}

.eyebrow{
    color:var(--terra);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:800;
    margin-bottom:20px;
}

.hero h1{
    font-family:'Cormorant Garamond',serif;

    font-size:clamp(70px,9vw,150px);
    line-height:0.85;

    margin-bottom:25px;
}

.hero-copy{
    font-size:22px;
    line-height:1.7;
    max-width:650px;

    margin-bottom:40px;
}

.hero-actions{
    display:flex;
    gap:15px;
}

.hero-actions a{
    text-decoration:none;
    padding:18px 28px;
    border-radius:999px;
    font-weight:800;
}

.hero-actions a:first-child{
    background:var(--green);
    color:white;
}

.secondary{
    border:2px solid var(--green);
    color:var(--green);
}

.hero-card{
    height:700px;

    border-radius:40px;

    background:
    linear-gradient(
        rgba(70,77,61,.2),
        rgba(70,77,61,.2)
    ),
    url("Yoga_Bild.JPG");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:end;

    padding:35px;
}

.hero-card p{
    color:white;
    font-size:48px;
    font-family:'Cormorant Garamond',serif;
}

/* ---------- BANNER ---------- */

.marquee{
    background:var(--terra);
    color:white;

    padding:24px;

    display:flex;
    justify-content:center;
    gap:60px;

    font-size: clamp(20px, 2vw, 28px);

    font-weight:800;
}

/* ---------- STUDIO ---------- */

.split-section{
    padding:130px 12vw;
    text-align:center;
}

.split-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:70px;
    color:var(--terra);

    margin-bottom:25px;
}

.split-section p{
    font-size:21px;
    line-height:1.8;
    max-width:900px;
    margin:auto;
}

/* ---------- CARDS ---------- */

.cards{
    padding:0 6vw 120px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.cards article{
    background:white;
    padding:40px;
    border-radius:35px;

    box-shadow:0 15px 30px rgba(0,0,0,0.05);
}

.cards h3{
    font-family:'Cormorant Garamond',serif;
    color:var(--terra);
    font-size:48px;
    margin-bottom:15px;
}

.cards p{
    line-height:1.7;
}

/* ---------- IMAGE ---------- */

.image-banner{
    height:700px;

    margin:0 6vw 120px;

    border-radius:45px;

    background:
    linear-gradient(
        rgba(151,57,36,.25),
        rgba(70,77,61,.25)
    ),
    url("Yoga_Bild_Ferne.JPG");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.image-banner h2{
    color:white;
    font-size:80px;
    font-family:'Cormorant Garamond',serif;
}

/* ---------- INFO ---------- */

.info-grid{
    padding:0 6vw 120px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.info-box{
    background:var(--green);
    color:white;

    padding:60px;
    border-radius:40px;
}

.info-box.accent{
    background:var(--terra);
}

.info-box h2{
    font-family:'Cormorant Garamond',serif;
    font-size:55px;
    margin-bottom:20px;
}

.info-box p{
    line-height:1.8;
    margin-bottom:30px;
}

.info-box a{
    display:inline-block;

    background:white;
    color:var(--terra);

    padding:14px 24px;
    border-radius:999px;

    text-decoration:none;
    font-weight:800;

    margin-right:10px;
}

/* ---------- CONTACT ---------- */

.contact{
    text-align:center;
    padding:120px 20px;
}

.contact h2{
    font-family:'Cormorant Garamond',serif;
    font-size:80px;

    max-width:900px;
    margin:0 auto 35px;
}

.contact a{
    background:var(--terra);
    color:white;

    padding:18px 30px;

    border-radius:999px;
    text-decoration:none;
    font-weight:800;
}

/* ---------- FOOTER ---------- */

footer{
    padding:40px 6vw;
    border-top:1px solid rgba(70,77,61,.15);

    display:flex;
    justify-content:space-between;
}

footer a{
    color:var(--terra);
    text-decoration:none;
}

.footer-links{
    display:flex;
    gap:20px;
    align-items:center;
}

.footer-links a{
    text-decoration:none;
    color:var(--terra);
    font-weight:700;
}

/* ---------- SUBPAGES ---------- */

.subpage{
    padding:180px 6vw;
    text-align:center;
}

.subpage h1{
    font-family:'Cormorant Garamond',serif;
    font-size:100px;
    color:var(--terra);

    margin-bottom:50px;
}

.schedule,
.price-grid{
    max-width:1000px;
    margin:auto;
}

.schedule div,
.price-grid div{
    background:white;
    padding:30px;
    border-radius:25px;
    margin-bottom:15px;
}

.map-box {
  margin-top: 30px;
  width: 100%;
  height: 320px;
  border-radius: 28px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- IMPRESSUM / DATENSCHUTZ ---------- */

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.legal-page h1 {
    text-align: center;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--terra);
    margin-top: 50px;
    margin-bottom: 16px;
    font-weight: 800;
}

.legal-page p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ---------- MOBILE ---------- */

@media(max-width:1000px){

    .header{
        position:static;
        height:auto;
        padding:18px 20px;
        flex-direction:column;
        gap:14px;
    }

    .brand{
        height:auto;
        overflow:visible;
    }

    .brand img{
        height:95px;
        transform:none;
    }

    .nav{
        width:100%;
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:10px;
    }

    .nav a{
        font-size:12px;
        padding:10px 13px;
    }

    .hero{
        min-height:auto;
        padding:60px 24px 70px;
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .hero h1{
        font-size:58px;
        line-height:0.9;
    }

    .hero-copy{
        font-size:18px;
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions{
        justify-content:center;
        flex-direction:column;
    }

    .hero-actions a{
        width:100%;
        text-align:center;
    }

    .hero-card{
        height:420px;
        border-radius:30px;
    }

    .marquee{
        gap:18px;
        font-size:14px;
        flex-wrap:wrap;
    }

    .split-section{
        padding:75px 24px;
    }

    .split-section h2{
        font-size:48px;
    }

    .split-section p{
        font-size:18px;
    }

    .cards{
        grid-template-columns:1fr;
        padding:0 24px 80px;
    }

    .image-banner{
        height:420px;
        margin:0 24px 80px;
        border-radius:30px;
    }

    .image-banner h2{
        font-size:48px;
    }

    .info-grid{
        grid-template-columns:1fr;
        padding:0 24px 80px;
    }

    .info-box{
        padding:40px 24px;
    }

    .info-box h2{
        font-size:46px;
    }

    .map-box{
        height:300px;
    }

    .contact{
        padding:80px 24px;
    }

    .contact h2{
        font-size:48px;
    }

    footer{
        flex-direction:column;
        text-align:center;
        gap:12px;
    }

    .footer-links{
    flex-direction:column;
    }

    .subpage{
        padding:90px 24px;
    }

    .subpage h1{
        font-size:58px;
    }

    .schedule div{
        flex-direction:column;
        gap:8px;
    }

    .price-grid{
        grid-template-columns:1fr;
    }
}
/* ---------- HEADER IMPRESSUM / DATENSCHUTZ ---------- */

.legal-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    justify-content:center;

    padding:15px 0;

    background:rgba(247,235,229,0.92);
    backdrop-filter:blur(14px);

    z-index:1000;
}

.legal-header .brand{
    height:auto;
}

.legal-header img{
    height:105px;
    width:auto;
    transition:.3s;
}

.legal-header img:hover{
    transform:scale(1.03);
}
/* ---------- EVERSPORTS ---------- */

.eversports-container{
    max-width:1200px;
    margin:60px auto 0;

    background:white;
    border-radius:35px;

    padding:30px;

    box-shadow:0 20px 40px rgba(0,0,0,.06);
}