/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Brandon Grotesque', 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #242323;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h2.section-title {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  text-align: center;
  color: #242323;
}

p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #242323;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #242323;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  font-family: 'Avenir', 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #C6DBB2;
}

.nav-menu a.active {
  color: #C6DBB2;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== SOCIAL BAR ===== */
.social-bar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-bar a {
  display: block;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-bar a:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.social-bar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  padding: 120px 0 2.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #242323;
  margin-bottom: 1.5rem;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: #242323;
  margin: 0 auto 1.5rem;
}

.hero-subtitle {
  font-family: 'Didot', 'Playfair Display', 'Georgia', serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #242323;
  text-transform: none;
}

/* ===== VIDEO / ABOUT SECTION ===== */
.about-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 980 / 584;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 5rem 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-block h3 {
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-block p {
  font-size: 0.88rem;
  line-height: 1.9;
}

.about-block a {
  color: #94A485;
  text-decoration: underline;
  text-decoration-color: rgba(148, 164, 133, 0.4);
  transition: text-decoration-color 0.3s ease;
}

.about-block a:hover {
  text-decoration-color: #94A485;
}

/* ===== GITES SECTION ===== */
.gites-section {
  padding: 5rem 0;
  background: #fff;
  text-align: center;
}

.gites-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 0.88rem;
  line-height: 1.9;
  text-align: center;
}

.gites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.gite-card {
  overflow: hidden;
  position: relative;
}

.gite-card img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gite-card:hover img {
  transform: scale(1.03);
}

.btn {
  display: inline-block;
  font-family: 'Avenir', 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border: 1.5px solid #242323;
  color: #242323;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #242323;
  color: #fff;
}

/* ===== TROEVEN (HIGHLIGHTS) SECTION ===== */
.troeven-section {
  padding: 5rem 0;
  background: #fff;
}

.troeven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

.troef-item {
  text-align: center;
}

.troef-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: #242323;
}

.troef-icon svg {
  width: 100%;
  height: 100%;
}

.troef-item h3 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: capitalize;
}

.troef-item p {
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.85;
  color: #444;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 5rem 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 3/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
  line-height: 1;
  font-weight: 300;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  padding: 1rem;
  transition: opacity 0.3s ease;
  user-select: none;
  font-weight: 300;
}

.lightbox-nav:hover {
  opacity: 0.7;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ===== REGIO SECTION ===== */
.regio-section {
  padding: 5rem 0;
  background: #E2EDD7;
}

.regio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

.regio-item h3 {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.regio-item p {
  font-size: 0.85rem;
  line-height: 1.85;
}

/* ===== BESCHIKBAARHEID SECTION ===== */
.booking-section {
  padding: 5rem 0;
  background: #fff;
  text-align: center;
}

.calendar-wrapper {
  max-width: 980px;
  margin: 0 auto 1.5rem;
  padding: 0 2rem;
}

.calendar-wrapper iframe {
  width: 100%;
  height: 600px;
  border: 0;
}

.btn-primary {
  display: inline-block;
  font-family: 'Avenir', 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  background: #242323;
  color: #fff;
  border: 1.5px solid #242323;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: #242323;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 5rem 0;
  background: #F8E1CF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-info p {
  font-size: 0.88rem;
  line-height: 2.2;
}

.contact-info a {
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #94A485;
}

.contact-info .small-note {
  font-size: 0.75rem;
  color: #666;
  margin-top: 1rem;
}

.map-container {
  margin-top: 1.5rem;
  width: 100%;
  height: 250px;
  border: 0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0;
  font-family: 'Brandon Grotesque', 'Avenir', 'Helvetica Neue', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: #242323;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(36, 35, 35, 0.3);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(36, 35, 35, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #242323;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ===== FIXED BOOK BUTTON ===== */
.fixed-book-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 900;
  font-family: 'Avenir', 'Helvetica Neue', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  background: #242323;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.fixed-book-btn:hover {
  background: #444;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer p {
  font-size: 0.72rem;
  color: #888;
}

/* ===== GITES SUBPAGE ===== */
.gites-page-header {
  padding-top: 120px;
  padding-bottom: 3rem;
  text-align: center;
  background: #fff;
}

.gites-page-intro {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.88rem;
  line-height: 1.9;
  text-align: center;
  padding: 0 2rem;
}

.gite-detail {
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.gite-detail-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.gite-detail-text h3 {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-weight: 300;
}

.gite-detail-text p {
  font-size: 0.85rem;
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.gite-price {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  color: #242323;
}

/* Gite carousel */
.gite-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.gite-carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gite-carousel img.active {
  opacity: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: #242323;
  transition: background 0.3s ease;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.95);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: #fff;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 35, 35, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: 0.25em;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gites-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gite-card img {
    height: 400px;
  }

  .troeven-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .regio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gite-detail-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-bar {
    right: 10px;
  }

  .social-bar a {
    width: 26px;
    height: 26px;
  }

  section {
    padding: 3.5rem 0;
  }

  h2.section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 1.4rem;
  }

  .container {
    padding: 0 1.2rem;
  }
}
