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

:root {
  --gold: #f59e0b;
  --dark: #0a0a0a;
  --dark2: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* Nav */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); text-decoration: none; font-weight: 700; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.btn-nav { background: var(--gold) !important; color: var(--dark) !important; padding: 0.4rem 1rem; border-radius: 2rem; font-weight: 600 !important; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 8rem 2rem 4rem; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(99,102,241,0.1) 0%, transparent 50%),
              var(--dark);
}
.hero-content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero-tag { display: inline-block; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: var(--gold); padding: 0.4rem 1rem; border-radius: 2rem; font-size: 0.85rem; margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.accent { color: var(--gold); }
.hero p { font-size: 1.1rem; color: var(--muted); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--dark); padding: 0.85rem 2rem; border-radius: 3rem; font-weight: 700; text-decoration: none; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,0.4); }
.btn-primary.btn-lg { font-size: 1.1rem; padding: 1rem 2.5rem; }
.btn-ghost { color: var(--text); border: 1px solid rgba(255,255,255,0.15); padding: 0.85rem 2rem; border-radius: 3rem; text-decoration: none; font-size: 0.95rem; transition: border-color 0.2s, color 0.2s; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--muted); font-size: 0.75rem; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--muted), transparent); animation: scroll-pulse 2s infinite; }
@keyframes scroll-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Stats */
.stats { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-grid { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); padding: 3rem 2rem; gap: 1rem; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag { display: inline-block; color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.5rem; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); }

/* About */
.about { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-img-frame { position: relative; }
.about-img { width: 100%; height: 400px; border-radius: 2rem; }
.about-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--dark2); border: 1px solid rgba(255,255,255,0.1); padding: 0.75rem 1.25rem; border-radius: 1rem; font-size: 0.85rem; white-space: nowrap; }
.about-text h2 { margin: 0.5rem 0 1.5rem; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.tag { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2); color: var(--gold); padding: 0.3rem 0.75rem; border-radius: 2rem; font-size: 0.8rem; }

/* Destinations */
.destinations { padding: 6rem 0; background: var(--dark2); }
.dest-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 1.5rem; }
.dest-card { border-radius: 1.5rem; overflow: hidden; position: relative; min-height: 200px; cursor: pointer; transition: transform 0.3s; }
.dest-card:hover { transform: translateY(-4px); }
.dest-card.featured { grid-row: span 2; min-height: 420px; }
.dest-bg { position: absolute; inset: 0; opacity: 0.7; transition: opacity 0.3s; }
.dest-card:hover .dest-bg { opacity: 0.9; }
.dest-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.dest-region { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }
.dest-content h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin: 0.25rem 0; }
.dest-content p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.5; margin-bottom: 0.5rem; }
.dest-time { font-size: 0.75rem; color: var(--gold); }

/* Gallery */
.gallery { padding: 6rem 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 200px 200px; gap: 1rem; }
.gallery-item { border-radius: 1rem; display: flex; align-items: flex-end; padding: 1rem; font-size: 0.8rem; cursor: pointer; transition: transform 0.3s; overflow: hidden; }
.gallery-item:hover { transform: scale(1.03); }
.gallery-item.g1 { grid-column: span 2; }
.gallery-item.g4 { grid-column: span 2; }
.gallery-item span { background: rgba(0,0,0,0.5); padding: 0.3rem 0.6rem; border-radius: 0.4rem; }

/* Contact */
.contact { padding: 6rem 0; background: var(--dark2); }
.contact-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-inner h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1rem; }
.contact-inner p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }

/* Footer */
.footer { text-align: center; padding: 2rem; color: var(--muted); font-size: 0.85rem; border-top: 1px solid rgba(255,255,255,0.05); }

@media (max-width: 768px) {
  .about-grid, .dest-grid { grid-template-columns: 1fr; }
  .dest-card.featured { grid-row: span 1; min-height: 200px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.g1, .gallery-item.g4 { grid-column: span 1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}