/* RESET */
html, body{
    max-width:100%;
    overflow-x:hidden;
}

*{  /* * is een selector. Het betekent: Selecteer alle HTML-elementen op de pagina.*/
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}


/* NAVBAR */
.navbar{ /*Het punt betekent: Zoek een element met deze class.*/
    background:#171717;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 60px;
    position:relative;
}

.logo img{
    height:55px;
}

.menu{
    display:flex;
    list-style:none;
    gap:35px;
}

.menu a{
    color:white;
    text-decoration:none;
    text-transform:uppercase;
    font-size:18px;
    letter-spacing:1px;
    transition:0.3s;
}

.menu a:hover{  /*Zoek alle <a>-elementen die zich binnen .menu bevinden. :hover = Dit is een pseudo-class. Ee pseudo-class beschrijft een toestand van een element. hover betekent: Wanneer de muis boven het element hangt.*/
    color:#b7b07a;
}

.contact-btn{
    background:#8e8b5b;
    color:white;
    text-decoration:none;
    padding:14px 26px;
    border-radius:4px;
    font-size:14px;
    text-transform:uppercase;
    transition:0.3s;
}

.contact-btn:hover{
    background:#a39f6f;
}

/* ======================================
   HERO
====================================== */
.hero{ /*Achtergrond instellen*/
    position:relative; /*Alles wat ín deze hero-sectie komt, mag zich ten opzichte van deze sectie positioneren. = nodig voor de overlay*/
    height:850px;
    background-image:url("../images/hero.jpg");
    background-size:cover;
    background-position: 65% center;
    background-repeat:no-repeat;
    overflow: hidden; 
}

.hero::before{ /*Maak een extra laag vóór de inhoud. Je hoeft daarvoor niets in HTML te zetten.*/
    content:""; /*De browser maakt een leeg element. Zonder deze regel verschijnt de overlay niet.*/
    position:absolute; /*Hiermee mag de laag exact geplaatst worden.*/
    top:0; /*Begint helemaal bovenaan.*/
    left:0; /*Begint helemaal links.*/
    width:100%; /*Wordt even breed als de hero.*/
    height:100%; /*Wordt even hoog als de hero.*/
    background:rgba(0,0,0,0.15); /*Donkere transparantie*/
    z-index:1; /*Werkt als lagen. Geeft de positie aan op welke laag de overlay zich bevindt*/
}

.hero-content{ /*De container op de juiste plaats zetten*/
    position: relative;
    z-index: 2;
    width: 900px; /*De tekst mag maximaal 600 pixels breed zijn.*/
    padding-top: 120px; /*De inhoud komt 120 pixels onder de bovenkant van de afbeelding.*/
    margin-left: 60px; /*De inhoud komt 60 pixels van de linkerkant.*/
    padding-left: 8%; /*schaalt mee met de breedte van het scherm.*/
}

.hero-subtitle{  /*Gezond, Sterk & In balans*/
    font-size: 20px; 
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #7b7754;
    margin-bottom: 20px;
}

.hero-title{ /*Hondenfitness & Fotografie*/
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    font-weight: 500;
    line-height: 0.9; /*De afstand tussen de twee regels wordt iets kleiner*/
    color: #fdf9f9;
    margin-bottom: 35px; /*Laat ruimte vrij voor de tekst die onder de titel komt*/
}
.hero-line2{
    display: block;
    white-space: nowrap; /* voorkomt afbreken naar regel 3 */
    margin-left: 190px;
}

