
/* ============================
   Lokale Schriftart
============================ */

@font-face{
    font-family:"Poppins";
    font-style:normal;
    font-weight:300;
    src:url("../fonts/poppins-v24-latin-300.woff2") format("woff2");
}

@font-face{
    font-family:"Poppins";
    font-style:normal;
    font-weight:400;
    src:url("../fonts/poppins-v24-latin-regular.woff2") format("woff2");
}

@font-face{
    font-family:"Poppins";
    font-style:normal;
    font-weight:500;
    src:url("../fonts/poppins-v24-latin-500.woff2") format("woff2");
}

@font-face{
    font-family:"Poppins";
    font-style:normal;
    font-weight:600;
    src:url("../fonts/poppins-v24-latin-600.woff2") format("woff2");
}

@font-face{
    font-family:"Poppins";
    font-style:normal;
    font-weight:700;
    src:url("../fonts/poppins-v24-latin-700.woff2") format("woff2");
}


/* ============================
   Assistenz-Atelier
   Style.css
============================ */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#F8F6F2;

    color:#4D4D4D;

    line-height:1.7;

}

/* ============================
   Allgemein
============================ */

.container{

    width:90%;
    max-width:1200px;

    margin:auto;

}

section{

    padding:110px 0;

}

h1,h2,h3,h4{

    color:#6E5A4A;

    font-weight:600;

}

.section-subtitle{

    max-width:700px;

    margin:20px auto 60px;

    text-align:center;

    color:#777;

    font-size:18px;

}

/* ============================
   Navigation
============================ */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 8%;

    z-index:999;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

    transition:.3s ease;

}

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:95px;

    width:auto;

    display:block;

    transition:.3s ease;

}

.logo img:hover{

    transform:scale(1.03);

}

nav a{

    text-decoration:none;

    color:#666;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#B4977D;

}

/* ==========================================
   NAVIGATION LINKS
========================================== */

nav{

    display:flex;

    align-items:center;

    gap:30px;

}

nav a{

    text-decoration:none;

    color:#666;

    font-weight:500;

    font-size:17px;

    transition:.3s ease;

}

nav a:hover{

    color:#B4977D;

}

/* ============================
   Hero
============================ */

