/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════════ */
:root {
  --clr-cream:    #F7F5F0;
  --clr-cream-d:  #EDE8DD;
  --clr-olive:    #3A4D39;
  --clr-olive-l:  #4E6A4D;
  --clr-gold:     #C5A258;
  --clr-gold-l:   #D4B96E;
  --clr-gold-d:   #A88B3D;
  --clr-text:     #3A3A32;
  --clr-text-m:   #6B6B60;
  --clr-white:    #FFFFFF;
  --clr-overlay:  rgba(42, 40, 32, 0.55);

  /* Lemon concept colors */
  --clr-lemon:    #F4D03F;
  --clr-lemon-l:  #F7DC6F;
  --clr-lemon-d:  #D4A017;
  --clr-leaf:     #5A8A4F;
  --clr-leaf-d:   #3D6B35;
  --clr-leaf-l:   #7BA668;
  --clr-bark:     #6B4F3A;

  --ff-script:  'Great Vibes', cursive;
  --ff-serif:   'Playfair Display', serif;
  --ff-sans:    'Montserrat', sans-serif;

  --gap:        clamp(1rem, 3vw, 2rem);
  --section-py: clamp(4rem, 10vw, 7rem);
  --radius:     0.5rem;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--ff-sans);
  font-weight: 400;
  color: var(--clr-text);
  background-color: var(--clr-cream);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  overflow-x: hidden;
  line-height: 1.6;
}

.body--locked { overflow: hidden; }

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

/* ═══════════════════════════════════════════
   UTILITY
   ════════════════════════════════════════════ */
.script { font-family: var(--ff-script); font-weight: 400; }

.section-title {
  font-family: var(--ff-script);
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--clr-olive);
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   INTRO OVERLAY — Limon Ağaçları Ormanı
   3D Fly-Through Animasyonlu
   ════════════════════════════════════════════ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F0EDE4 0%, #E8EDDF 25%, #F5F0E0 50%, #E4EDD8 75%, #F0EDE4 100%);
  cursor: pointer;
  overflow: hidden;
  perspective: 1200px;
  perspective-origin: 50% 60%;
}

.intro.is-hidden { display: none; visibility: hidden; }

