/* ═══════════════════════════════════════════════════
   VIBE WITH SAMMI — Global Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────── */
:root {
  --navy:      #07111F;
  --blue:      #12385C;
  --gold:      #C8960C;
  --gold-lt:   #DFaa20;
  --gold-dim:  rgba(200,150,12,0.15);
  --cream:     #FFF7ED;
  --slate:     #AFC2D5;
  --muted:     #7A96B0;
  --card-bg:   #0D1E30;
  --radius:    12px;
  --radius-lg: 20px;
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Utility ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--gold); }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

section { padding: 100px 0; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,150,12,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,247,237,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 11px 26px;
  font-size: 13px;
}
.btn-ghost:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════
   NAV — hide on scroll down, reveal on scroll up
   ════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 0;
  background: rgba(7,17,31,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(175,194,213,0.08);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              background 0.2s ease;
}

nav.nav-hidden { transform: translateY(-100%); }
nav.nav-visible { transform: translateY(0); }
nav.nav-top { background: transparent; border-bottom-color: transparent; }

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,247,237,0.65);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--blue);
  background-image: url('assets/IMG_0169edit_small.jpg');
  background-size: cover;
  background-position: center center;
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(7,17,31,0.45) 0%,
    rgba(7,17,31,0.62) 45%,
    rgba(7,17,31,0.82) 75%,
    rgba(7,17,31,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 920px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 9vw, 110px);
  letter-spacing: 0.06em;
  line-height: 0.92;
  color: var(--cream);
  white-space: nowrap;
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: var(--slate);
  letter-spacing: 0.07em;
  margin-bottom: 32px;
}

.hero-line {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(175,194,213,0.45);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(175,194,213,0.45), transparent);
}

/* ════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════ */
#about { border-top: 1px solid rgba(175,194,213,0.07); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-photo-frame {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(175,194,213,0.1);
  position: relative;
}

.about-photo-frame .placeholder-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #12385C 0%, #0D1E30 60%, #07111F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.placeholder-img svg { opacity: 0.3; }

.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 6.5vw, 78px);
  letter-spacing: 0.03em;
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 8px;
}
.about-text h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.85em;
  letter-spacing: 0.02em;
}

.about-divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0;
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--slate);
  max-width: 440px;
}

/* ════════════════════════════════════════════════════
   PATHS
   ════════════════════════════════════════════════════ */
#paths {
  background: var(--card-bg);
  border-top: 1px solid rgba(175,194,213,0.07);
  border-bottom: 1px solid rgba(175,194,213,0.07);
}

#paths .section-header {
  text-align: center;
  margin-bottom: 52px;
}

#paths h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 66px);
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 0.95;
  margin-bottom: 12px;
}

#paths .section-sub {
  font-size: 15px;
  color: var(--muted);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.path-card {
  background: var(--navy);
  border: 1px solid rgba(175,194,213,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.path-card:hover { border-color: rgba(200,150,12,0.4); transform: translateY(-4px); }
.path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.path-card:hover::before { opacity: 1; }

.path-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 60px;
  line-height: 1;
  color: rgba(175,194,213,0.07);
  position: absolute;
  top: 16px; right: 22px;
}

.path-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.path-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.path-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}

/* ════════════════════════════════════════════════════
   SECTION HEADING SHARED
   ════════════════════════════════════════════════════ */
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 70px);
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 0.93;
  margin-bottom: 12px;
}

.section-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}

/* ════════════════════════════════════════════════════
   GALLERY GRID (Photography page featured section)
   ════════════════════════════════════════════════════ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  align-items: start;
}

/* Each item is a self-contained aspect-ratio box — no min-height hacks */
.featured-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(175,194,213,0.07);
}

/* Desktop: column spans + per-item aspect ratios */
.featured-item:nth-child(1) { grid-column: 1 / 7;   aspect-ratio: 4/3; }
.featured-item:nth-child(2) { grid-column: 7 / 10;  aspect-ratio: 2/3; grid-row: 1 / 3; }
.featured-item:nth-child(3) { grid-column: 10 / 13; aspect-ratio: 3/2; }
.featured-item:nth-child(4) { grid-column: 10 / 13; aspect-ratio: 3/2; }
.featured-item:nth-child(5) { grid-column: 1 / 5;   aspect-ratio: 4/3; }
.featured-item:nth-child(6) { grid-column: 5 / 9;   aspect-ratio: 4/3; }
.featured-item:nth-child(7) { grid-column: 9 / 13;  aspect-ratio: 4/3; }

/* Image fills the box without being clipped */
.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.featured-item:hover img { transform: scale(1.03); }

