/* ═══════════════════════════════════════════════════════════
   MERT & ELİF — PREMIUM DÜĞÜN DAVETİYESİ  v2.0
   style.css
═══════════════════════════════════════════════════════════ */

/* ─── RESET & ROOT ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #C9A96E;
  --gold-lt:    #E8D5A3;
  --gold-dk:    #9A6F38;
  --gold-glow:  rgba(201,169,110,.35);
  --cream:      #FAF7F2;
  --champagne:  #F5EDD6;
  --ivory:      #FFFDF8;
  --dark:       #181210;
  --dark-2:     #251C14;
  --muted:      #8A7357;
  --white:      #FFFFFF;

  --serif:   'Cormorant Garamond', Georgia, serif;
  --script:  'Great Vibes', cursive;
  --display: 'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;

  --ease:    cubic-bezier(.4,0,.2,1);
  --spring:  cubic-bezier(.34,1.56,.64,1);
  --t:       .4s;
  --r:       18px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 3px; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ─── SCROLL PROGRESS BAR ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  z-index: 99999;
  width: 0%;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ─── INTRO SPLASH SCREEN ────────────────────────────────── */
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}
.intro-splash.leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero_bg.webp');
  background-size: cover;
  background-position: center 30%;
  animation: introZoom 20s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes introZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(12,7,4,.55)  0%,
    rgba(10,6,3,.80) 50%,
    rgba(8,4,2,.92)  100%
  );
}
.intro-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: introFadeUp 1s var(--ease) both;
}
@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.intro-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.intro-line {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.7));
}
.intro-ornament .intro-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(201,169,110,.7));
}
.intro-diamond {
  font-size: .45rem;
  color: var(--gold);
  letter-spacing: .3em;
}
.intro-eyebrow {
  font-size: .68rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: .8;
  margin-bottom: 22px;
  animation: introFadeUp 1s var(--ease) .15s both;
}
.intro-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 44px);
  margin-bottom: 18px;
  flex-wrap: wrap;
  animation: introFadeUp 1s var(--ease) .3s both;
}
.intro-name {
  font-family: var(--script);
  font-size: clamp(4rem, 14vw, 9rem);
  color: var(--white);
  text-shadow: 0 4px 60px rgba(0,0,0,.5);
  line-height: 1;
}
.intro-amp {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 5vw, 3.5rem);
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.intro-date {
  font-size: .72rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(201,169,110,.75);
  margin-bottom: 28px;
  animation: introFadeUp 1s var(--ease) .45s both;
}
.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
  animation: introFadeUp 1s var(--ease) .55s both;
}
.intro-divider span:first-child,
.intro-divider span:last-child {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.45));
}
.intro-divider span:last-child {
  background: linear-gradient(270deg, transparent, rgba(201,169,110,.45));
}
.intro-divider-gem {
  font-size: .55rem;
  color: var(--gold);
  opacity: .7;
  animation: introGemPulse 2.4s ease-in-out infinite;
}
@keyframes introGemPulse {
  0%,100% { opacity: .7; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.3); }
}
.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 48px;
  border: 1px solid rgba(201,169,110,.55);
  border-radius: 100px;
  background: rgba(201,169,110,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  animation: introFadeUp 1s var(--ease) .7s both;
  box-shadow: 0 0 40px rgba(201,169,110,.15), 0 8px 30px rgba(0,0,0,.3);
}
.intro-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: translateX(-100%);
  transition: transform .7s ease;
}
.intro-btn:hover::before { transform: translateX(100%); }
.intro-btn:hover {
  background: rgba(201,169,110,.25);
  border-color: var(--gold-lt);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 60px rgba(201,169,110,.3), 0 16px 40px rgba(0,0,0,.35);
}
.intro-btn:active { transform: scale(.97); }
.intro-btn-text { font-weight: 500; }
.intro-btn-icon {
  display: flex;
  animation: introBtnBounce 2s ease-in-out infinite;
}
@keyframes introBtnBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(5px); }
}
.intro-hint {
  margin-top: 22px;
  font-size: .63rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.3);
  animation: introFadeUp 1s var(--ease) .85s both;
}