/* ── Intro Lemon Trees — 3D Depth Layering ── */
.intro__tree {
  position: absolute;
  bottom: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-origin: center bottom;
  transition: transform 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1.2s ease;
  filter: url(#watercolor);
}

/* 9 lemon trees across the viewport */
.intro__tree--1 { left: 0%;   width: 14vw; max-width: 110px; z-index: 2; }
.intro__tree--2 { left: 10%;  width: 17vw; max-width: 150px; z-index: 4; }
.intro__tree--3 { left: 22%;  width: 14vw; max-width: 120px; z-index: 3; }
.intro__tree--4 { left: 33%;  width: 19vw; max-width: 165px; z-index: 5; }
.intro__tree--5 { left: 50%;  transform: translateX(-50%); width: 24vw; max-width: 200px; z-index: 6; }
.intro__tree--6 { right: 30%; width: 18vw; max-width: 155px; z-index: 5; }
.intro__tree--7 { right: 20%; width: 15vw; max-width: 130px; z-index: 3; }
.intro__tree--8 { right: 8%;  width: 16vw; max-width: 145px; z-index: 4; }
.intro__tree--9 { right: 0%;  width: 13vw; max-width: 105px; z-index: 2; }

/* ── 3D Fly-Through Exit Animation ──
   Trees "fly toward" the viewer with translateZ + scale.
   Center trees zoom most, edge trees fly outward + forward.
   Staggered delays create parallax depth effect. */
.intro.is-exiting .intro__tree--1 {
  transform: translateZ(600px) translateX(-120%) scale(2.5);
  opacity: 0;
  transition-delay: 0.1s;
}
.intro.is-exiting .intro__tree--2 {
  transform: translateZ(500px) translateX(-80%) scale(2.2);
  opacity: 0;
  transition-delay: 0.05s;
}
.intro.is-exiting .intro__tree--3 {
  transform: translateZ(700px) translateX(-50%) scale(2.8);
  opacity: 0;
  transition-delay: 0.15s;
}
.intro.is-exiting .intro__tree--4 {
  transform: translateZ(800px) translateX(-20%) scale(3);
  opacity: 0;
  transition-delay: 0s;
}
.intro.is-exiting .intro__tree--5 {
  transform: translateX(-50%) translateZ(1000px) scale(4);
  opacity: 0;
  transition-delay: 0s;
}
.intro.is-exiting .intro__tree--6 {
  transform: translateZ(800px) translateX(20%) scale(3);
  opacity: 0;
  transition-delay: 0s;
}
.intro.is-exiting .intro__tree--7 {
  transform: translateZ(700px) translateX(50%) scale(2.8);
  opacity: 0;
  transition-delay: 0.15s;
}
.intro.is-exiting .intro__tree--8 {
  transform: translateZ(500px) translateX(80%) scale(2.2);
  opacity: 0;
  transition-delay: 0.05s;
}
.intro.is-exiting .intro__tree--9 {
  transform: translateZ(600px) translateX(120%) scale(2.5);
  opacity: 0;
  transition-delay: 0.1s;
}

/* ── Intro Floating Leaves & Lemons ── */
.intro__leaf {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50% 0 50% 0;
  opacity: 0.25;
  animation: intro-float 8s ease-in-out infinite;
}
.intro__leaf--1 { top: 15%; left: 20%; background: var(--clr-leaf-l); animation-duration: 7s; }
.intro__leaf--2 { top: 30%; right: 15%; background: var(--clr-lemon); animation-duration: 9s; animation-delay: 1.5s; width: 9px; height: 9px; border-radius: 50%; }
.intro__leaf--3 { top: 55%; left: 40%; background: var(--clr-leaf); animation-duration: 11s; animation-delay: 3s; width: 14px; height: 14px; opacity: 0.18; }
.intro__leaf--4 { top: 40%; right: 30%; background: var(--clr-lemon-l); animation-duration: 6.5s; animation-delay: 2s; width: 8px; height: 8px; border-radius: 50%; }
.intro__leaf--5 { bottom: 30%; left: 60%; background: var(--clr-leaf-l); animation-duration: 10s; animation-delay: 4s; opacity: 0.2; }
.intro__leaf--6 { top: 25%; left: 55%; background: var(--clr-leaf-d); animation-duration: 8.5s; animation-delay: 1s; width: 10px; height: 10px; }

@keyframes intro-float {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(15px, -20px) rotate(90deg); }
  50%  { transform: translate(-10px, -35px) rotate(180deg); }
  75%  { transform: translate(20px, -15px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

.intro.is-exiting .intro__leaf { opacity: 0; transition: opacity 0.6s ease; }

/* ── Intro Content ── */
.intro__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
}
.intro__names {
  font-family: var(--ff-script);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--clr-olive);
  margin-bottom: 1rem;
}
.intro__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.intro__divider-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--clr-gold);
  opacity: 0.5;
}
.intro__divider-diamond {
  color: var(--clr-gold);
  font-size: 0.5rem;
}
.intro__cta {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: var(--clr-olive);
  letter-spacing: 0.04em;
  animation: cta-pulse 2.5s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.intro__tap-icon {
  width: 28px;
  height: 28px;
  margin: 1rem auto 0;
  color: var(--clr-olive);
  opacity: 0.35;
}

/* ═══════════════════════════════════════════
   DECORATIVE LEMON BRANCHES (fixed, parallax)
   Wider coverage — spilling inward from corners
   ════════════════════════════════════════════ */
.decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.decor__branch {
  position: absolute;
  will-change: transform;
  transition: transform 0.1s linear;
  filter: url(#watercolor);
}

.decor__branch--tl  { top: 0;    left: 0;  width: clamp(160px, 25vw, 320px); height: auto; }
.decor__branch--tr  { top: 0;    right: 0; width: clamp(160px, 25vw, 320px); height: auto; }
.decor__branch--bl  { bottom: 0; left: 0;  width: clamp(130px, 20vw, 260px); height: auto; }
.decor__branch--br  { bottom: 0; right: 0; width: clamp(130px, 20vw, 260px); height: auto; }

/* Floating interior decorations */
.decor-floating {
  position: absolute;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
  filter: url(#watercolor);
}
.decor-floating svg { width: 100%; height: auto; }
.decor-floating--left { left: clamp(-50px, -5vw, 0); width: clamp(180px, 35vw, 450px); }
.decor-floating--right { right: clamp(-50px, -5vw, 0); width: clamp(180px, 35vw, 450px); }
.decor-floating--center { left: 50%; transform: translateX(-50%); width: clamp(250px, 50vw, 600px); }


/* ═══════════════════════════════════════════
   INLINE LEMON DECORATIONS (between sections)
   ════════════════════════════════════════════ */
.decor-inline {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  background: var(--clr-cream);
  overflow: hidden;
}
.decor-inline--olive {
  background: var(--clr-olive);
}
.decor-inline__svg {
  width: clamp(200px, 50vw, 400px);
  height: auto;
  opacity: 0.75;
  filter: url(#watercolor);
}
.decor-inline__svg--wide {
  width: clamp(280px, 70vw, 600px);
  opacity: 0.9;
}

/* ═══════════════════════════════════════════
   FIXED MUSIC PLAYER — Sağ Üst Köşe
   ════════════════════════════════════════════ */
.music-fixed {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.8rem 0.45rem 0.5rem;
  background: rgba(247,245,240,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(197,162,88,0.3);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(58,77,57,0.12);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.music-fixed.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Vinyl disc (compact) */
.music-fixed__disc-wrap {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.music-fixed__disc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1A1A1A 0%, #2A2A2A 25%, #1A1A1A 50%, #2A2A2A 75%, #1A1A1A 100%);
  border: 2px solid var(--clr-gold);
  position: relative;
  animation: spin 3s linear infinite;
  animation-play-state: paused;
}

.music-fixed__disc.is-spinning {
  animation-play-state: running;
}

.music-fixed__disc-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
  pointer-events: none;
}

.music-fixed__disc-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-gold);
  border: 1.5px solid var(--clr-gold-d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-fixed__disc-note {
  font-size: 0.45rem;
  color: var(--clr-olive);
  line-height: 1;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Info */
.music-fixed__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.music-fixed__artist {
  font-family: var(--ff-serif);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--clr-olive);
  line-height: 1.2;
  white-space: nowrap;
}

.music-fixed__song {
  font-size: 0.6rem;
  color: var(--clr-text-m);
  font-weight: 300;
  white-space: nowrap;
}

/* Play/Pause button */
.music-fixed__btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--clr-olive);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.music-fixed__btn:hover {
  background: var(--clr-olive-l);
  transform: scale(1.1);
}

.music-fixed__btn-icon {
  width: 11px;
  height: 11px;
  color: var(--clr-gold-l);
}

.music-fixed__btn-icon--hidden {
  display: none;
}

/* ── Volume Control ── */
.music-fixed__volume {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.2rem;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(197,162,88,0.2);
}

.music-fixed__volume-icon {
  width: 14px;
  height: 14px;
  color: var(--clr-gold);
  flex-shrink: 0;
  opacity: 0.7;
}

.music-fixed__volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 60px;
  height: 3px;
  background: rgba(197,162,88,0.3);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.music-fixed__volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-gold);
  border: 1.5px solid var(--clr-gold-d);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.15s ease;
}

.music-fixed__volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.music-fixed__volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-gold);
  border: 1.5px solid var(--clr-gold-d);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.music-fixed__volume-slider::-moz-range-track {
  height: 3px;
  background: rgba(197,162,88,0.3);
  border-radius: 3px;
  border: none;
}

/* ═══════════════════════════════════════════
   MAIN CONTENT WRAPPER
   ════════════════════════════════════════════ */
.main-content {
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}
.main-content.is-visible {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

.hero__overlay {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem var(--gap) 4rem;
  max-width: 700px;
  color: var(--clr-olive);
}

.hero__invitation {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero__names-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.hero__names {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--ff-script);
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--clr-olive);
  text-shadow: none;
}

.hero__name-part {
  display: block;
}

.hero__amp-stacked {
  display: block;
  font-family: var(--ff-script);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--clr-gold-l);
  margin: 0.1em 0;
  opacity: 0.9;
}