.hero-text{
    width: 630px;
    margin-top: 25px;
    font-size: 25px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

.hero-buttons{
    display: flex; /*flex zorgt ervoor dat de knoppen naast elkaar komen te staan*/
    gap: 20px; /*20px ruimte tussen de knoppen*/
    margin-top: 40px;
}

.btn{ /*Basisopmaak voor de knoppen*/
    text-decoration: none;
    text-transform: uppercase;
    padding: 20px 50px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-flex;
     align-items: center;     /* icoon en tekst netjes verticaal centreren */
    gap: 11px;  /* ruimte tussen icoon en tekst */
}

.btn-primary{
    background: #8e8b5b;
    color: white;
}

.btn-secondary{
    border: 2px solid #8e8b5b;
    color: white;
}

.btn:hover{
    transform: translateY(-3px); /*Wanneer je met de muis over een knop gaat, schuift hij 3 pixels omhoog.*/
}

.social-icons{ /*Icoontjes van sociale media rechts op de pagina plaatsen*/
    position:absolute; /*Haal dit element uit de normale documentstroom en laat mij zelf bepalen waar het komt.*/
    right:40px; /*Plaats dit element 40 pixels van de rechterrand.*/
    top:50%; /*Begin op de helft van de hoogte van de hero. Dat is niet hetzelfde als centreren.*/
    transform:translateY(-50%); /*Dat verschuift het element nog een halve eigen hoogte omhoog. Daardoor staat het perfect verticaal gecentreerd.*/
    z-index:2; 
    display:flex;
    flex-direction:column;
    gap:20px;
}

.social-icons a{ /*Linken opmaken*/
    color:white;
    text-decoration:none;
    font-size:32px;
    transition:0.3s;
}

.social-icons a:hover{
    color:#b7b07a;
    transform:scale(1.2); /*Maak het element 20% groter.*/
}

.wave{
    position:absolute;
    bottom:-1px;
    left:0;
    width:100%;
    z-index:3;   /* zorgt dat de golf boven de donkere overlay ligt */
}

.wave svg{
    display:block;
    width:100%;
    height:100px;
}

/* ======================================
   Hondenfitness banner met link naar winterfitchallenge
====================================== */
.challenge-banner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    background:#f4f1ea;
    border:1px solid #e0dcd0;
    border-radius:12px;
    padding:30px 40px;
    max-width:1100px;
    margin:30px auto 30px;
    position:relative;
    z-index:3;
}

.challenge-banner-text{
    flex:1;
}

.challenge-banner-badge{
    display:inline-block;
    background:#8e8b5b;
    color:white;
    font-size:11px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:0.5px;
    padding:4px 12px;
    border-radius:4px;
    margin-bottom:10px;
}

.challenge-banner h3{
    font-size:20px;
    color:#171717;
    margin-bottom:8px;
}

.challenge-banner p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

.challenge-banner .btn{
    padding:14px 30px;
    white-space:nowrap;
}

/* ======================================
   OVER ONS
====================================== */
.about{
    background:rgb(224, 218, 218);
    padding: 80px 100px;
}

.about-container{
    display:flex;
    justify-content:space-between;
    gap:100px;
}

.about-item{
    flex:1;
}

.about-item i{
    font-size:40px;
    color:#8e8b5b;
    margin-bottom:15px;
}

.about-item h3{
    font-size:30px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:14px;
    color:#171717;
}

.about-item p{
    font-size:22px;
    line-height:1.6;
    color:#555;
    margin-bottom:12px;
}

.about-item a{
    font-size:20px;
    color:#8e8b5b;
    text-decoration:none;
    font-weight:500;
}

.about-item a:hover{
    text-decoration:underline;
}

/* ======================================
   INFO BAR
====================================== */
.info-bar{
    background:#171717;
    padding:15px 60px;
}

.info-bar-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.info-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:white;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.info-item i{
    font-size:20px;
    color:white;
}

.info-item:not(:last-child){
    border-right:1px solid rgba(255,255,255,0.2);
    padding-right:40px;
}

/* ======================================
   CREDIT FOOTER
====================================== */
.credit-footer{
    background:#171717;
    padding:5px 20px;
    text-align:right;
}

.credit-footer p{
    color:rgba(255,255,255,0.5);
    font-size:10px;
    letter-spacing:0.5px;
}

/* ======================================
   PAGE HERO (subpaginas)
====================================== */
.page-hero{
    background:#d9d3d3;
    padding:70px 32px 50px;
    text-align:center;
}

.page-hero-subtitle{
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#7b7754;
    margin-bottom:14px;
}