/* Placeholder shown before real images are added */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background: linear-gradient(160deg, #0D1E30 0%, #12385C 50%, #07111F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(175,194,213,0.22);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.gallery-placeholder svg { opacity: 0.22; }

/* ════════════════════════════════════════════════════
   EVENTS (Photography page)
   ════════════════════════════════════════════════════ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.event-card {
  background: var(--navy);
  border: 1px solid rgba(175,194,213,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.event-card:hover { border-color: rgba(200,150,12,0.35); transform: translateY(-4px); }

.event-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0D1E30, #12385C, #07111F);
  position: relative;
  overflow: hidden;
}
.event-thumb .placeholder-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: rgba(175,194,213,0.22);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
}
.event-thumb img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }

.event-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-meta { display: flex; align-items: center; gap: 12px; }

.event-type {
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 12px; border-radius: 100px;
}

.event-date { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

.event-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; letter-spacing: 0.04em; color: var(--cream); line-height: 1;
}

.event-body p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }

.event-card.coming-soon {
  border-style: dashed;
  border-color: rgba(175,194,213,0.12);
  opacity: 0.6;
}

/* ════════════════════════════════════════════════════
   PAGE HERO (interior pages)
   ════════════════════════════════════════════════════ */
.page-hero {
  padding: 156px 0 76px;
  border-bottom: 1px solid rgba(175,194,213,0.07);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: -80px;
  width: 560px; height: 100%;
  background: radial-gradient(ellipse 60% 70% at 80% 40%, rgba(18,56,92,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(76px, 12vw, 130px);
  letter-spacing: 0.03em;
  line-height: 0.88;
  color: var(--cream);
  margin-bottom: 24px;
}

.page-hero h1 span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.48em;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.page-hero p {
  font-size: 16px;
  color: var(--slate);
  max-width: 440px;
  line-height: 1.8;
}

.page-hero-line {
  width: 44px; height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════════════
   VIDEO SECTION (Content page)
   ════════════════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  background: var(--card-bg);
  border: 1px solid rgba(175,194,213,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.video-card:hover { border-color: rgba(200,150,12,0.35); transform: translateY(-3px); }

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0D1E30, #07111F);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: rgba(175,194,213,0.3);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.video-placeholder svg { opacity: 0.3; }

.video-label {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.05em;
}

/* IG CTA block */
.ig-cta {
  text-align: center;
  padding: 56px 24px;
  border: 1px solid rgba(175,194,213,0.1);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  margin-bottom: 64px;
}

.ig-cta p.section-label { margin-bottom: 12px; }

.ig-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 0.95;
}

.ig-cta .sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 380px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */
footer {
  background: #04090F;
  border-top: 1px solid rgba(175,194,213,0.07);
  padding: 64px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.05em;
  color: var(--cream);
  margin-bottom: 4px;
}
.footer-brand h3 span { color: var(--gold); }

.footer-brand > p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(175,194,213,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(175,194,213,0.32); letter-spacing: 0.05em; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  section { padding: 72px 0; }

  .nav-links { display: none; }

  /* About: stack, image first */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo-frame { aspect-ratio: 4/3; }

  /* Paths */
  .paths-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Featured grid: 2-col on tablet, aspect-ratio drives height */
  .featured-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .featured-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 3/2; }
  .featured-item:nth-child(2) { grid-column: auto;  grid-row: auto; aspect-ratio: 4/3; }
  .featured-item:nth-child(3) { grid-column: auto;  grid-row: auto; aspect-ratio: 4/3; }
  .featured-item:nth-child(4) { grid-column: auto;  grid-row: auto; aspect-ratio: 4/3; }
  .featured-item:nth-child(5) { grid-column: auto;  grid-row: auto; aspect-ratio: 4/3; }
  .featured-item:nth-child(6) { grid-column: auto;  grid-row: auto; aspect-ratio: 4/3; }
  .featured-item:nth-child(7) { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 3/2; }

  /* Events */
  .events-grid { grid-template-columns: 1fr; }

  /* Videos */
  .video-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .section-intro { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 120px 0 56px; }
}

@media (max-width: 600px) {
  .hero-name { white-space: normal; font-size: clamp(52px, 14vw, 80px); }

  .featured-grid { grid-template-columns: 1fr; }
  /* Reset all column/row overrides so every item is full-width */
  .featured-item:nth-child(1),
  .featured-item:nth-child(2),
  .featured-item:nth-child(3),
  .featured-item:nth-child(4),
  .featured-item:nth-child(5),
  .featured-item:nth-child(6),
  .featured-item:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
    /* let each image's natural ratio show — or force landscape for consistency */
    aspect-ratio: 4/3;
  }

  .paths-grid { gap: 10px; }
  .path-card { padding: 28px 22px; }

  .event-body { padding: 20px; }

  .video-grid { gap: 14px; }
}