:root {
  /* Base font sizes (desktop) */
  --font-xxs: 0.75rem;   /* 12px */
  --font-xs: 0.875rem;   /* 14px */
  --font-sm: 1rem;       /* 16px */
  --font-md: 1.125rem;   /* 18px */
  --font-lg: 2rem;     /* 24px */
  --font-xl: 2.5rem;       /* 32px */
  --font-xxl: 3.5rem;      /* 48px */
  --black: #000000;
  --white: #ffffff;
  --orange: #f3b969;
  --beige: #F5E7D8;
  --light-beige: #F8F5EC;
  --darker-black: #222222;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* === BASISINSTELLINGEN === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
body {
  font-family: var(--font-family-base);
  font-size: var(--font-sm);
  color: var(--black);
  line-height: 1.2;
  background-color: var(--white);
}
.content {
  max-width: 75vw;
  margin: 0 auto;
}
section {padding: 45px 0px;}
/* === KOPPEN === */
h1 {
  font-size: var(--font-xxl);
  line-height: var(--font-heading-line-height);
  font-weight: 700;
}

h2 {
  font-size: var(--font-xl);
  line-height: var(--font-heading-line-height);
  font-weight: 600;
}

h3 {
  font-size: var(--font-lg);
  font-weight: 600;
}

h4 {
  font-size: var(--font-md);
  font-weight: 600;
}

h5 {
  font-size: var(--font-sm);
  font-weight: 600;
}

h6 {
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === INLINE EN PARAGRAFEN === */
p {
  font-size: var(--font-sm);
  margin-bottom: 1em;
}

span,label,li,td,th,dd,dt {font-size: var(--font-sm);}
small {font-size: var(--font-xs);}
a {text-decoration: none;}
button,input,select,textarea {
  font-size: var(--font-sm);
  font-family: inherit;
}

code,kbd,samp {
  font-size: var(--font-xs);
  font-family: monospace;
}

blockquote {
  font-size: var(--font-md);
  font-style: italic;
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
}

figcaption {
  font-size: var(--font-xs);
  color: #555;
  text-align: center;
  margin-top: 0.5em;
}
ol, ul {list-style: none;}

button {
  cursor: pointer;
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
  color: var(--white);
  background-color: transparent;
  min-width: 150px;         
  text-align: center;
  box-sizing: border-box;   
  transition: all 1s ease;
}

.primary-button {background-color: var(--orange);}
.primary-button:hover {background-color: var(--black);}
.secondary-button {
  border: 1px solid var(--orange);
  background-color: transparent;
}
.secondary-button:hover {background-color: var(--orange);}
.header-above-sections {
  text-align: center;
  padding: 30px 0px;
}
.small-title-header {color: var(--orange);}
.gallery-page .secondary-button {color: var(--black) !important;}
.gallery-page  .secondary-button:hover {color: var(--white) !important;}

#main-navbar {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  z-index: 10;
  transition: all 0.3s ease;
}

#main-navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  border-radius: 0;
  padding: 15px 30px;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.logo img {
  height: 36px;
  margin-right: 10px;
}

.nav-menu {display: flex;}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: var(--black);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a.active,.nav-links a:hover {color: var(--orange);}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--orange);
}

.nav-cta button { min-width: unset;}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.hamburger i {display: none;}
.hamburger .fa-bars {display: inline;}
.hamburger.open .fa-bars {display: none;}
.hamburger.open .fa-times {display: inline;}

/* === HERO section === */
#hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
}

.hero-image.active {opacity: 1;}


.hero-text {
  position: absolute;
  z-index: 3; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  transition: opacity 0.5s ease;
}
.hero-text > hr {
  width: 60%;
  margin: 20px auto;
  border: 1px solid var(--orange);
}

.hero-image1 {background-image: url('/images/achtergrond/desktop/achtergrondpaarden.webp');}
.hero-image2 {background-image: url('/images/achtergrond/desktop/hartjeshoeve_2.webp');}
.hero-image3 {background-image: url('/images/achtergrond/desktop/hartjeshoeve_3.webp');}


/* === OVER ONS === */
.about-us-home-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  flex-wrap: wrap; 
}