/* ─── LOADER (kept for possible re-use) ──────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: visibility 0.8s var(--ease);
  overflow: hidden;
}
.loader-curtain {
  position: absolute;
  top: 0; bottom: 0; width: 50%;
  background: var(--dark);
  transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
  z-index: 1;
}
.loader-curtain-left  { left: 0;  border-right: 1px solid rgba(201,169,110,.12); }
.loader-curtain-right { right: 0; border-left:  1px solid rgba(201,169,110,.12); }
.loader.hidden { visibility: hidden; }
.loader.hidden .loader-curtain-left  { transform: translateX(-100%); }
.loader.hidden .loader-curtain-right { transform: translateX(100%); }
.loader-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.loader.hidden .loader-inner { opacity: 0; transform: scale(.9); }
.loader-ring {
  width: 80px; height: 80px;
  border: 1.5px solid rgba(201,169,110,.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-names {
  position: absolute;
  font-family: var(--script);
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  color: var(--gold-lt);
  letter-spacing: .12em;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(201,169,110,.4);
}
.loader-names span { color: var(--gold); }


/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), padding var(--t);
}
.navbar.scrolled {
  background: rgba(24,18,16,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,169,110,.15);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--gold-lt);
  letter-spacing: .05em;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.nav-logo:hover {
  transform: scale(1.05);
}
.nav-links-container {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.nav-links a {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color var(--t);
  padding: 6px 0;
}
.nav-active-line {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-lt), var(--gold));
  border-radius: 2px;
  transition: all 0.38s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 6px var(--gold-glow);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-lt); }

/* ─── MUSIC BUTTON ──────────────────────────────────────── */
.music-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.4);
  background: rgba(24,18,16,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold-lt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.music-btn:hover { transform: scale(1.1); border-color: var(--gold); background: rgba(201,169,110,.15); }
.music-icon { display: flex; }
.music-waves { display: none; align-items: center; gap: 3px; height: 18px; }
.music-waves span {
  display: block; width: 3px;
  background: var(--gold); border-radius: 2px;
  animation: bars 1.1s ease-in-out infinite;
}
.music-waves span:nth-child(1) { height: 7px;  animation-delay: 0s; }
.music-waves span:nth-child(2) { height: 14px; animation-delay: .15s; }
.music-waves span:nth-child(3) { height: 10px; animation-delay: .3s; }
.music-waves span:nth-child(4) { height: 16px; animation-delay: .45s; }
@keyframes bars {
  0%,100% { transform: scaleY(1); }
  50% { transform: scaleY(.35); }
}
.music-btn.playing .music-icon { display: none; }
.music-btn.playing .music-waves { display: flex; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(18,12,8,.2)   0%,
    rgba(18,12,8,.55)  45%,
    rgba(18,12,8,.85) 100%
  );
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,169,110,.55);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 1; }
  90%  { opacity: .2; }
  100% { opacity: 0; transform: translateY(-95vh) scale(1.5); }
}

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

/* Top ornament */
.hero-top-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.ornament-line { display: block; width: 60px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,169,110,.7)); }
.hero-top-ornament .ornament-line:last-child { background: linear-gradient(270deg, transparent, rgba(201,169,110,.7)); }
.ornament-diamond { font-size: .5rem; color: var(--gold); letter-spacing: .3em; }

.hero-eyebrow {
  font-size: .7rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: .8;
  margin-bottom: 24px;
}

