@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3d;
  --green-light: #4a8c5c;
  --green-pale: #8fbf8f;
  --gold: #c8a951;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --off-white: #faf8f4;
  --text-dark: #1a2418;
  --text-mid: #3d5440;
  --text-light: #6b8a70;
  --shadow: rgba(26,58,42,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  border-bottom: 1px solid rgba(200,169,81,0.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand .brand-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand .brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-brand .brand-sub {
  font-size: 0.68rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  transition: all 0.2s;
  font-weight: 400;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: rgba(200,169,81,0.18);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--green-dark) 0%, #0f2218 50%, #1a3a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(74,140,92,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(200,169,81,0.08) 0%, transparent 60%);
}

.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.leaf {
  position: absolute;
  opacity: 0.06;
  font-size: 6rem;
  animation: sway 8s ease-in-out infinite alternate;
}

.leaf:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; font-size: 8rem; }
.leaf:nth-child(2) { top: 20%; right: 8%; animation-delay: -3s; font-size: 5rem; }
.leaf:nth-child(3) { bottom: 20%; left: 10%; animation-delay: -5s; font-size: 7rem; }
.leaf:nth-child(4) { bottom: 30%; right: 5%; animation-delay: -2s; font-size: 9rem; }
.leaf:nth-child(5) { top: 50%; left: 2%; animation-delay: -6s; font-size: 4rem; }

@keyframes sway {
  from { transform: rotate(-8deg) scale(1); }
  to { transform: rotate(8deg) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,169,81,0.18);
  border: 1px solid rgba(200,169,81,0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-location {
  color: var(--green-pale);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-desc {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.55s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,81,0.3);
}

.btn-outline {
  border: 1.5px solid rgba(245,240,232,0.3);
  color: var(--cream);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245,240,232,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeUp 1s 1s ease both;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,169,81,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--cream);
  padding: 4rem 2rem;
  border-top: 1px solid rgba(74,140,92,0.1);
  border-bottom: 1px solid rgba(74,140,92,0.1);
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.about-text p strong {
  color: var(--green-dark);
  font-weight: 500;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.fact-card {
  background: white;
  border: 1px solid rgba(74,140,92,0.12);
  border-radius: 8px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.fact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--green-light);
}

.fact-card .fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--green-mid);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.fact-card .fact-label {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ===== FEATURES GRID ===== */
.features-section {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  border: 1px solid rgba(74,140,92,0.12);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--gold));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.feature-card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-4px);
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

/* ===== PRODUCE SECTION ===== */
.produce-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.produce-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(74,140,92,0.15) 0%, transparent 70%);
}

.produce-section .section-label { color: var(--gold-light); }
.produce-section .section-title { color: var(--cream); }
.produce-section .section-subtitle { color: rgba(245,240,232,0.6); }

.produce-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.produce-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s;
}

.produce-item:hover {
  background: rgba(200,169,81,0.12);
  border-color: rgba(200,169,81,0.3);
  transform: translateY(-3px);
}

.produce-item .produce-emoji { font-size: 2.2rem; display: block; margin-bottom: 0.6rem; }
.produce-item .produce-name { color: var(--cream); font-size: 0.85rem; font-weight: 400; }

/* ===== TOURISM ===== */
.tourism-section {
  background: var(--cream);
}

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

.tourism-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(74,140,92,0.1);
  transition: all 0.3s;
}

.tourism-card:hover {
  box-shadow: 0 12px 40px var(--shadow);
  transform: translateY(-4px);
}

.tourism-card-header {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tourism-card-header .t-icon {
  font-size: 2.5rem;
}

.tourism-card-header h3 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.2rem;
}

.tourism-card-header p {
  color: var(--green-pale);
  font-size: 0.8rem;
}

.tourism-card-body {
  padding: 1.5rem 2rem;
}

.tourism-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tourism-card-body ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
  font-weight: 300;
}

.tourism-card-body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-size: 0.75rem;
  top: 0.1em;
}

/* ===== CONTACT / VISIT ===== */
.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item .c-icon {
  width: 42px;
  height: 42px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(74,140,92,0.12);
}

.contact-item .c-label {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-item .c-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 400;
}

.contact-item a {
  color: var(--green-mid);
  text-decoration: none;
}

.timing-box {
  background: var(--green-dark);
  border-radius: 10px;
  padding: 2rem;
  color: var(--cream);
}

.timing-box h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.timing-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.87rem;
}

.timing-row:last-child { border-bottom: none; }
.timing-row .t-label { color: rgba(245,240,232,0.6); font-weight: 300; }
.timing-row .t-time { color: var(--cream); font-weight: 400; }

/* ===== FOOTER ===== */
footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(200,169,81,0.15);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(245,240,232,0.5);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-col h5 {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
}

/* ===== MANGO GALLERY ===== */
.mango-section {
  background: var(--off-white);
}

.mango-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.mango-tag {
  background: white;
  border: 1px solid rgba(74,140,92,0.12);
  border-radius: 6px;
  padding: 0.7rem 0.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mid);
  transition: all 0.2s;
  font-weight: 300;
}

.mango-tag:hover {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
  transform: scale(1.03);
}

/* ===== ANNOUNCEMENT BANNER ===== */
.banner {
  background: linear-gradient(90deg, var(--green-mid), var(--green-dark));
  padding: 0.85rem 2rem;
  text-align: center;
  position: relative;
  z-index: 99;
  top: 68px;
}

.banner p {
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.banner span {
  color: var(--gold-light);
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .produce-grid { grid-template-columns: repeat(2, 1fr); }
  .tourism-grid { grid-template-columns: 1fr; }
  .mango-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 2rem; }
}

@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--green-dark); padding: 1rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .mango-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .produce-grid { grid-template-columns: repeat(2, 1fr); }
}
