@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --forest: #1a3a2a;
  --forest-mid: #2d5a3d;
  --forest-light: #4a8c5c;
  --ocean: #1a4a5e;
  --ocean-light: #2a7a9e;
  --sand: #c8a96e;
  --sand-light: #e8d4a0;
  --earth: #8b5e3c;
  --cream: #f5efe6;
  --dark: #0d1f15;
  --gold: #d4a843;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(212,168,67,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.4s ease;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, padding 0.3s;
}
nav.scrolled {
  background: rgba(13,31,21,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(212,168,67,0.2);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(245,239,230,0.8);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(212,168,67,0.5);
  color: var(--gold);
  padding: 0.4rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-btn:hover { background: var(--gold); color: var(--dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 1px; background: var(--cream); transition: all 0.3s; }
.nav-mobile {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,31,21,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--cream);
  text-decoration: none;
  font-style: italic;
}
.nav-mobile a:hover { color: var(--gold); }

/* SECTIONS */
section { padding: 8rem 4rem; }
.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--sand); }
.section-desc {
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.9;
  color: rgba(245,239,230,0.7);
  max-width: 560px;
}

/* INTRO */
#intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--dark);
  padding: 8rem 6rem;
}
.intro-image-stack { position: relative; height: 600px; }
.intro-img-main {
  position: absolute;
  width: 75%; height: 80%;
  object-fit: cover;
  top: 0; right: 0;
}
.intro-img-accent {
  position: absolute;
  width: 55%; height: 55%;
  object-fit: cover;
  bottom: 0; left: 0;
  border: 4px solid var(--dark);
}
.intro-badge {
  position: absolute;
  top: 50%; right: -2rem;
  transform: translateY(-50%);
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.intro-badge span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: var(--dark); line-height: 1;
}
.intro-badge span:last-child {
  font-size: 0.5rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dark);
}
.intro-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.5); margin-top: 0.3rem;
}

/* NATURE */
#nature { background: linear-gradient(180deg, var(--dark) 0%, var(--forest) 50%, var(--dark) 100%); }
.nature-header { max-width: 700px; margin-bottom: 5rem; }
.parks-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.park-card { position: relative; overflow: hidden; cursor: pointer; }
.park-card:first-child { grid-row: span 2; }
.park-card img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform 0.8s ease; display: block; }
.park-card:hover img { transform: scale(1.08); }
.park-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2.5rem;
  transition: background 0.4s;
}
.park-card:hover .park-overlay { background: linear-gradient(to top, rgba(13,31,21,0.9) 0%, rgba(13,31,21,0.3) 100%); }
.park-tag { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.park-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; line-height: 1.1; margin-bottom: 0.8rem; }
.park-desc { font-size: 0.8rem; color: rgba(245,239,230,0.7); font-weight: 200; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.park-card:hover .park-desc { max-height: 100px; }
.park-highlights { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.8rem; max-height: 0; overflow: hidden; transition: max-height 0.5s ease 0.1s; }
.park-card:hover .park-highlights { max-height: 60px; }
.highlight-tag { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border: 1px solid rgba(212,168,67,0.5); color: var(--sand-light); }

/* CITIES */
#cities { background: var(--dark); }
.cities-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; margin-bottom: 5rem; }
.cities-marquee { overflow: hidden; margin-top: 2rem; }
.marquee-track { display: flex; gap: 2rem; animation: marqueeScroll 20s linear infinite; white-space: nowrap; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-city { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(245,239,230,0.3); letter-spacing: 0.05em; flex-shrink: 0; }
.marquee-city.active { color: var(--gold); }
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.city-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; }
.city-card.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.city-card:hover img { transform: scale(1.06); }
.city-info { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.city-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; margin-bottom: 0.3rem; }
.city-card.featured .city-name { font-size: 2.2rem; }
.city-fact { font-size: 0.7rem; color: rgba(245,239,230,0.6); font-weight: 200; letter-spacing: 0.05em; }
.city-explore { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 0.8rem; opacity: 0; transform: translateY(10px); transition: all 0.3s; }
.city-card:hover .city-explore { opacity: 1; transform: translateY(0); }