.hero-names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  line-height: 1;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.hero-name-left,
.hero-name-right {
  font-family: var(--script);
  font-size: clamp(4.5rem, 13vw, 9rem);
  color: var(--white);
  text-shadow: 0 4px 60px rgba(0,0,0,.5);
  display: block;
}
.hero-ampersand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero-ampersand {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}
.hero-amp-top, .hero-amp-bot {
  font-size: .45rem;
  color: rgba(201,169,110,.6);
  letter-spacing: .3em;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.8vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  margin-bottom: 24px;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
}
.hero-divider span:first-child,
.hero-divider span:last-child {
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.6));
}
.hero-divider span:last-child { background: linear-gradient(270deg, transparent, rgba(201,169,110,.6)); }
.hero-divider-date {
  font-size: .72rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  padding: 14px 10px 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: border-color .3s;
}
.countdown-item:hover { border-color: rgba(201,169,110,.5); }
.countdown-number {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
  transition: transform .3s var(--spring);
}
.countdown-number.flip { transform: scale(.85); }
.countdown-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 7px;
}
.countdown-sep {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .6;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  border: 1px solid rgba(201,169,110,.5);
  border-radius: 100px;
  color: var(--white);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  transition: all var(--t) var(--ease);
}
.hero-cta:hover {
  background: rgba(201,169,110,.2);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(201,169,110,.25);
}
.hero-cta svg { animation: bounceY 2.2s ease-in-out infinite; }
@keyframes bounceY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* Scroll mouse indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(201,169,110,.5);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  animation: revUp .95s var(--ease) forwards;
}
@keyframes revUp { to { opacity:1; transform:translateY(0); } }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .38s; }
.delay-4 { animation-delay: .52s; }
.delay-5 { animation-delay: .66s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(0.25, 1, 0.5, 1), transform .8s cubic-bezier(0.25, 1, 0.5, 1), filter .8s cubic-bezier(0.25, 1, 0.5, 1);
}
.scroll-reveal.in { opacity: 1; transform: translateY(0); }
.scroll-reveal.delay-1 { transition-delay: .12s; }
.scroll-reveal.delay-2 { transition-delay: .24s; }
.scroll-reveal.delay-3 { transition-delay: .36s; }
.scroll-reveal.delay-4 { transition-delay: .48s; }

/* Visual Feast Scrolling Revelations */
.reveal-blur-in {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(30px);
  transition: opacity 0.95s cubic-bezier(0.25, 1, 0.5, 1), filter 0.95s cubic-bezier(0.25, 1, 0.5, 1), transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-blur-in.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.reveal-rotate-up {
  opacity: 0;
  transform: rotateX(-15deg) translateY(50px);
  transform-origin: top center;
  transition: opacity 0.95s cubic-bezier(0.25, 1, 0.5, 1), transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-rotate-up.in {
  opacity: 1;
  transform: rotateX(0) translateY(0);
}

.reveal-scale-up {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.95s cubic-bezier(0.25, 1, 0.5, 1), transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-scale-up.in {
  opacity: 1;
  transform: scale(1);
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.95s cubic-bezier(0.25, 1, 0.5, 1), transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-slide-left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.95s cubic-bezier(0.25, 1, 0.5, 1), transform 0.95s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-slide-right.in {
  opacity: 1;
  transform: translateX(0);
}

/* ─── SECTION COMMON ────────────────────────────────────── */
.section { padding: 110px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 5px 16px;
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 100px;
  background: rgba(201,169,110,.06);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--dark);
  letter-spacing: .04em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-sub {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── WELCOME ────────────────────────────────────────────── */
.welcome {
  background: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.welcome-petals {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  padding-top: 20px;
  font-size: 1.2rem;
  color: rgba(201,169,110,.25);
  pointer-events: none;
  animation: petalsFloat 8s ease-in-out infinite alternate;
}
@keyframes petalsFloat { 0%{transform:translateY(0)} 100%{transform:translateY(10px)} }
.welcome-inner { max-width: 640px; margin: 0 auto; }
.welcome-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}
.orn-line { display: block; width: 50px; height: 1px; background: linear-gradient(90deg,transparent,var(--gold)); }
.orn-line:last-child { background: linear-gradient(270deg,transparent,var(--gold)); }
.orn-icon { font-size: .8rem; color: var(--gold); }
.welcome-ornament .orn-line:last-child { background: linear-gradient(270deg,transparent,var(--gold)); }
.welcome-text {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 36px;
}
.welcome-sig-wrap { margin-bottom: 18px; }
.welcome-signature {
  font-family: var(--script);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  color: var(--gold-dk);
  line-height: 1;
}
.welcome-hearts {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--gold);
  opacity: .5;
  animation: heartsPulse 3s ease-in-out infinite;
}
@keyframes heartsPulse { 0%,100%{opacity:.5} 50%{opacity:.85} }
.br-desktop { display: none; }
@media (min-width: 768px) { .br-desktop { display: block; } }

/* ─── RUM SURESİ — AYET SECTION ─────────────────────────── */
.ayet-section {
  background: linear-gradient(135deg, #0e0906 0%, #16100a 50%, #100c07 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.ayet-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,169,110,.07) 0%, transparent 70%);
  pointer-events: none;
}
.ayet-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.ayet-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
.ayet-line {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.6));
}
.ayet-ornament .ayet-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(201,169,110,.6));
}
.ayet-gem {
  font-size: .5rem;
  color: var(--gold);
  opacity: .8;
  animation: introGemPulse 2.8s ease-in-out infinite;
}
.ayet-text {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, .85);
  line-height: 1.9;
  letter-spacing: .02em;
  margin: 0 0 24px 0;
  padding: 0;
  border: none;
}
.ayet-ref {
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
}