.page-hero-title{
    font-family:'Cormorant Garamond', serif;
    font-size:48px;
    font-weight:500;
    color:#171717;
    margin-bottom:18px;
}

.page-hero-text{
    max-width:500px;
    margin:0 auto;
    font-size:16px;
    line-height:1.7;
    color:#555;
}

/* ======================================
   WHY SECTION
====================================== */
.why-section{
    padding:70px 60px;
}

.why-container{
    display:flex; /*display:flex op .why-container zet tekst en foto naast elkaar, elk met flex:1 zodat ze evenveel ruimte innemen.*/
    align-items:flex-start; /*Nu blijft de foto netjes bovenaan staan in plaats van verticaal gecentreerd te worden tegenover de veel langere tekst.*/
    gap:60px;
}

.why-text{
    flex:1;
}

.why-text h2{
    font-size:24px;
    font-weight:500;
    color:#171717;
    margin-bottom:18px;
}

.why-text p{
    font-size:16px;
    line-height:1.7;
    color:#555;
    margin-bottom:16px;
}

.why-image{
    flex:1;
    position:sticky; /*De foto blijft staan tijdens het scrollen*/
    top:100px;
}

.why-image img{
    width:100%;
    height:480px;
    object-fit:cover; /*object-fit:cover op de afbeelding zorgt ervoor dat de foto altijd de volledige .why-image-ruimte vult zonder vervormd te worden — de foto wordt indien nodig een beetje "bijgesneden".*/
    border-radius:8px; /*border-radius:8px geeft de foto lichtjes afgeronde hoeken, passend bij de rest van je site (knoppen hebben ook afgeronde hoeken).*/
    display:block;
}

.why-text ul{
    margin:0 0 20px 20px;
    padding:0;
}

.why-text ul li{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:6px;
}

.why-text ul li::marker{
    color:#8e8b5b;
}

/* ======================================
   PROGRAMS SECTION
====================================== */
.programs-section{
    background:rgb(224, 218, 218);
    padding:60px 60px;
}

.programs-title{
    font-size:24px;
    font-weight:600;
    color:#171717;
    margin-bottom:30px;
    text-align:center
}

.programs-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.programs-grid.photography-grid{ /*Door de extra klasse photography-grid toe te voegen naast programs-grid in je HTML, kan je dezelfde basisopmaak hergebruiken, maar toch een ander aantal kolommen instellen — dit heet een "modifier"-klasse.*/
    grid-template-columns:repeat(3, 1fr);
}

.program-card{
    background:white;
    border-radius:12px;
    padding:24px;
}

.program-card i{
    font-size:24px;
    color:#8e8b5b;
    margin-bottom:14px;
}

.program-card h3{
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    color:#171717;
    margin-bottom:10px;
}

.program-card p{
    font-size:14px;
    line-height:1.6;
    color:#555;
}

/* ======================================
   CTA SECTION
====================================== */
.cta-section{
    padding:10px 32px 60px;
    text-align:center;
}

.cta-section h2{
    font-size:22px;
    font-weight:600;
    color:#171717;
    margin-bottom:14px;
}

.cta-section p{
    font-size:16px;
    color:#555;
    margin-bottom:26px;
}

/* ======================================
   TEXT SECTION (Over mij)
====================================== */
.text-section{
    padding:60px 32px;
}

.text-section-container{
    max-width:700px;
    margin:0 auto;
}

.text-section-container h2{
    font-size:24px;
    font-weight:600;
    color:#171717;
    margin-bottom:18px;
}

.text-section-container p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:16px;
}

/* ======================================
   TEXT SECTION opmaak (Over mij)
====================================== */
.text-section-container h3{
    font-size:18px;
    font-weight:600;
    color:#171717;
    margin-top:36px;
    margin-bottom:16px;
    padding-top:24px;
    border-top:1px solid #ddd;  /*dit creëert de dunne scheidingslijn boven elke tussentitel, zoals je in de afbeeldingen ziet.*/
}