.about-us-text {
  flex: 1 1 500px;
}

.header-about-text {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-us-image {
  flex: 1 1 500px;
  text-align: center;
}
.about-us-text > p > span {
  font-weight: bold;
}
.about-us-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


/* === Contact home === */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0px;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}
.contact-left p {
  margin: 20px 0px;
}
.whatsapp-button {
  background-color: #3c4b2b;
  color: var(--white);
  padding: 15px 25px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}

.whatsapp-button i {
  margin-right: 10px;
  font-size: 1.2em;
}

.contact-right {
  background: #fff4eb;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {position: relative;}
.icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange); 
  pointer-events: none;
}
.icon i {display: inline-block;}
.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%; 
  padding: 15px 40px 15px 15px;
  border-radius: 10px;
  border: none;
  background: var(--white);
  display: block;
}
.form-group textarea {
  height: 100px;
  resize: none;
}

.note {
  margin-top: 20px;
  color: var(--orange);
}

.contact-left, .contact-right {flex: 1 1 350px; }
.contact-right {
  background: var(--beige);
  border-radius: 20px;
  padding: 30px;
  box-sizing: border-box;
  overflow: hidden;
}
.contact-left > p > span {font-weight: bold;}
.contact-details p {margin: 5px 0;}
.contact-details {margin-bottom: 20px;}
/* === CONTACT PAGINE ZELF === */
.hero-contact {
  height: 60vh;
  background-image: url('/images/galerij/omgevering/omgeving_8.webp'); 
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
}
.contact-hr {
    border: 1px solid var(--orange);
    width: 5vw;
}
/* === REVIEWS === */
.reviews-section {
  background-color: var(--light-beige);
  padding: 30px 0px;
}

.review-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 0;
}
.review-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  width: calc(33.333% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden; 
}

.review-body {
  padding: 40px 20px;
  text-align: center;
  flex-grow: 1;
}

.stars {
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 20px;
}

.reviewer {
  background-color: var(--orange);
  padding: 16px;
  font-weight: bold;
  color: var(--white);
  border-radius: 0 0 16px 16px;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  margin-top: auto; 
}
.review-button {text-align: center;}

/* === Galerij === */
 .gallery {
    padding-bottom: 100px;
    display: grid;
    margin: 0 auto;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-item {position: relative;}

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }

  .gallery-item.small {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-item.large {
    grid-row: span 2;
    grid-column: span 1;
  }

  /* === Footer === */
  footer {background-color: var(--darker-black);}
    footer a {color: var(--white);}
    footer li {margin: 10px 0px;}
    footer i {margin-right: 8px;}
footer a.active-footer {
  color: var(--orange); /* or any highlight color you prefer */
}


.footer-wrapper {  display: grid;
  padding: 50px 0px;
  color: var(--white);
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
}
.footer-copyright {
  text-align: center;
  padding: 20px 0;
  color: var(--white);
  border-top: 1px solid var(--white);
}





       .gallery-buttons {
        text-align: center;
        margin: 30px 0;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .gallery-buttons button {
        padding: 10px 20px;
        cursor: pointer;
    }

.gallery-grid {
    column-count: 3;
    column-gap: 10px;
}

.gallery-item-gallery-page {
    display: block;
    margin-bottom: 10px;
    break-inside: avoid; 
}

.gallery-item-gallery-page img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

        .privacy ul{list-style-type: disc;}
        .privacy ul li::marker {color: var(--orange);}
        .privacy li {
            margin-bottom: 10px;
            margin-left: 30px;
        }
        .privacy h2, .privacy h3, .privacy h4 {margin-bottom: 10px;}
        .privacy a {color: var(--orange);}



.our-horses-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* or flex-start if you want it left aligned */
  width: 100%;
  margin-bottom: 20px;
}

.our-horses-card {
  position: relative;
  height: 420px;

  flex: 0 1 380px;   /* ⬅️ bigger base size */
  max-width: 420px;  /* ⬅️ allows nice large cards */

  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #fff;
}


/* IMPORTANT: remove this if you have it */
.our-horses-card { width: auto; }   /* or just delete width: 100% */


    .our-horses-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .our-horses-info {
      position: absolute;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      color: var(--white);
      width: 100%;
      text-align: center;
      padding: 10px;
    }
    .section-404 {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      background-color: var(--light-beige);
    }
    
    .error-404 {
      color: var(--orange);
      margin-bottom: 20px;
    }

    .section-404 p {
      margin-bottom: 30px;
      color: var(--darker-black);
    }
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .our-horses-card {
        height: 350px;
      }
    }

    @media (max-width: 480px) {
      .our-horses-card {
        height: 300px;
      }
      .our-horses-info {
        padding: 8px;
      }
    }