/* ─── GALLERY NOTE ───────────────────────────────────────── */
.gallery-note {
  max-width: 540px;
  margin: 20px auto 0;
  font-size: .88rem;
  line-height: 1.85;
  color: var(--muted);
  font-style: italic;
  letter-spacing: .01em;
}

/* ─── EVENT CARDS ────────────────────────────────────────── */
.events { background: var(--cream); }

.event-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 680px) { .event-cards { grid-template-columns: 1fr; } }

.event-card {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.event-card:hover { transform: translateY(-10px); box-shadow: 0 44px 80px rgba(0,0,0,.28); }

.event-card-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s var(--ease);
}
.event-card:hover .event-card-img { transform: scale(1.07); }

.event-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,6,3,.92) 0%, rgba(10,6,3,.3) 55%, transparent 100%);
}
.event-card-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.event-card:hover .event-card-glow { opacity: 1; }

.event-card-content {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  color: var(--white);
  text-align: center;
}
.event-emoji { font-size: 2.8rem; display: block; margin-bottom: 14px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); }
.event-card-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.event-card-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--gold),transparent);
  margin: 0 auto 18px;
}
.event-card-date { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; opacity: .75; margin-bottom: 6px; }
.event-card-time { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--gold-lt); margin-bottom: 4px; }
.event-card-venue { font-size: .8rem; opacity: .65; margin-bottom: 22px; }
.event-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  font-size: .73rem;
  letter-spacing: .12em;
  transition: all .3s;
}
.event-card:hover .event-card-cta { background: rgba(201,169,110,.25); border-color: var(--gold); }

/* ─── EVENT DETAIL ───────────────────────────────────────── */
.event-detail {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.detail-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(3px) brightness(.22);
  transform: scale(1.06);
}
.detail-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(14,9,4,.92) 0%, rgba(28,16,6,.88) 100%);
}
.detail-overlay-wedding {
  background: linear-gradient(135deg, rgba(8,6,12,.94) 0%, rgba(22,12,4,.9) 100%);
}
.event-detail .container { position: relative; z-index: 2; }

.detail-header { text-align: center; margin-bottom: 64px; }
.detail-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 18px;
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 100px;
  background: rgba(201,169,110,.08);
  margin-bottom: 18px;
}
.detail-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .05em;
  margin-bottom: 22px;
  line-height: 1;
}
.detail-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.detail-rule span:first-child,
.detail-rule span:last-child {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(201,169,110,.5));
}
.detail-rule span:last-child { background: linear-gradient(270deg,transparent,rgba(201,169,110,.5)); }
.detail-diamond { font-size: .5rem; color: var(--gold); }

.detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .detail-body { grid-template-columns: 1fr; } }

