/* ==========================================
   Zuhause Selbstständig
   Ergotherapie-Beratung
========================================== */

:root{
    --green:#4D6243;
    --green-light:#6F8058;
    --beige:#F8F5EE;
    --gold:#C7AF78;
    --text:#343434;
    --white:#ffffff;
}

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

html{
    scroll-behavior:smooth;
    scroll-padding-top:220px;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--beige);
    color:var(--text);
    line-height:1.7;
    overflow-x:hidden;
}

/* ==========================================
   HEADER
========================================== */

header{
    position:sticky;
    top:0;
    z-index:999;
    display:flex;
    flex-direction:column;
    align-items:center;
    background:rgba(255,253,249,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #ECE8DD;
    padding:12px 6%;
}

.logo img{
    width:250px;
    max-width:100%;
    display:block;
    margin:0 auto;
    position:relative;
    left:10px;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.02);
}

/* ==========================================
   NAVIGATION
========================================== */

nav{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;
    margin-top:20px;
    margin-bottom:4px;
    flex-wrap:nowrap;
}

nav a{
    text-decoration:none;
    color:#364131;
    font-size:17px;
    font-weight:600;
    white-space:nowrap;
    position:relative;
    transition:.3s;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--green-light);
    transition:.3s;
}

nav a:hover{
    color:var(--green-light);
}

nav a:hover::after{
    width:100%;
}

/* Hero */

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

.hero-text{

max-width:760px;

}

.hero h1{

font-size:72px;

line-height:1.05;

margin-bottom:30px;

color:#364131;

font-weight:700;

letter-spacing:-2px;

}

.hero p{

font-size:24px;

line-height:1.8;

color:#5D5D5D;

margin-bottom:45px;

max-width:650px;

}

.button{

display:inline-block;

padding:18px 42px;

background:#5E7345;

color:white;

text-decoration:none;

border-radius:100px;

font-size:18px;

font-weight:600;

box-shadow:0 12px 35px rgba(0,0,0,.15);

transition:.3s;

}

.button:hover{

transform:translateY(-5px);

background:#435433;

}

/* Leistungen */

.leistungen{
    padding:5px 8% 80px;
}

.leistungen-banner{
    width:95%;
    max-width:850px;
    display:block;
    margin:40px auto 0;
    border-radius:24px;
}

.leistungen h2{

    margin-top:60px;

    margin-bottom:45px;

    font-size:30px;

    line-height:1.2;

    text-align:center;

    color:#33402E;
}

.card{

background:white;

padding:45px;

border-radius:24px;

box-shadow:0 15px 40px rgba(0,0,0,.07);

transition:.35s;

border:1px solid #EFE8DD;

}

.card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.card h3{

font-size:28px;

margin-bottom:18px;

color:#50663F;

}

.card p{

font-size:18px;

line-height:1.8;

}


/* Über mich */

.ueber{
    padding:25px 8% 50px;
    background:white;
}

.ueber h2{
    font-size:28px;
    font-weight:700;
    color:#33402E;
    text-align:left;
    margin-bottom:20px;
    line-height:1.2;
}
.ueber p{
    max-width:700px;
    margin:0 auto 18px;
    font-size:17px;
    line-height:1.8;
    color:#666666;
    text-align:left;
}


/* Footer */

footer{
    background:#2F3A34;
    color:white;
    text-align:center;
    padding:35px;
}

/* Smartphone */

@media(max-width:900px){

.logo img{
    width:250px;
    max-width:90%;
    height:auto;
}

nav{
    gap:10px;
    flex-wrap:nowrap;
}

nav a{
    font-size:14px;
}

.hero{
    padding-top:20px;
}

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:18px;
}

}
/* ===========================
   HERO PREMIUM
=========================== */

/* ==========================================
   HERO
========================================== */