/* Reset removes bullets everywhere */
ol, ul { list-style: none; }

/* Add a class for lists where you want bullets back */
.list-dots {
  list-style: disc;       /* default dot */
  margin-left: 20px;      /* indentation */
  padding-left: 20px;     /* extra spacing */
}




  .info-container {
            margin: 30px auto;
        }
        .info-container ul {
            padding-left: 20px;
        }
        .info-container ul li::marker {
            content: "- ";
            font-weight: bold;
        }
        .info-container p::before {
            content: "- ";
            font-weight: bold;
        }
        .note-warning {
            background-color: #fff8dc;
            padding: 10px;
            border-left: 4px solid #f0ad4e;
            margin: 15px 0;
        }
        .note-important {
            background-color: #f8d7da;
            padding: 10px;
            border-left: 4px solid #dc3545;
            margin: 15px 0;
        }
@media (max-width: 900px) {
    .gallery-grid {column-count: 2;}
}

@media (max-width: 600px) {
    .gallery-grid {column-count: 1;}
}

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .gallery-item.animate {animation: fadeInUp 0.6s ease;}


/* === RESPONSIVE SCHAAL (Tablet en Mobiel) === */
@media (max-width: 1126px) {
  #main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  .hamburger {
    display: block;
    width: 40px;   /* Increased width */
    height: 30px;  /* Increased height */
    cursor: pointer;
  }

  .hamburger span,
  .hamburger::before,
  .hamburger::after {
    height: 4px;  /* Thicker lines */
    width: 100%;
    background-color: #000;
    display: block;
    margin: 6px 0;
    transition: 0.3s ease;
  }

  .nav-menu {
    position: fixed; /* instead of absolute */
    top: 60px;       /* or whatever height your navbar has */
    left: 0;
    width: 100vw;
    background-color: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 998;
  }
  .map {
    margin-top: 20px;
  }

  .nav-menu.open {max-height: 300px;}

  .nav-links {
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 15px;
    padding: 15px 0;
  }

  .nav-cta {display: none;}
  .review-card {width: calc(50% - 10px);}
}

@media (max-width: 768px) {
h1 {
  font-size: 25px;
}
.header-buttons > a > button {
  margin-bottom: 20px;
}
  /* === About Us Section === */
  .about-us-home-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-us-text,
  .about-us-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-us-image img {
    max-width: 100%;
    width: 100%;
  }

  /* === Contact Section === */
  .contact-section {
    flex-direction: column;
    padding: 0px;
    gap: 20px;
  }

  .contact-left, .contact-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contact-section .content {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .contact-left {text-align: center; }

  /* === Review Section === */
  .review-grid {
    flex-direction: column;
    gap: 20px;
  }

  .review-card {width: 100%;}

  /* === Gallery === */
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item.large,
  .gallery-item.small {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* === Footer === */
  .footer-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
    gap: 20px;
  }
          .gallery-buttons {flex-direction: column;}
        .gallery-buttons button {width: 100%;}.review-card {width: 100%;}
}.our-horses-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* or flex-start if you want it left aligned */
  width: 100%;
  margin-bottom: 20px;
}

.our-horses-card {
  position: relative;
  height: 420px;

  flex: 0 1 380px;   /* ⬅️ bigger base size */
  max-width: 420px;  /* ⬅️ allows nice large cards */

  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: #fff;
}


/* IMPORTANT: remove this if you have it */
.our-horses-card { width: auto; }   /* or just delete width: 100% */
