@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+SC:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #0a0e17;
  --bg-card: #111827;
  --bg-card-hover: #1a2332;
  --bg-subtle: rgba(255,255,255,0.03);
  --gold: #c4985a;
  --gold-light: #d4ad6e;
  --gold-dark: #a67c3d;
  --gold-bg: rgba(196, 152, 90, 0.08);
  --gold-border: rgba(196, 152, 90, 0.15);
  --text-primary: #f0ece6;
  --text-secondary: #a0b0c0;
  --text-muted: #6b7b8b;
  --border: rgba(255,255,255,0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --max-w: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.85; }

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

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.nav-logo .dot { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); opacity: 1; }

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196, 152, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(60, 100, 180, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px 40px 80px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 30px;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  max-width: 800px;
}

.hero h1 .gold { color: var(--gold); }

.hero-desc {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 650px;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 152, 90, 0.2);
  opacity: 1;
}

/* ─── SECTIONS ─── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 40px;
}

.section-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ─── ABOUT / STATS ─── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: border-color 0.3s, transform 0.2s;
}

.about-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.about-icon { font-size: 36px; margin-bottom: 16px; }

.about-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── EVENT CARDS ─── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.2s;
}

.event-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}

.event-card-body { padding: 32px 28px; }

.event-date {
  display: inline-block;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.event-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.event-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.event-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.event-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: transform 0.2s;
}

.event-btn:hover { transform: translateY(-2px); opacity: 1; }

.event-btn-outline {
  display: inline-block;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.event-btn-outline:hover { background: var(--gold-bg); opacity: 1; }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
}

.gallery-placeholder .icon { font-size: 32px; margin-bottom: 8px; }

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px 16px 14px;
}

.gallery-overlay span {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

/* ─── PAST EVENTS ─── */
.past-event-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: border-color 0.3s, transform 0.2s;
  text-decoration: none;
  cursor: pointer;
}

.past-event-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  opacity: 1;
}

.past-event-date-badge {
  display: inline-block;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.past-event-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.past-event-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.past-event-arrow {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}

/* ─── EVENT PAGE ─── */
.event-hero {
  padding: 120px 40px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.event-page-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.event-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 48px;
}

.event-content h2:first-child { margin-top: 0; }

.event-content p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.event-content ul {
  list-style: none;
  margin-bottom: 16px;
}

.event-content ul li {
  font-size: 17px;
  color: var(--text-secondary);
  padding: 6px 0;
  line-height: 1.6;
}

.event-content ul li::before {
  content: '→ ';
  color: var(--gold);
}

/* Sidebar form */
.sidebar-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 90px;
}

.sidebar-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.sidebar-form .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.sidebar-form .price-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.form-field label .req { color: #e07a5f; }

.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field select option { background: var(--bg-card); }
.form-field textarea { resize: vertical; min-height: 70px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  margin-top: 8px;
  transition: transform 0.2s;
}

.form-submit:hover { transform: translateY(-2px); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Agenda timeline */
.timeline-phase {
  display: inline-block;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin: 24px 0 12px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-time {
  min-width: 120px;
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.timeline-icon { min-width: 28px; font-size: 18px; }

.timeline-desc {
  font-size: 16px;
  color: var(--text-primary);
}

.timeline-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer p {
  font-size: 14px;
  color: var(--text-muted);
}

.footer .nav-logo {
  margin-bottom: 12px;
  font-size: 20px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }
  .hero h1 { font-size: 40px; }
  .hero-inner, .section, .event-hero { padding-left: 20px; padding-right: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .event-page-grid { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .sidebar-form { position: static; }
  .section-title { font-size: 30px; }
  .event-meta { flex-wrap: wrap; gap: 10px; }
}
