/* ==========================================
   EIEREN BIJ TOBIAS
   style.css
========================================== */

/* ---------- RESET ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#faf7f2;
    color:#443122;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ---------- CONTAINER ---------- */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ---------- HEADER ---------- */

header{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#6b4423;
}

.logo span{
    margin-left:8px;
}

nav{
    display:flex;
    align-items:center;
    gap:25px;
}

nav a{
    color:#5c4633;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#8b5a2b;
}

.nav-button{

    background:#4d7c35;
    color:white;
    padding:12px 22px;
    border-radius:10px;

}

.nav-button:hover{

    background:#3e652b;
    color:white;

}

/* ---------- HERO ---------- */

.hero{

    padding:80px 0;
    background:linear-gradient(180deg,#fffdf8,#f6f0e6);

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

.hero-label{

    display:inline-block;

    background:#fff;

    color:#6b4423;

    padding:10px 18px;

    border-radius:40px;

    font-weight:600;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    margin-bottom:25px;

}

.hero-text h1{

    font-size:58px;

    line-height:1.1;

    color:#5b3720;

    margin-bottom:25px;

}

.hero-text p{

    font-size:19px;

    color:#6b625a;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.button{

    background:#4d7c35;

    color:white;

    padding:15px 28px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

    display:inline-block;

}

.button:hover{

    transform:translateY(-3px);

    background:#3c6229;

}

.button.secondary{

    background:white;

    color:#4d7c35;

    border:2px solid #4d7c35;

}

.button.secondary:hover{

    background:#4d7c35;

    color:white;

}

.hero-info{

    display:flex;

    gap:40px;

}

.hero-info div{

    display:flex;

    flex-direction:column;

}

.hero-info strong{

    font-size:34px;

    color:#8b5a2b;

}

.hero-info span{

    color:#666;

    font-size:15px;

}

.hero-image img{

    border-radius:25px;

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

/* ---------- TITELS ---------- */

.section-title{

    text-align:center;

    margin-bottom:55px;

}

.section-title h2{

    font-size:42px;

    color:#5b3720;

    margin-bottom:15px;

}

.section-title p{

    color:#6b625a;

    font-size:18px;

}

section{

    padding:90px 0;

}

/* ==========================================
   PRIJSKAARTEN
========================================== */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

.prijs-kaart{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
}

.prijs-kaart:hover{
    transform:translateY(-10px);
}

.prijs-kaart.populair{
    border:3px solid #e6b422;
    transform:scale(1.03);
}

.prijs-kaart.populair:hover{
    transform:scale(1.06);
}

.populair-label{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:#e6b422;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.kaart-icoon{
    font-size:48px;
    margin-bottom:20px;
}

.prijs-kaart h3{
    font-size:30px;
    color:#5b3720;
    margin-bottom:10px;
}

.kaart-prijs{
    font-size:44px;
    color:#4d7c35;
    font-weight:700;
    margin:20px 0;
}

.prijs-kaart p{
    color:#666;
    margin-bottom:20px;
}

.prijs-kaart li{
    padding:8px 0;
    color:#555;
}

.prijs-kaart .button{
    width:100%;
    margin-top:25px;
}

/* ==========================================
   OVER TOBIAS
========================================== */

.over-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.over-grid h2{
    font-size:40px;
    color:#5b3720;
    margin-bottom:20px;
}

.over-grid p{
    margin-bottom:20px;
    color:#666;
}

.over-grid img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* ==========================================
   BEZORGGEBIED
========================================== */

.bezorging-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.bezorg-box{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.bezorg-box:hover{
    transform:translateY(-6px);
}

.bezorg-box h3{
    color:#5b3720;
    margin-bottom:15px;
}

.bezorg-box p{
    color:#666;
}

.bezorg-box li{
    padding:8px 0;
    color:#666;
}

/* ==========================================
   ALGEMENE KAARTEN
========================================== */

.review,
.contact-card,
.faq-item{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.review,
.contact-card{
    transition:.3s;
}

.review:hover,
.contact-card:hover{
    transform:translateY(-6px);
}

/* ==========================================
   REVIEWS
========================================== */

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.review{
    text-align:center;
}

.review p{
    margin:20px 0;
    color:#666;
    font-style:italic;
}

.review strong{
    color:#5b3720;
}

/* ==========================================
   FAQ
========================================== */

.faq{
    display:grid;
    gap:20px;
}

.faq-item h3{
    color:#5b3720;
    margin-bottom:10px;
}

.faq-item p{
    color:#666;
}

/* ==========================================
   CONTACT
========================================== */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.contact-card{
    text-align:center;
}

.contact-card h3{
    margin-bottom:15px;
    color:#5b3720;
}

.contact-card p{
    margin-bottom:25px;
    color:#666;
}

/* ==========================================
   FOOTER
========================================== */

footer{
    background:#4b311d;
    color:#fff;
    margin-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding:60px 0;
}

.footer-grid h3,
.footer-grid h4{
    margin-bottom:20px;
}

.footer-grid p{
    color:#e4d7ca;
    margin-bottom:10px;
}

.footer-grid ul{
    padding:0;
}

.footer-grid li{
    margin-bottom:10px;
}

.footer-grid a{
    color:#f4ede4;
    transition:.3s;
}

.footer-grid a:hover{
    color:#ffd166;
}

.copyright{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.15);
    font-size:14px;
}

/* ==========================================
   ANIMATIES
========================================== */

.prijs-kaart,
.bezorg-box,
.review,
.contact-card,
.button{
    transition:all .3s ease;
}

img:hover{
    transform:scale(1.02);
    transition:.4s;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width:992px){

.hero-grid,
.over-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-info{
    justify-content:center;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

nav{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

}

@media (max-width:768px){

.hero{
    padding:60px 0;
}

.hero-text h1{
    font-size:38px;
}

.section-title h2{
    font-size:32px;
}

.hero-info{
    flex-direction:column;
    gap:20px;
}

.prijs-kaart.populair{
    transform:none;
}

.prijs-kaart.populair:hover{
    transform:translateY(-10px);
}

.button{
    width:100%;
    text-align:center;
}

}

@media (max-width:600px){

header .container{
    flex-direction:column;
    gap:20px;
}

.logo{
    font-size:24px;
}

nav{
    flex-direction:column;
    width:100%;
}

nav a,
.nav-button{
    width:100%;
    text-align:center;
}

.hero-text h1{
    font-size:32px;
}

.hero-text p{
    font-size:17px;
}

}

/* ==============================
   VASTE WHATSAPP-KNOP
============================== */

.whatsapp-float{

position:fixed;

right:20px;

bottom:20px;

width:65px;

height:65px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:white;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:9999;

transition:.3s;

}

.whatsapp-float:hover{

transform:scale(1.1);

background:#1da851;

}

/* ==========================
   HAMBURGER MENU
========================== */

.menu-toggle{
display:none;
background:none;
border:none;
font-size:32px;
cursor:pointer;
color:#5b3720;
}

@media (max-width:768px){

.menu-toggle{
display:block;
}

nav{
display:none;
flex-direction:column;
width:100%;
margin-top:20px;
}

nav.open{
display:flex;
}

}