/* Info rows */
.detail-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,110,.15);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s;
}
.info-row:hover { background: rgba(201,169,110,.09); border-color: rgba(201,169,110,.3); }
.info-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--gold); }
.info-icon svg { width: 100%; height: 100%; }
.info-label {
  display: block;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-val {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.35;
}

/* Timeline / program */
.detail-program {
  padding: 30px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.14);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}
.program-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-lt);
  margin-bottom: 26px;
  letter-spacing: .05em;
}
.timeline { display: flex; flex-direction: column; }
.tl-item {
  display: grid;
  grid-template-columns: 48px 20px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(201,169,110,.08);
  position: relative;
}
.tl-item:last-child { border-bottom: none; }
.tl-time {
  font-size: .73rem;
  color: var(--gold);
  letter-spacing: .05em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
}
.tl-dot span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
  flex-shrink: 0;
}
.tl-text {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255,255,255,.88);
  font-weight: 300;
}

/* Map block */
.map-block {
  border: 1px solid rgba(201,169,110,.18);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0,0,0,.2);
}
.map-frame { position: relative; }
.map-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201,169,110,.1);
}
.map-actions {
  display: flex;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(0,0,0,.25);
  flex-wrap: wrap;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 100px;
  font-size: .78rem;
  letter-spacing: .12em;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::before {
  transform: translateX(100%);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold-dk) 100%);
  color: var(--dark);
  border: 1px solid rgba(201, 169, 110, 0.4);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.35);
  border-color: var(--gold-lt);
}
.btn-ghost {
  background: rgba(24, 18, 16, 0.45);
  color: var(--gold-lt);
  border: 1px solid rgba(201, 169, 110, 0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(201, 169, 110, 0.12);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.15);
}
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.35); }
.btn-copy { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-copy:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery { background: var(--ivory); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.g-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--champagne);
}
.g-item.g-tall { grid-row: span 2; }
.g-item.g-wide { grid-column: span 2; }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s var(--ease);
}
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute; inset: 0;
  background: rgba(18,12,8,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  font-size: 1.8rem;
  color: var(--white);
}
.g-item:hover .g-overlay { opacity: 1; }

@media (max-width: 680px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g-item.g-tall { grid-row: span 1; }
  .g-item.g-wide { grid-column: span 2; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item.g-wide, .g-item.g-tall { grid-column: span 1; grid-row: span 1; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; animation: lbFadeIn .3s var(--ease); }
@keyframes lbFadeIn { from{opacity:0} to{opacity:1} }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,5,2,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
#lightboxImg {
  position: relative; z-index: 1;
  max-width: 88vw; max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  animation: imgIn .35s var(--spring);
}
@keyframes imgIn { from{transform:scale(.92);opacity:0} to{transform:scale(1);opacity:1} }
.lb-close, .lb-prev, .lb-next {
  position: absolute; z-index: 2;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  cursor: pointer;
  transition: all .3s;
  display: flex; align-items: center; justify-content: center;
}
.lb-close { top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%; }
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.08); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--cream); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 14px;
  overflow: hidden;
  background: var(--ivory);
  transition: box-shadow .3s, border-color .3s;
}
.faq-item:hover { border-color: rgba(201,169,110,.4); box-shadow: 0 8px 28px rgba(201,169,110,.1); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--dark);
  text-align: left;
  font-weight: 500;
  transition: color .3s;
}
.faq-q:hover { color: var(--gold-dk); }
.faq-arrow { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); transition: transform .35s var(--ease); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 26px 20px; color: var(--muted); font-size: .93rem; line-height: 1.8; }
.faq-item.open .faq-a { max-height: 250px; }

/* ─── SHARE SECTION ─────────────────────────────────────── */
.share-section {
  position: relative;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}
