/* ============================================
   MAYVELLE PHOTO BOOTHS — Global Stylesheet
   ============================================ */

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

/* ── Tokens ── */
:root {
  --cream:      #f7f1e6;
  --cream-soft: #efe3cc;
  --cream-mid:  #e0cf9f;
  --black:      #0e0b07;
  --black-soft: #181208;
  --black-mid:  #241a0c;
  --gold:       #b8893f;
  --gold-light: #d4ab5f;
  --gold-vivid: #c9852e;  /* saturated gold for buttons, key numbers, punch moments */
  --gold-dim:   #8a6e30;
  --gold-ink:   #6c4e1e;  /* deeper gold, AA-readable as small text on cream */
  --wine:       #7a2436;  /* second accent — deep burgundy for contrast against gold */
  --wine-light: #9c3a4d;
  --white:      #2a2419;
  --white-dim:  #5c5240;
  --radius:     2px;
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: block;
  margin-bottom: 0.75rem;
}

.gold { color: var(--gold-ink); }
.wine { color: var(--wine); }
.italic { font-style: italic; }

/* ── Gold Divider ── */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.divider.left { margin-left: 0; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(22, 19, 13, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 137, 63, 0.25);
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mid);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold-vivid);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #16130d;
  border-bottom: 1px solid rgba(184,137,63,0.25);
  z-index: 999;
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mid);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-cta {
  color: var(--black) !important;
  background: var(--gold-vivid);
  padding: 0.75rem 1.5rem;
  text-align: center;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold-vivid);
  color: var(--black);
  box-shadow: 0 4px 14px rgba(201,133,46,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201,133,46,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--gold-ink);
  border: 1.5px solid var(--gold-vivid);
}
.btn-outline:hover {
  background: var(--gold-vivid);
  color: var(--black);
  transform: translateY(-1px);
}

/* ── Section Base ── */
section { padding: 6rem 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header p {
  color: var(--white-dim);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
}

/* ── Footer ── */
footer {
  background: #16130d;
  border-top: 1px solid rgba(184,137,63,0.25);
  padding: 4rem 0 2rem;
}

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

.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p {
  color: var(--cream-mid);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  color: var(--cream-mid);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-col p {
  color: var(--cream-mid);
  font-size: 0.88rem;
  line-height: 1.9;
}

.footer-bottom {
  border-top: 1px solid rgba(184,137,63,0.18);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--cream-mid);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}
.social-links a {
  color: var(--cream-mid);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
  transition: color var(--transition);
}
.social-links a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 4rem 0; }
  .container { padding: 0 1.5rem; }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(184,137,63,0.2);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(184,137,63,0.1) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s;  opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.6s;  opacity: 0; }

/* ── Dark accent bands (CTA sections + hero) need the lighter gold,
   since --gold-ink is tuned for cream backgrounds and fails
   contrast against dark surfaces ── */
.cta-banner .eyebrow, .cta-banner .gold,
.about-cta .eyebrow,  .about-cta .gold,
.cta-strip .eyebrow,  .cta-strip .gold,
.hero-text .eyebrow,  .hero-text .gold {
  color: var(--gold-light);
}

.hero-text .btn-outline {
  color: var(--gold-light);
}