.hero{

    min-height:92vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:linear-gradient(180deg,#F8F6F2,#EFE7DE);

    padding:120px 30px 60px;

}

.hero-content{

    max-width:900px;

}

.hero h1{

    font-size:72px;

    line-height:1.15;

    color:#7A6254;

    margin-bottom:30px;

}

.hero p{

    font-size:24px;

    line-height:1.7;

    color:#666;

    max-width:720px;

    margin:auto;

}

.hero-buttons{

    margin-top:55px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* ============================
   Buttons
============================ */

.btn-primary{

    display:inline-block;

    background:#B4977D;

    color:white;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.btn-primary:hover{

    background:#9B7E64;

    transform:translateY(-3px);

}

.btn-secondary{

    display:inline-block;

    background:white;

    border:2px solid #B4977D;

    color:#B4977D;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

.btn-secondary:hover{

    background:#B4977D;

    color:white;

}

/* ============================
   Über mich
============================ */

.about{

    background:#fff;
    padding:120px 0;

}

.about-grid{

    display:grid;
    grid-template-columns:340px 1fr;
    gap:80px;
    align-items:center;

}

.about-image{

    display:flex;
    justify-content:center;

}

.about-image img{

    width:320px;
    height:400px;

    object-fit:cover;

    border-radius:24px;

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.about-subtitle{

    display:block;

    color:#B4977D;

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.about-text h2{

    font-size:42px;

    margin-bottom:25px;

}

.about-text p{

    font-size:19px;

    line-height:1.8;

    color:#555;

    margin-bottom:20px;

}
/* ============================
   Karten
============================ */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:white;

    padding:40px;

    border-radius:24px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    margin-bottom:20px;

    color:#B4977D;

}

.card p{

    color:#666;

}

/* ============================
   Leistungen
============================ */

.services{

    background:#F8F6F2;

    text-align:center;

}

.services h2{

    font-size:44px;

    margin-bottom:15px;

}
.service-note{

    max-width:900px;

    margin:50px auto 0;

    text-align:center;

    color:#666;

    font-size:16px;

    line-height:1.8;

}

/* ============================
   Warum VA
============================ */

.why{

    background:#EFE7DE;

    text-align:center;

}

.why h2{

    font-size:44px;

}

/* ============================
   Zusammenarbeit
============================ */

.process{

    background:white;

    text-align:center;

}

.process h2{

    font-size:44px;

}

.process-subtitle{

    margin:20px auto 60px;

    max-width:700px;

    color:#777;

}
/* ============================
   Stundenpakete
============================ */

.packages{

    background:#F8F6F2;

    text-align:center;

}

.packages h2{

    font-size:44px;

    margin-bottom:15px;

}

.packages .card{

    border:1px solid #E8DDD2;

}

.packages h4{

    margin:15px 0 20px;

    color:#B4977D;

    font-size:24px;

}

/* ============================
   Stundenrechner
============================ */

.calculator{

    background:white;

    text-align:center;

}

.calculator h2{

    font-size:44px;

    margin-bottom:15px;

}

.calculator-subtitle{

    margin-bottom:50px;

    color:#777;

}

.calculator label{

    display:block;

    font-size:20px;

    margin-bottom:30px;

    font-weight:600;

}

.calculator input[type="range"]{

    -webkit-appearance:none;

    appearance:none;

    width:100%;

    max-width:700px;

    height:10px;

    border-radius:50px;

    background:#DDD2C8;

    outline:none;

}

.calculator input[type="range"]::-webkit-slider-thumb{

    -webkit-appearance:none;

    width:28px;

    height:28px;

    border-radius:50%;

    background:#B4977D;

    border:4px solid white;

    cursor:pointer;

    box-shadow:0 5px 15px rgba(0,0,0,.2);

}

.calculator-result{

    margin:60px auto 0;

    max-width:650px;

    background:#F8F6F2;

    padding:45px;

    border-radius:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

#hours-output{

    font-size:36px;

    color:#6E5A4A;

    margin-bottom:20px;

}

#package-output{

    font-size:30px;

    color:#B4977D;

    margin-bottom:20px;

}

#price-output{

    font-size:22px;

    margin-bottom:20px;

}

#saving-box{

    display:inline-block;

    background:#E9F8EC;

    color:#2E7D32;

    padding:14px 22px;

    border-radius:12px;

    margin:20px 0;

    font-weight:600;

}

.hourly-note{

    margin-top:25px;

    color:#777;

}

/* ============================
   FAQ
============================ */

.faq{

    background:#F8F6F2;
    text-align:center;
    padding:100px 20px;

}

.faq h2{

    font-size:44px;
    color:#6E5A4A;
    margin-bottom:10px;

}

.faq .section-subtitle{

    max-width:700px;
    margin:15px auto 45px;
    font-size:18px;
    color:#777;
    line-height:1.7;

}

.faq-item{

    max-width:900px;
    margin:18px auto;

}

.faq-question{

    width:100%;
    background:white;
    border:none;
    padding:24px 30px;
    border-radius:18px;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:20px;
    font-weight:600;
    color:#6E5A4A;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

    transition:0.3s;

}

.faq-question:hover{

    background:#F5F1EC;
    transform:translateY(-2px);

}

.faq-question::after{

    content:"+";
    font-size:28px;
    color:#B4977D;
    font-weight:400;
    transition:.3s;

}

.faq-question.active::after{

    content:"−";

}

.faq-answer{

    display:none;

    background:white;

    margin-top:8px;

    padding:25px 30px;

    border-radius:18px;

    border-left:4px solid #B4977D;

    text-align:left;

    line-height:1.8;

    box-shadow:0 8px 20px rgba(0,0,0,.04);

}

/* ============================
   Kontakt
============================ */

.contact{

    background:white;

}

.contact h2{

    text-align:center;

    font-size:44px;

    margin-bottom:15px;

}

.contact p{

    text-align:center;

    margin-bottom:40px;

}

.contact form{

    max-width:850px;

    margin:auto;

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.contact input,
.contact textarea{

    width:100%;

    padding:18px;

    margin-top:18px;

    border-radius:14px;

    border:1px solid #DDD;

    font-family:Poppins,sans-serif;

}

.contact textarea{

    min-height:180px;

    resize:vertical;

}

.contact label{

    display:block;

    margin-top:25px;

    font-weight:600;

    color:#6E5A4A;

}

.checkbox{

    margin:30px 0;

}

.checkbox label{

    display:flex;

    gap:12px;

    align-items:flex-start;

    font-weight:400;

}

.checkbox input{

    width:auto;

    margin-top:5px;

}

.opening-hours{

    margin-top:40px;
    text-align:center;

}

.opening-hours h3{

    color:#B4977D;
    font-size:24px;
    margin-bottom:15px;

}

.opening-hours p{

    margin:8px 0;
    font-size:18px;
    line-height:1.6;
    color:#555;

}

.opening-hours strong{

    color:#6E5A4A;

}

/* ============================
   Footer
============================ */

.footer{

    background:#6E5A4A;

    color:white;

    text-align:center;

    padding:70px 20px;

}

.footer h3{

    color:white;

    margin-bottom:15px;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

    margin:30px 0;

}

.footer-links a{

    color:white;

    text-decoration:none;

}

.footer-links a:hover{

    opacity:.8;

}

/* ============================
   Links
============================ */

.contact a,
.footer a,
.card a{

    color:#B4977D;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;

}

.contact a:hover,
.footer a:hover,
.card a:hover{

    color:#6E5A4A;
    text-decoration:underline;

}

/* ============================
   Mobile
============================ */

@media(max-width:768px){

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

}

.about-grid{

grid-template-columns:1fr;

}

.form-row{

grid-template-columns:1fr;

}

.cards{

grid-template-columns:1fr;

}

.navbar{

flex-direction:column;

padding:20px;

gap:20px;

}

nav{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

section{

padding:80px 20px;

}

h2{

font-size:34px !important;

}

.placeholder{

height:300px;

}

.calculator-result{

padding:30px;

}

.footer-links{

flex-direction:column;

gap:18px;

}

@media (max-width:768px){

    .logo img{

        height:55px;

    }

}

}