/* Divider line */
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__divider-line {
  display: block;
  width: clamp(40px, 12vw, 100px);
  height: 1px;
  background: var(--clr-gold);
  opacity: 0.7;
}
.hero__divider-diamond {
  color: var(--clr-gold);
  font-size: 0.6rem;
}

/* ═══════════════════════════════════════════
   VINTAGE CALENDAR CARD & FAMILIES
   ════════════════════════════════════════════ */
.hero__date-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 1rem;
}

.hero__family {
  font-family: var(--ff-script);
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--clr-olive);
  opacity: 0.9;
}

.hero__calendar {
  width: clamp(100px, 22vw, 130px);
  margin: 0;
  border-radius: 8px;
  overflow: visible;
  box-shadow:
    0 8px 30px rgba(0,0,0,0.25),
    0 2px 8px rgba(197,162,88,0.2);
  position: relative;
}

/* Decorative pin */
.hero__calendar-pin {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clr-gold);
  border: 2px solid var(--clr-gold-d);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 2;
}

.hero__calendar-header {
  background: var(--clr-gold);
  color: var(--clr-olive);
  text-align: center;
  padding: 0.5rem 0.4rem 0.35rem;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: clamp(0.6rem, 1.8vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 8px 8px 0 0;
}

.hero__calendar-body {
  background: transparent;
  text-align: center;
  padding: 0.6rem 0.5rem 0.3rem;
}

.hero__calendar-day {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-olive);
  line-height: 1;
}