.hero{
    background:linear-gradient(180deg,#FFFDF9 0%,#F6F2E9 100%);
    padding:5px 6% 5px;
}

.hero-container{
    max-width:1100px;
    margin:40px auto 0;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.hero-text{
    max-width:820px;
}

.hero h1{
    font-size:56px;
    line-height:1.05;
    font-weight:700;
    color:#33402E;
    margin-bottom:8px;
    letter-spacing:-1px;
}

.hero h1 span{
    display:block;
    margin-top:-6px;
    font-family:"Brush Script MT",cursive;
    font-size:60px;
    font-weight:400;
    color:#6F8058;
}

.hero-description{
    max-width:760px;
    margin:16px auto;
    font-size:22px;
    line-height:1.75;
    color:#5B5B5B;
}

.hero-description + .hero-description{
    margin-top:-30px;
}


.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.button{
    display:inline-block;
    padding:18px 38px;
    border-radius:50px;
    background:#556B3F;
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.button:hover{
    transform:translateY(-3px);
    background:#465835;
}

.button-outline{
    display:inline-block;
    padding:18px 38px;
    border-radius:50px;
    border:2px solid #556B3F;
    color:#556B3F;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.button-outline:hover{
    background:#556B3F;
    color:white;

}

.hero-image{

flex:1;

text-align:center;

}

.hero-image img{

max-width:100%;

max-height:650px;

filter:drop-shadow(0 20px 40px rgba(0,0,0,.12));

}

@media(max-width:1000px){

.hero-container{
    flex-direction:column;
    text-align:center;
}

.hero-description{
    margin:auto auto 40px;
}

.hero-buttons{
    justify-content:center;
}

.hero h1{
    font-size:30px;
    line-height:1.1;
    margin-bottom:10px;
}

.hero h1 span{
    font-size:34px;
}

.hero-subtitle{
    font-size:13px;
}

.hero-description{
    font-size:18px;
}

}

/* ===========================
   WARUM ZUHAUSE-SELBSTSTÄNDIG
=========================== */

.vorteile{

padding:100px 8%;

background:#FFFDF9;

text-align:center;

}

.vorteile h2{

font-size:48px;

color:#364131;

margin-bottom:20px;

}

.vorteile-intro{

max-width:750px;

margin:0 auto 60px;

font-size:20px;

line-height:1.8;

color:#666;

}

.vorteile-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:35px;

}

.vorteil{

background:white;

padding:45px;

border-radius:25px;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.3s;

}

.vorteil:hover{

transform:translateY(-8px);

}

.icon{

font-size:48px;

margin-bottom:25px;

}

.vorteil h3{

margin-bottom:15px;

font-size:24px;

color:#556B3F;

}

.vorteil p{

line-height:1.8;

color:#666;

}
/* ===========================
   LEISTUNGEN PREMIUM
=========================== */

.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-top:50px;
}

@media (max-width:900px){

    .cards{
        grid-template-columns:1fr;
    }

}

.card{

overflow:hidden;

padding:0;

border-radius:24px;

background:#fff;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.card img{
    width:100%;
    height:auto;
    display:block;
}

.card h3{

padding:28px 28px 12px;

font-size:28px;

color:#4D6243;

}

.card p{

padding:24px 28px 35px;

font-size:18px;

line-height:1.7;

color:#555;

}
/* ===========================
   KONTAKT-LINKS
=========================== */

footer a,
footer a:link,
footer a:visited{
    color:#ffffff !important;
    text-decoration:none !important;
    font-weight:500;
}

footer a:hover{
    color:#C7AF78 !important;


}
/* ===========================
   BERATUNGSINFORMATIONEN
=========================== */

.beratung-info{
    padding:30px 8% 25px;
    background:#FFFDF9;
    text-align:center;
}

.beratung-info h2{
    font-size:28px;
    color:#33402E;
    text-align:center;
    margin-bottom:30px;
}

.preis-box{
    max-width:360px;
    margin:0 auto 40px;
    padding:35px;
    background:#ffffff;
    border-radius:24px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.preis-box h3{
    font-size:18px;
    color:#6F8058;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.preis{
    font-size:56px;
    font-weight:700;
    color:#4D6243;
    margin-bottom:12px;
    line-height:1;
}

.preis-box p{
    font-size:18px;
    color:#555;
    line-height:1.7;
}
.mwst-hinweis{
    margin-top:10px;
    font-size:12px !important;
    line-height:1.2 !important;
    color:#999999 !important;
    font-style:italic;
}
.gebiet-hinweis{
    margin-top:12px;
    font-size:13px;
    line-height:1.5;
    color:#6F8058;
}
.hinweis{
    max-width:700px;
    padding:0 20px;
    font-size:16px;
    line-height:1.65;
    color:#666;
    margin:0 auto;
}

.hinweis:first-of-type{
    margin-top:35px;
    margin-bottom:10px;
}

.hinweis:last-of-type{
    margin-top:10px;
    margin-bottom:5px;
}

.hinweis strong{
    color:#4D6243;
}

/* ==========================================
   PROFILBILD
========================================== */

.profil{
    display:flex;
    align-items:flex-start;
    gap:18px;
    max-width:800px;
    margin:10px 0 15px;
}

.profil img{
    width:85px;
    height:85px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #ffffff;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.profil-text{
    flex:1;
    margin-left:-8px;
    padding-top:10px;
}
.profil-text h3{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#33402E;
    white-space:nowrap;
    line-height:1.2;
}
.profil-text p{
    margin:0;
    margin-top:8px;
    font-size:13px;
    line-height:1.2;
    color:#6F8058;
    font-weight:500;
    white-space: nowrap;
}

}

#leistungen{
    scroll-margin-top:80px;
}

#ueber,
#preise,
#kontakt{
    scroll-margin-top:110px;
}

#leistungen{
    scroll-margin-top:90px;
}

@media (min-width:901px){

    #leistungen{
        scroll-margin-top:180px;
    }

}

@media (min-width:901px){

    .ueber{
        max-width:1200px;
        margin:0 auto;
    }

    .ueber h2{
        margin-left:0;
    }

    .profil{
        max-width:100%;
        margin:25px 0 30px;
    }

    .ueber p{
        max-width:100%;
        margin-left:0;
        margin-right:0;
    }

}

