/* ============================================
   Travel and Discover — Global Stylesheet
   Theme: Elegant & Neutral (White, Gold, Anthracite)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@300;400;700&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #2c2c2c;
  background-color: #fafafa;
  line-height: 1.75;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: #444; }

a {
  color: #b8972e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: #8a6f1f; }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1a1a1a;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #c9a84c !important;
  letter-spacing: 1px;
}

.navbar-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.navbar-links > li {
  position: relative;
}

.navbar-links a {
  color: #e0e0e0;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201,168,76,0.25);
}

.navbar-links > li > a:hover,
.navbar-links > li > a.active {
  color: #c9a84c;
  border-bottom-color: #c9a84c;
}

/* Dropdown */
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #252525;
  list-style: none;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border-top: 2px solid #c9a84c;
  /* Onzichtbare brug zodat de muis van toggle naar menu kan zonder gap */
  padding-top: 0;
}

.nav-dropdown-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.65rem 1.2rem;
  color: #e0e0e0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  border-bottom: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  background: #333;
  color: #c9a84c;
  border-bottom: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transition: transform 8s ease-out;
}

.hero:hover .hero-bg { transform: scale(1.04); }

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 820px;
}

.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #e8e8e8;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-flag {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-gold {
  background: #c9a84c;
  color: #1a1a1a;
  border: 2px solid #c9a84c;
}

.btn-gold:hover {
  background: #b8972e;
  color: #fff;
  border-color: #b8972e;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #c9a84c;
  border: 2px solid #c9a84c;
}

.btn-outline:hover {
  background: #c9a84c;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-wide {
  padding: 5rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a84c;
  margin: 0.8rem auto 0;
}

.bg-light {
  background: #f4f1ec;
}

/* ---------- Destination Cards (Homepage) ---------- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  gap: 2rem;
  justify-content: center;
}

.dest-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}

.dest-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.dest-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-card-country {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #c9a84c;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.dest-card-body p {
  font-size: 0.92rem;
  flex: 1;
}

.dest-card-body .btn {
  align-self: flex-start;
  margin-top: 1rem;
  font-size: 0.8rem;
  padding: 0.55rem 1.4rem;
}

/* ---------- Intro Text ---------- */
.intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 720px) {
  .intro-block { grid-template-columns: 1fr; }
}

.intro-block img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* ---------- Facts / Highlights ---------- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.highlight-item {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-top: 3px solid #c9a84c;
  padding: 1.5rem 1.2rem;
  border-radius: 2px;
  text-align: center;
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.highlight-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.highlight-item p {
  font-size: 0.88rem;
  margin: 0;
}

/* ---------- Photo Gallery ---------- */
.gallery-section {
  padding: 4rem 1.5rem;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.gallery-instruction {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 1rem;
  justify-content: center;
}

.gallery-placeholder {
  background: #e8e4da;
  border: 2px dashed #c9a84c;
  border-radius: 4px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a08030;
  font-size: 0.88rem;
  gap: 0.5rem;
}

.gallery-placeholder .icon {
  font-size: 2.2rem;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* ---------- Video Gallery ---------- */
.video-section {
  padding: 4rem 1.5rem;
  background: #f4f1ec;
}

.video-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 480px));
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
}

.video-placeholder {
  background: #e8e4da;
  border: 2px dashed #c9a84c;
  border-radius: 4px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a08030;
  font-size: 0.88rem;
  gap: 0.5rem;
}

.video-placeholder .icon { font-size: 2.5rem; }

.video-wrapper {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.video-wrapper video {
  width: 100%;
  display: block;
  max-height: 280px;
  object-fit: cover;
}

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Footer ---------- */
footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

footer .footer-brand {
  font-family: 'Playfair Display', serif;
  color: #c9a84c;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

footer a { color: #c9a84c; }

/* ---------- Hamburger button ---------- */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #e0e0e0;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 6px 4px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201,168,76,0.25);
}

/* ---------- Mobile menu ---------- */
.nav-mobile-menu {
  display: none;
  width: 100%;
  padding: 0.4rem 0 0.8rem;
  border-top: 1px solid #2e2e2e;
}

.nav-mobile-menu.open {
  display: block;
}

.nav-mobile-menu a {
  display: block;
  padding: 0.8rem 0;
  color: #e0e0e0;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  border-bottom: 1px solid #2e2e2e;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(201,168,76,0.25);
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

.nav-mobile-menu a.active,
.nav-mobile-menu a:hover {
  color: #c9a84c;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 0 1rem;
    min-height: 56px;
    align-items: center;
  }
  .navbar-brand {
    font-size: 1.15rem;
    padding: 0.8rem 0;
  }
  .hero {
    height: 70vh;
  }
}