.hero__calendar-footer {
  background: transparent;
  text-align: center;
  padding: 0 0 0.5rem;
  border-radius: 0 0 8px 8px;
  position: relative;
}

.hero__calendar-year {
  font-family: var(--ff-serif);
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  color: var(--clr-text-m);
  letter-spacing: 0.2em;
}

/* Page curl effect */
.hero__calendar-curl {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, transparent 50%, rgba(197,162,88,0.25) 50%);
  border-radius: 0 0 8px 0;
}

/* Bouncing arrow */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}
.hero__arrow {
  width: 28px;
  height: 28px;
  color: var(--clr-gold-l);
  opacity: 0.8;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(12px); }
}

/* Floral corner accents */
.hero__floral {
  position: absolute;
  width: clamp(80px, 18vw, 200px);
  height: clamp(80px, 18vw, 200px);
  z-index: 2;
  opacity: 0.2;
  pointer-events: none;
  background: radial-gradient(circle, var(--clr-gold-l) 0%, transparent 70%);
}
.hero__floral--tl { top: 0; left: 0; }
.hero__floral--br { bottom: 0; right: 0; }

/* ═══════════════════════════════════════════
   DIVIDERS
   ════════════════════════════════════════════ */
.divider { width: 100%; line-height: 0; }

.divider--torn {
  margin-top: -1px;
  background: linear-gradient(180deg, transparent 0%, var(--clr-olive) 100%);
}
.divider--torn svg { display: block; width: 100%; height: 60px; }

.divider--torn-inv {
  margin-bottom: -1px;
  background: var(--clr-olive);
}
.divider--torn-inv svg { display: block; width: 100%; height: 60px; }

.divider--floral {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  background: var(--clr-cream);
}
.divider__floral-svg { width: clamp(200px, 60vw, 500px); height: auto; }

.divider--olive-to-cream {
  margin-top: -1px;
  background: var(--clr-olive);
}
.divider--olive-to-cream svg { display: block; width: 100%; height: 60px; }

/* ═══════════════════════════════════════════
   VENUE SECTION
   ════════════════════════════════════════════ */
