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

:root {
  --bg:        #fffdf9;
  --surface:   #fff8f0;
  --surface-2: #fff3e6;
  --gold:      #c9841a;
  --gold-light:#e8a84c;
  --gold-dim:  rgba(201,132,26,0.1);
  --red:       #c94040;
  --red-dim:   rgba(201,64,64,0.08);
  --text:      #1a1510;
  --text-muted:#7a6a55;
  --border:    rgba(201,132,26,0.2);
  --font-display: 'Poiret One', cursive;
  --font-body:    'Nunito', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(255,253,249,0.97);
  border-bottom-color: var(--border);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(201,132,26,0.08);
}
nav.nav-hidden { transform: translateY(-100%); }

.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 44px; width: auto;
  transition: opacity 0.3s;
  /* White background removed via transparent PNG */
}
.nav-logo-img:hover { opacity: 0.8; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
nav.scrolled .nav-links a {
  color: var(--text);
}
nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
  color: var(--gold);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 300; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.9); transition: all 0.3s; border-radius: 2px; }
nav.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--bg); z-index: 199; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.8rem; color: var(--text); text-decoration: none; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.45) saturate(0.8);
  animation: zoomOut 12s ease forwards;
}
@keyframes zoomOut { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,253,249,0) 50%, rgba(255,253,249,0.95) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 2rem; }
.hero-eyebrow {
  display: block; font-family: var(--font-display);
  font-size: 0.75rem; letter-spacing: 0.4em;
  color: var(--gold-light); text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 1s 0.4s ease forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400; letter-spacing: 0.04em;
  line-height: 1.1; color: #fff;
  margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 1s 0.6s ease forwards;
}
.hero-divider {
  width: 60px; height: 3px;
  background: var(--gold-light);
  border-radius: 3px;
  margin: 0 auto 1.2rem;
  opacity: 0; animation: fadeUp 1s 0.8s ease forwards;
}
.hero-sub {
  font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 1s 1s ease forwards;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.2s ease forwards;
}
.scroll-line {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s 2s ease forwards;
}
.scroll-line span { font-size: 0.55rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.scroll-line::after { content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-display);
  font-size: 0.8rem; letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer; background: none;
}
.btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,132,26,0.25); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-red { border-color: var(--red); color: var(--red); }
.btn-red:hover { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(201,64,64,0.25); }

/* ── SECTIONS ── */
.section { padding: 7rem 4rem; max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--surface); padding: 7rem 0; }
.section-dark .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 4rem; }

.section-label {
  display: block;
  font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.8rem;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; letter-spacing: 0.03em;
  color: var(--text); margin-bottom: 1.2rem; line-height: 1.2;
}
h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--text); margin-bottom: 0.8rem; }
p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.divider { width: 50px; height: 3px; background: var(--gold); border-radius: 3px; margin: 1.2rem 0; }

/* ── PAGE HERO ── */
.page-hero {
  height: 42vh; min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.35) saturate(0.6);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; letter-spacing: 0.06em; color: #fff;
  animation: fadeUp 0.8s ease forwards;
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.about-quote {
  font-family: var(--font-display); font-size: 1.2rem;
  line-height: 1.6; color: var(--text-muted);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem; margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}

/* ── EVENT CARDS ── */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-card {
  border: 2px solid var(--border);
  padding: 1.8rem 2rem;
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: 1.5rem; align-items: center;
  background: var(--bg);
  transition: all 0.3s; position: relative;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(201,132,26,0.06);
}
.event-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(201,132,26,0.15); transform: translateY(-2px); }
.event-card.past { opacity: 0.5; }
.event-img { width: 70px; height: 90px; object-fit: cover; border-radius: 6px; }
.event-date { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.3rem; }
.event-title { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); margin-bottom: 0.2rem; }
.event-venue { font-size: 0.85rem; color: var(--text-muted); }
.past-badge { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); border: 1.5px solid rgba(122,106,85,0.3); padding: 0.3rem 0.8rem; border-radius: 50px; }
.no-events { text-align: center; padding: 4rem; border: 2px dashed var(--border); border-radius: 12px; color: var(--text-muted); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: span 2; }
label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
input, textarea {
  background: var(--surface); border: 2px solid var(--border);
  padding: 0.85rem 1.1rem; color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color 0.25s;
  border-radius: 8px; width: 100%;
}
input:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 130px; }

/* ── LEGAL ── */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 0.8rem; }
.legal-content h3 { font-size: 1rem; margin-top: 2rem; margin-bottom: 0.6rem; }
.legal-content p { font-size: 0.92rem; margin-bottom: 0.8rem; }
.legal-content a { color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--surface); border-top: 2px solid var(--border); padding: 3.5rem 4rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-logo { font-family: var(--font-display); font-size: 0.9rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; text-decoration: none; }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 1.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* ── LOGO IN NAV ── */
.nav-logo-img { height: 44px; width: auto; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 5rem 1.5rem; }
  .section-dark .section-inner { padding: 0 1.5rem; }
  footer { padding: 2.5rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .event-card { grid-template-columns: 60px 1fr; }
  .event-card > .btn { grid-column: span 2; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .event-card { grid-template-columns: 1fr; }
  .event-img { width: 100%; height: 160px; }
}