/* CULTURE */
#culture { background: linear-gradient(180deg, var(--dark) 0%, #1a2510 50%, var(--dark) 100%); padding: 8rem 0; }
.culture-inner { padding: 0 4rem; }
.culture-title-area { margin-bottom: 5rem; }
.culture-mosaic { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: 350px 280px; gap: 3px; margin-bottom: 5rem; }
.culture-tile { position: relative; overflow: hidden; }
.culture-tile:first-child { grid-row: span 2; }
.culture-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; display: block; }
.culture-tile:hover img { transform: scale(1.05); }
.tile-label { position: absolute; bottom: 1.5rem; left: 1.5rem; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); background: rgba(13,31,21,0.8); padding: 0.3rem 0.7rem; }
.culture-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.culture-feature { text-align: center; }
.feature-icon { width: 60px; height: 60px; border: 1px solid rgba(212,168,67,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.5rem; }
.feature-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; margin-bottom: 0.8rem; }
.feature-text { font-size: 0.8rem; color: rgba(245,239,230,0.6); line-height: 1.8; font-weight: 200; }

/* WILDLIFE */
#wildlife { background: var(--dark); overflow: hidden; }
.wildlife-header { text-align: center; margin-bottom: 5rem; }
.wildlife-scroll { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; padding: 0 4rem; margin-bottom: 5rem; }
.wildlife-scroll::-webkit-scrollbar { display: none; }
.animal-card { flex: 0 0 380px; position: relative; overflow: hidden; height: 520px; cursor: pointer; }
.animal-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; display: block; }
.animal-card:hover img { transform: scale(1.08); }
.animal-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem; }
.animal-status { display: inline-block; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.2rem 0.6rem; background: rgba(212,168,67,0.2); border: 1px solid rgba(212,168,67,0.5); color: var(--gold); margin-bottom: 0.8rem; width: fit-content; }
.animal-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; margin-bottom: 0.5rem; }
.animal-latin { font-style: italic; font-size: 0.8rem; color: rgba(245,239,230,0.5); margin-bottom: 0.8rem; }
.animal-desc { font-size: 0.8rem; color: rgba(245,239,230,0.7); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.5s; }
.animal-card:hover .animal-desc { max-height: 80px; }

/* GALLERY */
#gallery { background: linear-gradient(180deg, var(--dark), #0a1508); padding: 8rem 4rem; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-filters { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.filter-btn { padding: 0.5rem 1.5rem; border: 1px solid rgba(212,168,67,0.3); background: transparent; color: rgba(245,239,230,0.6); font-family: 'Jost', sans-serif; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(13,31,21,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-zoom { width: 50px; height: 50px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; transform: scale(0.5); transition: transform 0.3s; }
.gallery-item:hover .gallery-zoom { transform: scale(1); }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 2rem; right: 2rem; width: 40px; height: 40px; border: 1px solid rgba(245,239,230,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; color: var(--cream); background: none; transition: all 0.3s; }
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* MAP */
#map-section { background: var(--forest); padding: 6rem 4rem; text-align: center; }
.map-container { position: relative; max-width: 600px; margin: 3rem auto; }
.map-svg { width: 100%; fill: var(--forest-mid); stroke: var(--forest-light); stroke-width: 1; }
.map-pin { position: absolute; transform: translate(-50%, -100%); cursor: pointer; transition: transform 0.3s; }
.map-pin:hover { transform: translate(-50%, -100%) scale(1.3); }
.pin-dot { width: 12px; height: 12px; background: var(--gold); border-radius: 50%; position: relative; margin: 0 auto; }
.pin-dot::before { content: ''; position: absolute; inset: -6px; border: 1px solid rgba(212,168,67,0.4); border-radius: 50%; animation: pinPulse 2s infinite; }
.pin-label { font-size: 0.65rem; letter-spacing: 0.1em; text-align: center; color: var(--cream); margin-top: 4px; white-space: nowrap; }