.share-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.share-section .container { position: relative; z-index: 2; }
.share-section .section-title { color: var(--white); }
.share-section .section-sub { color: rgba(255,255,255,.5); }
.share-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  position: relative;
  text-align: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.footer-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  filter: blur(4px) brightness(.18);
  transform: scale(1.06);
}
.footer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,12,8,.82) 0%, rgba(18,12,8,.97) 100%);
}
.footer-content { position: relative; z-index: 2; }
.footer-ornaments {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: .8rem;
  color: var(--gold);
  opacity: .5;
  letter-spacing: .5em;
  margin-bottom: 32px;
}
.footer-message {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  margin: 0 auto 22px;
  max-width: 480px;
  line-height: 1.75;
}
.footer-names {
  font-family: var(--script);
  font-size: clamp(3rem, 9vw, 5.5rem);
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 22px;
}
.footer-heart { font-size: 1.8rem; margin-bottom: 18px; }
.pulse-heart {
  display: inline-block;
  color: #e05c5c;
  animation: pulseHeart 1.6s ease-in-out infinite;
}
@keyframes pulseHeart {
  0%,100% { transform:scale(1); }
  14% { transform:scale(1.25); }
  28% { transform:scale(1); }
  42% { transform:scale(1.15); }
}
.footer-dates {
  font-size: .68rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(201,169,110,.45);
}

/* ─── GLITTER CANVAS ─────────────────────────────────────── */
.glitter-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.custom-cursor {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999999;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease);
  opacity: 0;
}
.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold-lt);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.2s;
}
.custom-cursor.hovered {
  width: 56px;
  height: 56px;
  background-color: rgba(201, 169, 110, 0.08);
  border-color: var(--gold-lt);
}
@media (hover: none) and (pointer: coarse) {
  .custom-cursor, .custom-cursor-dot {
    display: none !important;
  }
}

/* ─── 3D CARD TILT & GLARE ───────────────────────────────── */
.event-card {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s var(--ease);
}
.event-card-content {
  transform: translateZ(30px);
  transform-style: preserve-3d;
}
.event-card-img {
  transform: translateZ(10px);
}
.event-card-glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: var(--r);
}
.event-card:hover .event-card-glare {
  opacity: 1;
}

/* ─── MUSIC TOAST ────────────────────────────────────────── */
.music-toast {
  position: fixed;
  bottom: 96px;
  left: 28px;
  background: rgba(24, 18, 16, 0.85);
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: 100px;
  color: var(--gold-lt);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.music-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE BOTTOM NAV ──────────────────────────────────── */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: rgba(24, 18, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 169, 110, 0.18);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 99;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  font-family: var(--sans);
  text-transform: uppercase;
  gap: 4px;
  transition: all 0.3s var(--ease);
  width: 20%;
  height: 100%;
}
.mobile-nav-item svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.45);
  transition: transform 0.3s var(--ease), stroke 0.3s var(--ease);
}
.mobile-nav-item.active {
  color: var(--gold-lt);
}
.mobile-nav-item.active svg {
  transform: translateY(-4px) scale(1.1);
  stroke: var(--gold-lt);
  filter: drop-shadow(0 0 5px var(--gold-glow));
}
.mobile-nav-item span {
  font-weight: 500;
  transition: opacity 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }
  .nav-inner {
    height: 56px;
  }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 600px) {
  .navbar {
    display: none !important;
  }
  .mobile-bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: 68px; /* Safe space for bottom nav */
  }
  .music-btn {
    bottom: 84px; /* moves it up to avoid bottom nav bar overlap */
    left: 18px;
    width: 44px;
    height: 44px;
  }
  .music-toast {
    bottom: 140px;
    left: 18px;
  }
}

@media (max-width: 480px) {
  .countdown-item { min-width: 60px; padding: 10px 6px 8px; }
  .countdown-number { font-size: 1.5rem; }
  .countdown-sep { font-size: 1.5rem; }
  .event-card { min-height: 400px; }
  .event-card-content { padding: 28px 22px; }
  .map-actions { flex-direction: column; }
  .map-actions .btn { justify-content: center; }
  .btn { padding: 11px 20px; }
  .detail-program { padding: 22px 18px; }
}