.venue {
  background: transparent;
  padding: var(--section-py) var(--gap);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.venue__card {
  position: relative;
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1.5px solid var(--clr-gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(247,245,240,0.8), rgba(237,232,221,0.6));
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 40px rgba(58,77,57,0.08), 0 1px 3px rgba(197,162,88,0.15);
}

/* Gold corner ornaments */
.venue__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--clr-gold);
  border-style: solid;
}
.venue__corner--tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; border-radius: 2px 0 0 0; }
.venue__corner--tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; border-radius: 0 2px 0 0; }
.venue__corner--bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; border-radius: 0 0 0 2px; }
.venue__corner--br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; border-radius: 0 0 2px 0; }

.venue__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.venue__item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  text-align: left;
  justify-content: center;
}

.venue__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--clr-gold);
  margin-top: 2px;
}

.venue__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-text-m);
}
.venue__value {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-olive);
}
.venue__sub {
  display: block;
  font-size: 0.85rem;
  color: var(--clr-text-m);
  margin-top: 0.15rem;
}

.venue__separator {
  width: 60px;
  height: 1px;
  background: var(--clr-gold);
  opacity: 0.5;
  margin: 0 auto;
}

.venue__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn__icon { width: 18px; height: 18px; }

.btn--map {
  background: var(--clr-olive);
  color: var(--clr-gold-l);
  box-shadow: 0 4px 16px rgba(58,77,57,0.25);
}
.btn--map:hover {
  background: var(--clr-olive-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(58,77,57,0.35);
}

.btn--calendar {
  background: var(--clr-gold);
  color: var(--clr-olive);
  box-shadow: 0 4px 16px rgba(197,162,88,0.3);
}
.btn--calendar:hover {
  background: var(--clr-gold-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197,162,88,0.4);
}

.btn--upload {
  background: var(--clr-gold);
  color: var(--clr-olive);
  box-shadow: 0 4px 16px rgba(197,162,88,0.3);
}
.btn--upload:hover {
  background: var(--clr-gold-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(197,162,88,0.4);
}

/* ═══════════════════════════════════════════
   DRESS CODE SECTION — Minimalist
   ════════════════════════════════════════════ */
.dresscode {
  position: relative;
  background: transparent;
  padding: var(--section-py) var(--gap);
  text-align: center;
}

.dresscode__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.dresscode__text {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--clr-text-m);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   RSVP SECTION
   ════════════════════════════════════════════ */
.rsvp {
  position: relative;
  background: transparent;
  padding: var(--section-py) var(--gap);
  text-align: center;
}

.rsvp__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.rsvp__text {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--clr-text-m);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.rsvp__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(197,162,88,0.3);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(6px);
}

.rsvp__input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(58,77,57,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.8);
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--clr-text);
  transition: var(--transition);
}

.rsvp__input:focus {
  outline: none;
  border-color: var(--clr-olive);
  box-shadow: 0 0 0 3px rgba(58,77,57,0.1);
}

.rsvp__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--rsvp {
  flex: 1;
  min-width: 120px;
  background: transparent;
  color: var(--clr-olive);
  border: 1px solid var(--clr-olive);
  opacity: 0.7;
}

.btn--rsvp.is-active {
  background: var(--clr-olive);
  color: var(--clr-gold-l);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(58,77,57,0.2);
}

.btn--submit {
  background: var(--clr-gold);
  color: var(--clr-olive);
  align-self: center;
  margin-top: 1rem;
  min-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.btn--submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.rsvp__message {
  margin-top: 1.5rem;
  color: var(--clr-olive);
  font-family: var(--ff-sans);
  font-weight: 500;
  padding: 1rem;
  background: rgba(197,162,88,0.15);
  border-radius: 8px;
  border: 1px solid rgba(197,162,88,0.3);
}

/* ═══════════════════════════════════════════
   MEMORIES SECTION — Dijital Anı Köşesi
   ════════════════════════════════════════════ */
.memories {
  background: transparent;
  padding: var(--section-py) var(--gap);
  text-align: center;
  color: var(--clr-text);
}

.memories .section-title { color: var(--clr-olive); }

.memories__inner { max-width: 700px; margin: 0 auto; }

.memories__text {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.memories__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.memories__card {
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(197,162,88,0.3);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.memories__card:hover {
  border-color: rgba(197,162,88,0.8);
  background: rgba(255,255,255,0.6);
  transform: translateY(-4px);
}

.memories__card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--clr-olive);
}
.memories__card-icon svg { width: 100%; height: 100%; }

.memories__card-title {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-olive);
  margin-bottom: 0.5rem;
}