/* MODALS */
.page-modal { position: fixed; inset: 0; background: var(--dark); z-index: 8000; overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.page-modal.open { opacity: 1; pointer-events: all; }
.modal-close { position: fixed; top: 2rem; right: 2rem; z-index: 8100; background: rgba(13,31,21,0.9); border: 1px solid rgba(212,168,67,0.3); color: var(--cream); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; transition: all 0.3s; }
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal-hero { height: 60vh; position: relative; overflow: hidden; }
.modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.modal-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,31,21,0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 4rem; }
.modal-content { padding: 4rem; max-width: 900px; margin: 0 auto; }
.modal-content p { font-size: 1rem; line-height: 1.9; color: rgba(245,239,230,0.75); font-weight: 200; margin-bottom: 1.5rem; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin: 3rem 0; }
.modal-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* QUOTE */
.quote-section { text-align: center; padding: 6rem 4rem; background: linear-gradient(135deg, rgba(26,58,42,0.5) 0%, rgba(26,74,94,0.3) 100%); border-top: 1px solid rgba(212,168,67,0.1); border-bottom: 1px solid rgba(212,168,67,0.1); }
.quote-text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.5rem); font-style: italic; font-weight: 300; max-width: 800px; margin: 0 auto 1.5rem; line-height: 1.4; }
.quote-attr { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.deco-line { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.deco-line::before, .deco-line::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(212,168,67,0.4)); }
.deco-line::before { background: linear-gradient(to left, transparent, rgba(212,168,67,0.4)); }
.deco-line span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

/* FOOTER */
footer { background: #050d09; padding: 5rem 4rem 2rem; border-top: 1px solid rgba(212,168,67,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand .nav-logo { font-size: 2rem; display: block; margin-bottom: 1rem; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: rgba(245,239,230,0.5); line-height: 1.6; margin-bottom: 2rem; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; }
.footer-col a { color: rgba(245,239,230,0.5); text-decoration: none; font-size: 0.85rem; font-weight: 200; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(245,239,230,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.7rem; color: rgba(245,239,230,0.3); letter-spacing: 0.05em; }

/* MUSIC PLAYER */
#music-player { position: fixed; bottom: 2rem; right: 2rem; z-index: 5000; background: rgba(13,31,21,0.95); backdrop-filter: blur(20px); border: 1px solid rgba(212,168,67,0.3); padding: 1rem 1.2rem; min-width: 220px; transition: all 0.4s ease; }
#music-player.minimized { min-width: 50px; padding: 0.7rem; }
.player-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
#music-player.minimized .player-header { margin-bottom: 0; }
.player-label { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; }
.player-track { font-family: 'Cormorant Garamond', serif; font-size: 0.85rem; color: var(--cream); }
.player-toggle-btn { background: none; border: none; color: rgba(245,239,230,0.5); cursor: pointer; font-size: 0.7rem; padding: 0.2rem; transition: color 0.2s; }
.player-toggle-btn:hover { color: var(--gold); }
#music-player.minimized .player-body { display: none; }
.player-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 0.8rem; }
.ctrl-btn { background: none; border: none; color: rgba(245,239,230,0.7); cursor: pointer; font-size: 0.9rem; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.ctrl-btn:hover { color: var(--gold); }
.ctrl-btn.play-pause { width: 40px; height: 40px; border: 1px solid var(--gold); color: var(--gold); font-size: 1rem; }
.player-volume { display: flex; align-items: center; gap: 0.5rem; }
.vol-icon { font-size: 0.7rem; color: rgba(245,239,230,0.5); }
.vol-slider { flex: 1; -webkit-appearance: none; height: 2px; background: rgba(245,239,230,0.2); outline: none; cursor: pointer; }
.vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }
.playing-indicator { display: flex; gap: 3px; align-items: flex-end; height: 16px; }
.bar { width: 3px; background: var(--gold); animation: barAnim 0.8s ease infinite; }
.bar:nth-child(1) { animation-delay: 0s; height: 6px; }
.bar:nth-child(2) { animation-delay: 0.2s; height: 10px; }
.bar:nth-child(3) { animation-delay: 0.4s; height: 14px; }
.bar:nth-child(4) { animation-delay: 0.1s; height: 8px; }
.playing-indicator.paused .bar { animation-play-state: paused; }