.text-section-container ul{
    margin:0 0 20px 24px;
    padding:0;
}

.text-section-container ul li{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:14px;
}

.text-section-container ul li::marker{ /*kleurt de bolletjes (ul) in de olijfgroene accentkleur, voor visuele samenhang.*/
    color:#8e8b5b;
}

.text-section-container b{
    color:#171717;
}

.quote{
    font-style:italic;
    font-size:16px;
    line-height:1.8;
    color:#555;
    border-left:2px dashed #b7b07a; /*geeft het citaat de gestippelde verticale lijn zoals in je voorbeeldafbeelding.*/
    padding:6px 0 6px 20px;
    margin:30px 0 0;
}

.quote::before{ /*.quote::before en ::after voegen automatisch de aanhalingstekens toe via CSS, dus je hoeft ze niet zelf in de tekst te typen — netter en makkelijker aan te passen indien je de stijl ooit wil wijzigen.*/
    content:'"'; 
}

.quote::after{
    content:'"';
    white-space:nowrap; /*zorgt ervoor dat dit pseudo-element zelf nooit een eigen regel begint, ook al zou er toch nog ergens een toevallige spatie staan.*/
}

/* ======================================
   CONTACT SECTION
====================================== */
.contact-section{
    padding:70px 60px;
}

/* ======================================
   INFO CARDS (Contact)
====================================== */
.info-cards{
    display:flex;
    gap:24px;
    max-width:1100px;
    margin:0 auto;
}

.info-card{
    flex:1;
    background:#f4f1ea;
    border-radius:10px;
    padding:50px;
}

.info-card h3{
    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    font-weight:700;
    color:#171717;
    margin-bottom:22px;
}

.info-row{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:18px;
}

.info-row:last-child{
    margin-bottom:0;
}

.info-icon{
    width:36px;
    height:36px;
    background:#8e8b5b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:14px;
    flex-shrink:0;
}

.info-row p{
    font-size:15px;
    line-height:1.6;
    color:#333;
}

.info-row a{
    color:#333;
    text-decoration:none;
}

.info-row a:hover{
    color:#8e8b5b;
}

.hours-row{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid #e0dcd0;
    font-size:14px;
    align-items:center;
    gap:16px;
}

.hours-row:last-child{
    border-bottom:none;
}

.hours-row span:first-child{
    font-weight:600;
    color:#171717;
}

.hours-row span:last-child{
    color:#555;
    white-space:nowrap;
}

.hours-row .closed{
    color:#999;
}

/* ======================================
   MAP SECTION
====================================== */
.map-section{
    padding:0 60px 70px;
}

.map-section h2{
    font-size:22px;
    font-weight:600;
    color:#171717;
    margin-bottom:20px;
    max-width:1100px;
    margin-left:auto;
    margin-right:auto;
}

.map-wrapper{
    width:100%;
    height:400px;
    max-width:1100px;
    margin:0 auto;
    border-radius:8px;
    overflow:hidden;
}

/* ======================================
   INFO SECTION (praktische info)
====================================== */
.info-section{  /*.info-section hergebruikt bewust géén grijze achtergrond (in tegenstelling tot .programs-section), zodat er visuele afwisseling ontstaat tussen de secties op je pagina — wit, dan grijs, dan weer wit, dan de olijfgroene CTA-knop als afsluiter. Dat voorkomt dat de pagina "plat" aanvoelt.*/
    padding:60px 60px;
}