.memories__card-text {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--clr-text-m);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.memories__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.memories__qr-frame {
  width: clamp(120px, 30vw, 160px);
  height: clamp(120px, 30vw, 160px);
  padding: 8px;
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius);
  background: var(--clr-cream);
  box-shadow: 0 0 20px rgba(197,162,88,0.15), 0 0 40px rgba(197,162,88,0.08);
}
.memories__qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 2px;
}
.memories__qr-hint {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-text-m);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   COUNTDOWN SECTION
   ════════════════════════════════════════════ */
.countdown {
  background: transparent;
  padding: var(--section-py) var(--gap);
  text-align: center;
  color: var(--clr-text);
}

.countdown .section-title { color: var(--clr-olive); }
.countdown__inner { max-width: 600px; margin: 0 auto; }

.countdown__timer {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  flex-wrap: wrap;
}

.countdown__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(64px, 15vw, 100px);
  padding: 1rem 0.5rem;
  border: 1px solid rgba(197,162,88,0.4);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.countdown__box:hover {
  border-color: var(--clr-olive);
  background: rgba(255,255,255,0.7);
}

.countdown__num {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--clr-olive);
}
.countdown__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-text-m);
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════
   CLOSING / FOOTER
   ════════════════════════════════════════════ */
.closing {
  background: transparent;
  padding: var(--section-py) var(--gap) calc(var(--section-py) * 0.6);
  text-align: center;
}

.closing__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.closing__divider-line {
  display: block;
  width: clamp(40px, 12vw, 100px);
  height: 1px;
  background: var(--clr-gold);
  opacity: 0.5;
}
.closing__divider-heart {
  color: var(--clr-gold);
  font-size: 1rem;
  animation: pulse-heart 2.5s ease-in-out infinite;
}
@keyframes pulse-heart {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.2); }
}

.closing__text {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--clr-text-m);
  margin-bottom: 0.5rem;
}

.closing__signature {
  font-family: var(--ff-script);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--clr-olive);
}

/* ═══════════════════════════════════════════
   RESPONSIVE FINE-TUNING
   ════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__names { font-size: clamp(1.8rem, 10vw, 2.8rem); }
  .venue__card { padding: 2rem 1.2rem; }
  .venue__item { flex-direction: column; align-items: center; text-align: center; }
  .venue__actions { flex-direction: column; align-items: center; }
  .countdown__box { min-width: 60px; padding: 0.75rem 0.3rem; }
  .memories__cards { grid-template-columns: 1fr; }

  /* Lemon trees compact on mobile */
  .intro__tree { max-width: 70px !important; }

  /* Decorative branches subtle on mobile */
  .decor__branch { opacity: 0.06; }

  /* Compact music player on mobile — hide volume & info */
  .music-fixed { right: 0.6rem; top: 0.6rem; padding: 0.35rem 0.6rem 0.35rem 0.4rem; gap: 0.4rem; }
  .music-fixed__info { display: none; }
  .music-fixed__volume { display: none; }
  .music-fixed__disc-wrap, .music-fixed__disc { width: 32px; height: 32px; }
  .music-fixed__btn { width: 26px; height: 26px; }
  .music-fixed__btn-icon { width: 9px; height: 9px; }
  .music-fixed__disc-label { width: 12px; height: 12px; }
}

@media (min-width: 768px) {
  .venue__details {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .venue__separator { width: 1px; height: 60px; margin: 0; }
}

/* ═══════════════════════════════════════════
   SUBTLE PARTICLES / AMBIANCE
   ════════════════════════════════════════════ */
@keyframes float {
  0%   { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(30px, -20px) rotate(120deg); }
  66%  { transform: translate(-20px, 20px) rotate(240deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