.info-container{
    display:flex;
    justify-content:space-between;
    gap:40px;
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.info-block{
    flex:1;
}

.info-block i{
    font-size:26px;
    color:#8e8b5b;
    margin-bottom:14px;
}

.info-block h3{
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    color:#171717;
    margin-bottom:10px;
}

.info-block p{
    font-size:14px;
    line-height:1.6;
    color:#555;
}

/* ======================================
   GALLERY SECTION (Portfolio)
====================================== */
.gallery-section{
    padding:60px 60px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:8px;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

/* ======================================
   GALLERY FILTERS (Portfolio)
====================================== */
.gallery-filters{
    display:flex;
    justify-content:center;
    gap:14px;
    padding:0px 60px 40px;
    margin-top:-40px;
    flex-wrap:wrap;
}

.filter-btn{
    background:none;
    border:1px solid #ccc;
    color:#555;
    padding:10px 24px;
    border-radius:4px;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    cursor:pointer;
    transition:0.3s;
    font-family:'Poppins', sans-serif;
}

.filter-btn:hover{
    border-color:#8e8b5b;
    color:#8e8b5b;
}

.filter-btn.active{
    background:#8e8b5b;
    border-color:#8e8b5b;
    color:white;
}

.gallery-item.hidden{
    display:none;
}

/* ======================================
   LINKS SECTION (Fotografie.html)
====================================== */
.links-section{
    background:rgb(224, 218, 218);
    padding:50px 60px;
}

.links-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
    max-width:900px;
    margin:0 auto;
}

.link-card{
    display:flex; /*binnen elke .link-card zet icoon, tekst en pijltje netjes op één rij, met margin-left:auto op de pijl zodat die automatisch helemaal rechts uitlijnt.*/
    align-items:center;
    gap:18px;
    background:white;
    border:1px solid #ddd;
    border-radius:12px;
    padding:22px 24px;
    text-decoration:none;
    transition:0.3s;
}

.link-card:hover{
    border-color:#8e8b5b;
    transform:translateY(-3px); /*geeft een subtiele hover-interactie, zodat duidelijk is dat de hele kaart klikbaar is (niet enkel de tekst).*/
}

.link-card > i:first-child{
    font-size:26px;
    color:#8e8b5b;
    flex-shrink:0;
}

.link-card h3{
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    color:#171717;
    margin-bottom:4px;
}

.link-card p{
    font-size:13px;
    color:#555;
    line-height:1.5;
}

.link-arrow{
    margin-left:auto;
    color:#8e8b5b;
    font-size:16px;
    flex-shrink:0;
}

/* ======================================
   INTRO SECTION (Wedstrijdfoto's)
====================================== */
.intro-section{
    padding:40px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.intro-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    max-width:900px;
    margin:0 auto;
    width:100%;
}

.intro-container p{
    font-size:15px;
    line-height:1.7;
    color:#555;
    max-width:600px;
}

.instagram-btn{ /*.instagram-btn heeft een linear-gradient die de bekende Instagram-kleuren nabootst — dit is de enige plek in je hele site waar je een verloop gebruikt, wat bewust is: het herkenningspunt van het Instagram-logo weegt hier zwaarder dan visuele consistentie met de rest van je (verder vlakke) site.*/
    width:48px;
    height:48px;
    border-radius:8px;
    background:linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:22px;
    text-decoration:none;
    flex-shrink:0;
    transition:0.3s;
}

.instagram-btn:hover{
    transform:scale(1.08);
}

/* ======================================
   EVENTS SECTION
====================================== */
.events-section{
    background:rgb(224, 218, 218);
    padding:50px 60px;
}

.events-container{
    max-width:900px;
    margin:0 auto;
}

.events-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.event-card{
    background:white;
    border-radius:8px;
    padding:20px 24px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.event-top{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.events-container h2{
    font-size:20px;
    font-weight:600;
    color:#171717;
    margin-bottom:24px;
}

.event-info h3{
    font-size:16px;
    font-weight:600;
    color:#171717;
    margin-bottom:4px;
}

.event-info p{
    font-size:13px;
    color:#888;
}

.event-buttons{
    display:flex;
    gap:10px;
}

.event-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:4px;
    font-size:13px;
    text-decoration:none;
    transition:0.3s;
}

.event-btn-outline{
    border:1px solid #ccc;
    color:#171717;
}

.event-btn-outline:hover{
    border-color:#8e8b5b;
    color:#8e8b5b;
}

.event-btn-filled{
    background:#8e8b5b;
    color:white;
}

.event-btn-filled:hover{
    background:#a39f6f;
}

.step-screenshot{
    width:100%;
    border-radius:6px;
    margin-bottom:15px;
    border:1px solid #e0dcd0;
}

/* ======================================
   PRICING SECTION
====================================== */
.pricing-section{
    padding:60px;
}

.pricing-container{ /*.pricing-container met grid-template-columns:1fr 1fr zet de twee boxen (Prijzen / Hoe bestellen) mooi naast elkaar, elk met evenveel breedte.*/
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    max-width:900px;
    margin:0 auto;
}

.pricing-box{
    border:1px solid #ddd;
    border-radius:10px;
    padding:26px 28px;
}

.pricing-box h3{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:16px;
    font-weight:600;
    color:#171717;
    margin-bottom:20px;
}

.pricing-box h3 i{
    color:#8e8b5b;
    font-size:16px;
}

.pricing-box h4{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:0.5px;
    color:#888;
    margin:40px 0 15px;
}

.price-row{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    color:#555;
    margin-bottom:10px;
}

.price-row span:last-child{
    font-weight:500;
    color:#171717;
}

.pricing-note{
    font-size:13px;
    line-height:1.6;
    color:#666;
    margin-top:4px;
}

.step-row{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:14px;
}

.step-row:last-child{
    margin-bottom:0;
}

.step-number{ /*.step-number hergebruikt hetzelfde ronde-cirkel-patroon als je eerder al zag in het mockup-voorbeeld, opgebouwd met border-radius:50% op een vast breedte/hoogte-vak.*/
    background:#8e8b5b;
    color:white;
    width:22px;
    height:22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    flex-shrink:0;
}

.step-row p{
    font-size:13px;
    color:#555;
    line-height:1.6;
}

.event-warning{
    font-size:11px;
    color:#b5651d;
    margin-top:8px;
    text-align:center;
}

/* ======================================
   PIXIESET WAARSCHUWINGS-MODAL
====================================== */
.modal-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:2000;
    align-items:center;
    justify-content:center;
}

.modal-overlay.active{
    display:flex;
}

.modal-box{
    background:white;
    border-radius:10px;
    padding:32px;
    max-width:420px;
    width:90%;
    max-height:85vh;
    overflow-y:auto;
}

.modal-box h3{
    font-size:18px;
    color:#171717;
    margin-bottom:16px;
}

.modal-box p{
    font-size:14px;
    line-height:1.6;
    color:#333;
    margin-bottom:10px;
}

.modal-box ol{
    margin:0 0 14px 20px;
}

.modal-box ol li{
    font-size:14px;
    line-height:1.7;
    color:#333;
}

.modal-buttons{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.modal-btn{
    flex:1;
    padding:12px;
    border-radius:4px;
    border:none;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    font-family:'Poppins', sans-serif;
}

.modal-cancel{
    background:#eee;
    color:#333;
}

.modal-cancel:hover{
    background:#ddd;
}

.modal-ok{
    background:#8e8b5b;
    color:white;
}

.modal-ok:hover{
    background:#a39f6f;
}


/* ======================================
   WINTERFITCHALLENGE 
====================================== */
.btn-outline-dark{
    border:2px solid #8e8b5b;
    color:#171717;
}

.btn-outline-dark:hover{
    background:#8e8b5b;
    color:white;
}

.dogs-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:24px;
    max-width:1100px;
    margin:0 auto;
}

.dogs-grid .dog-card{
    width:calc(33.333% - 16px);
}

.dog-card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #ddd;
    transition:0.3s;
}

.dog-card:hover{
    transform:translateY(-3px);
}

.dog-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.dog-card-content{
    padding:20px 22px;
}

.dog-card-content h3{
    font-family:'Cormorant Garamond', serif;
    font-size:26px;
    font-weight:700;
    color:#171717;
    margin-bottom:8px;
}

.dog-card-content p{
    font-size:14px;
    line-height:1.6;
    color:#555;
}

/* ======================================
   NO EQUIPMENT NOTE (Winter Fit Challenge)
====================================== */
.no-equipment-note{
    display:flex;
    align-items:flex-start;
    gap:16px;
    background:rgb(224, 218, 218);
    border-radius:8px;
    padding:20px 24px;
    margin:20px 0;
}

.no-equipment-note i{
    font-size:22px;
    color:#8e8b5b;
    margin-top:2px;
    flex-shrink:0;
}

.no-equipment-note p{
    font-size:15px;
    line-height:1.6;
    color:#333;
}

/* ======================================
   NAVIGATIEBAR RESPONSIVE MAKEN 
====================================== */
.hamburger{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:26px;
    cursor:pointer;
}

@media (max-width: 768px){
    .gallery-filters{
        padding:0 20px 24px;
        gap:10px;
    }

    .filter-btn{
        padding:8px 16px;
        font-size:12px;
    }
    
    .hamburger{
        display:block;
    }

    .menu{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#171717;
        flex-direction:column;
        gap:0;
        padding:10px 0;
        z-index:999;
    }

    .menu.active{
        display:flex;
    }

    .menu li{
        width:100%;
        text-align:center;
    }

    .menu a{
        display:block;
        padding:16px 20px;
    }

    .hero{
        height:auto;
        min-height:600px;
    }

    .hero-content{
        width:100%;
        padding-top:100px;
        margin-left:0;
        padding-left:20px;
        padding-right:20px;
    }

    .hero-title{
        font-size:48px;
    }

    .hero-line2{
        margin-left:60px;
    }

    .hero-text{
        width:100%;
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:14px;
    }

    .btn{
        padding:16px 30px;
        justify-content:center;
    }

    .social-icons{
        display:none;
    }

    .wave svg{
        height:50px;
    }

    .about{
        padding:40px 24px;
    }

    .about-container{
        flex-direction:column;
        gap:32px;
    }

    .about-item{
        max-width:100%;
    }

    .info-bar{
        padding:24px 20px;
    }

    .info-bar-container{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .info-item:not(:last-child){
        border-right:none;
        padding-right:0;
        border-bottom:1px solid rgba(255,255,255,0.2);
        padding-bottom:16px;
        width:100%;
    }

    .page-hero{
        padding:50px 20px 36px;
    }

    .page-hero-title{
        font-size:32px;
    }

    .why-section{
        padding:40px 20px;
    }

    .why-container{
        flex-direction:column;
        gap:30px;
    }

    .why-image{
        position:static;
    }

    .why-image img{
        height:auto;
    }

    .programs-section{
        padding:40px 20px;
    }

    .programs-grid,
    .programs-grid.photography-grid{
        grid-template-columns:1fr;
    }

    .navbar{
        padding:0 20px;
    }

    .contact-btn{
        display:none;
    }
    .contact-section{
        padding:40px 20px;
    }

    .info-cards{
        display:flex;
        flex-direction:column;
        gap:20px;
        max-width:100%;
        margin:0 auto;
    }

    .info-card{
        padding:28px;
    }

    .info-card h3{
        font-size:24px;
    }

    .map-wrapper{
        height:280px;
    }

    .map-section{
        padding:0 20px 40px;
    }
    .gallery-section{
        padding:40px 20px;
    }

    .gallery-grid{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .gallery-item img{
        height:180px;
    }
    .links-section{
        padding:40px 20px;
    }

    .links-grid{
        grid-template-columns:1fr;
    }
    .info-section{
        padding:40px 20px;
    }

    .info-container{
        flex-direction:column;
        gap:28px;
    }
    .events-section,
    .pricing-section{
        padding:40px 20px;
    }

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

    .event-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .event-buttons{
        width:100%;
    }

    .event-btn{
        flex:1;
        justify-content:center;
    }

    .pricing-container{
        grid-template-columns:1fr;
    }

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

    .dog-card img{
        height:220px;
    }

    .challenge-banner{
        flex-direction:column;
        align-items:flex-start;
        padding:24px;
        text-align:left;
    }

    .challenge-banner .btn{
        width:100%;
        justify-content:center;
    }
}
