/* ═══════════════════════════════════════════════════════
   KINA GECESİ — STYLESHEET
   Deep Burgundy + Pink Lily Floral Theme
   Mobile-first responsive design
   ═══════════════════════════════════════════════════════ */

/* ─── Google Fonts Import ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* ─── Custom Properties ──────────────────────────────── */
:root {
  /* Colors — Deep Burgundy Palette */
  --bg-primary: #4A1029;
  --bg-secondary: #3A0C22;
  --bg-deep: #2D0819;
  --bg-light: #5B1A3A;
  --bg-cream: #F5EDE3;
  --bg-cream-warm: #F0E4D6;

  /* Text Colors */
  --text-primary: #F5EDE3;
  --text-secondary: rgba(245, 237, 227, 0.75);
  --text-accent: #D4AF7F;
  --text-dark: #3A0C22;
  --text-gold: #C9A96E;

  /* Accent Colors */
  --accent-pink: #E8B4B8;
  --accent-blush: #D4908F;
  --accent-rose: #C27882;
  --accent-gold: #D4AF7F;
  --accent-gold-light: rgba(212, 175, 127, 0.4);

  /* Border */
  --border-gold: rgba(212, 175, 127, 0.35);
  --border-gold-strong: rgba(212, 175, 127, 0.6);

  /* Fonts */
  --font-script: 'Great Vibes', cursive;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Cormorant Garamond', serif;

  /* Spacing */
  --section-padding: clamp(3rem, 8vw, 6rem);
  --content-max-width: 1100px;

  /* Transitions */
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-primary);
  transition: background-color 0.4s ease;
}

section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color 0.4s ease;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color var(--transition-smooth);
}

a:hover {
  color: var(--accent-pink);
}

/* ─── Scroll Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }


/* ═══════════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--bg-primary);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Thin gold border frame */
.hero::before {
  content: '';
  position: absolute;
  inset: clamp(12px, 2vw, 24px);
  border: 1px solid var(--border-gold);
  pointer-events: none;
  z-index: 1;
}

/* Subtle radial gradient overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(42, 8, 25, 0.5) 100%);
  pointer-events: none;
}

/* Lily decorations */
.hero-lily-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(180px, 35vw, 420px);
  opacity: 0.9;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-lily-right {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(140px, 28vw, 350px);
  opacity: 0.7;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: lowercase;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-bride-name {
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.2em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-event-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-accent);
  margin-bottom: 1.5rem;
}

.hero-date {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 237, 227, 0.9);
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

.hero-day-name {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(245, 237, 227, 0.9);
  margin-bottom: 0.8rem;
}

.hero-date .separator {
  display: inline-block;
  margin: 0 0.4em;
  color: var(--accent-gold-light);
}

.hero-venue-hint {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 227, 0.85);
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 237, 227, 0.88);
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity var(--transition-smooth);
}

.scroll-indicator:hover {
  opacity: 0.7;
}

.scroll-indicator-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: lowercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════════
   SECTION 2: COUNTDOWN
   ═══════════════════════════════════════════════════════ */

.countdown-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vh, 3rem) 2rem;
  background: var(--bg-cream);
  text-align: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Decorative mandala-like circle */
.countdown-section::before {
  content: '';
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  border: 1px dashed rgba(74, 16, 41, 0.1);
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  pointer-events: none;
}

.countdown-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* Days — big on top */
.countdown-days-row {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem 0 1rem;
  border-top: 1px solid rgba(74, 16, 41, 0.15);
  text-align: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: relative;
}

.countdown-number-days {
  font-family: var(--font-heading);
  font-size: clamp(6.5rem, 18vw, 11.5rem);
  font-weight: 600;
  color: var(--bg-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  min-width: 2ch;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

/* Hours, Minutes, Seconds — smaller row below */
.countdown-sub-row {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid rgba(74, 16, 41, 0.15);
}

.countdown-sub-row .countdown-item {
  position: relative;
  flex: 1 1 0px;
  min-width: clamp(85px, 22vw, 140px);
  text-align: center;
}

.countdown-sub-row .countdown-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(74, 16, 41, 0.15);
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--bg-primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  min-width: 2ch;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  font-weight: 400;
  color: rgba(74, 16, 41, 0.65);
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

.countdown-days-row .countdown-label {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.15em;
}


/* ═══════════════════════════════════════════════════════
   SECTION 3: DETAILS (Date, Time, Location)
   ═══════════════════════════════════════════════════════ */

.details-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vh, 3rem) 2rem;
  background: var(--bg-secondary);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Gold border frame */
.details-section::before {
  content: '';
  position: absolute;
  inset: clamp(12px, 2vw, 24px);
  border: 1px solid var(--border-gold);
  pointer-events: none;
  z-index: 1;
}

/* Lily decoration */
.details-lily {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(150px, 25vw, 350px);
  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.details-content {
  position: relative;
  z-index: 3;
  max-width: var(--content-max-width);
  margin: 0 auto;
  text-align: center;
}

.details-heading {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.details-date-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.details-day-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.15em;
}

.details-date {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.15em;
}

.details-date .sep,
.details-date-time .sep {
  margin: 0 0.2em;
  color: var(--accent-gold-light);
}

.details-time {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-primary);
  letter-spacing: 0.15em;
}



.details-venue-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 2rem;
}

.details-venue-address {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.details-venue-note {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--accent-pink);
  font-style: italic;
  margin-top: 0.5rem;
}

/* Action buttons */
.details-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--border-gold-strong);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(212, 175, 127, 0.15);
  color: var(--text-accent);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-outline svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


/* ═══════════════════════════════════════════════════════
   SECTION 4: PROGRAM / TIMELINE
   ═══════════════════════════════════════════════════════ */

.program-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2vh, 2rem) 2rem calc(clamp(60px, 8vh, 90px) + env(safe-area-inset-bottom));
  background: var(--bg-primary);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.program-content {
  max-width: var(--content-max-width);
  margin: 0 auto;
  width: 100%;
}

.program-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: clamp(0.5rem, 1.5vh, 1.2rem);
}

.program-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.1;
}

.program-heading em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--text-accent);
  font-size: 1.1em;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: clamp(25px, 4vw, 50px);
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: clamp(12px, 2vw, 24px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent-gold), var(--border-gold), transparent);
}

.timeline-item {
  position: relative;
  padding: clamp(0.15rem, 0.5vh, 0.4rem) 0 clamp(0.15rem, 0.5vh, 0.4rem) clamp(16px, 2.5vw, 30px);
}

/* Diamond marker */
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(clamp(12px, 2vw, 24px) - clamp(25px, 4vw, 50px) - 5px);
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background: var(--bg-primary);
  border: 1.5px solid var(--accent-gold);
  transform: rotate(45deg);
  z-index: 1;
}

.timeline-item-icon {
  position: absolute;
  left: calc(clamp(12px, 2vw, 24px) - clamp(25px, 4vw, 50px) - 15px);
  top: 0.1rem;
  width: 30px;
  height: 30px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--accent-gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-item-icon span {
  transform: rotate(-45deg);
  font-size: 0.8rem;
  color: var(--accent-gold);
}

.timeline-time {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1vw, 0.85rem);
  font-weight: 500;
  color: var(--text-accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
  min-height: 1.2em;
}

.timeline-time.hidden-time {
  visibility: hidden;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.timeline-description {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.35;
}

.timeline-number {
  position: absolute;
  right: 0;
  top: 0.3rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 237, 227, 0.15);
}


/* ═══════════════════════════════════════════════════════
   SECTION 5: SPECIAL NOTES
   ═══════════════════════════════════════════════════════ */

.notes-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 2vh, 2rem) 2rem calc(clamp(75px, 11vh, 120px) + env(safe-area-inset-bottom));
  background: var(--bg-cream);
  text-align: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Decorative mandala-like circle matching countdown section */
.notes-section::before {
  content: '';
  position: absolute;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  border: 1px dashed rgba(74, 16, 41, 0.1);
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  pointer-events: none;
}

.notes-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-max-width);
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.notes-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: clamp(0.8rem, 1.8vh, 1.5rem);
}

.notes-card {
  max-width: 840px;
  margin: 0 auto clamp(0.8rem, 2vh, 1.5rem);
  text-align: left;
  padding: clamp(1.2rem, 2.5vw, 2.2rem);
  background: rgba(74, 16, 41, 0.035);
  border-left: 4px solid var(--bg-primary);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(74, 16, 41, 0.05);
}

.notes-attention {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
  color: var(--bg-primary);
  line-height: 1.35;
  margin-bottom: 0.8rem;
  text-align: left;
}

.notes-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: var(--text-dark);
  line-height: 1.65;
  text-align: left;
}

.notes-text strong {
  color: var(--bg-primary);
  font-weight: 700;
}

.notes-slogan {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-top: clamp(0.4rem, 1.2vh, 1rem);
}

.notes-slogan em,
.notes-slogan span {
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  color: inherit;
}


/* ═══════════════════════════════════════════════════════
   SECTION 6: FOOTER / CLOSING
   ═══════════════════════════════════════════════════════ */

.footer-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vh, 3rem) 2rem calc(clamp(1.5rem, 3vh, 3rem) + 60px + env(safe-area-inset-bottom));
  background: var(--bg-secondary);
  text-align: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Decorative circle */
.footer-section::before {
  content: '';
  position: absolute;
  width: clamp(250px, 40vw, 550px);
  height: clamp(250px, 40vw, 550px);
  border-radius: 50%;
  border: 1px dashed var(--border-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.footer-ornament {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  line-height: 1;
}

.footer-signature {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-accent);
  margin-bottom: 1.5rem;
}

.footer-closing-message {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.footer-closing-message em {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--accent-rose);
  font-size: 1.1em;
}

.footer-event-summary {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  margin-top: 1.5rem;
  line-height: 1.8;
}

.footer-back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-accent);
  cursor: pointer;
  transition: all var(--transition-smooth);
  background: none;
  border: none;
}

.footer-back-top:hover {
  color: var(--accent-pink);
  transform: translateY(-3px);
}

.footer-credit {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(245, 237, 227, 0.3);
  margin-top: 3rem;
}


/* ═══════════════════════════════════════════════════════
   FLOATING YOL TARİFİ BUTTON
   ═══════════════════════════════════════════════════════ */

.nav-dock {
  position: fixed;
  bottom: calc(clamp(16px, 3vw, 28px) + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-gold-strong);
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(45, 8, 25, 0.45), 0 0 15px rgba(212, 175, 127, 0.25);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-dock.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dock:hover {
  background: var(--bg-light);
  border-color: var(--accent-gold);
  color: var(--text-accent);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 12px 36px rgba(45, 8, 25, 0.6), 0 0 25px rgba(212, 175, 127, 0.4);
}

.nav-dock-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.nav-dock-text {
  line-height: 1;
}


/* ═══════════════════════════════════════════════════════
   SIDE NAVIGATION INDICATORS
   ═══════════════════════════════════════════════════════ */

.side-nav {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.side-nav.visible {
  opacity: 1;
}

.side-nav-dot {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--accent-gold-light);
  transform: rotate(45deg);
  cursor: pointer;
  transition: all var(--transition-smooth);
  background: transparent;
}

.side-nav-dot.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212, 175, 127, 0.5);
}

.side-nav-dot:hover {
  border-color: var(--accent-gold);
  transform: rotate(45deg) scale(1.2);
}

.side-nav-label {
  position: absolute;
  right: 24px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-accent);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-smooth);
  pointer-events: none;
}

.side-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.side-nav-item:hover .side-nav-label {
  opacity: 1;
  transform: translateX(0);
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════ */

/* ─── Small Mobile (< 480px) ──────────────────────────── */
@media (max-width: 480px) {
  .hero-lily-left {
    width: 160px;
    bottom: 0;
    left: 0;
    opacity: 0.7;
  }
  
  .hero-lily-right {
    width: 120px;
    top: 0;
    right: 0;
    opacity: 0.5;
  }

  .details-lily {
    width: 130px;
    opacity: 0.6;
  }

  .countdown-sub-row {
    gap: 1.5rem;
  }

  .timeline-number {
    display: none;
  }

  .details-date-time {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-dock-item {
    padding: 8px 12px;
  }
  
  .side-nav {
    display: none;
  }
}

/* ─── Tablet (481px – 768px) ──────────────────────────── */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-lily-left {
    width: 220px;
  }
  
  .hero-lily-right {
    width: 180px;
  }
  
  .side-nav {
    display: none;
  }
}

/* ─── Desktop (> 768px) ──────────────────────────────── */
@media (min-width: 769px) {
  .program-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  
  .timeline {
    padding-left: 80px;
  }
  
  .timeline::before {
    left: 36px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }

  .timeline-item-icon {
    left: -62px;
    width: 44px;
    height: 44px;
  }

  .timeline-item-icon span {
    font-size: 1rem;
  }
}

/* ─── Large Desktop (> 1200px) ───────────────────────── */
@media (min-width: 1200px) {
  .hero-lily-left {
    width: 420px;
  }
  
  .hero-lily-right {
    width: 350px;
  }
  
  .details-lily {
    width: 380px;
  }
}


/* ═══════════════════════════════════════════════════════
   LOADING STATE
   ═══════════════════════════════════════════════════════ */

.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-text {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text-accent);
  animation: loaderFade 1.5s ease-in-out infinite;
}

@keyframes loaderFade {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}


/* ═══════════════════════════════════════════════════════
   UTILITY & ANIMATIONS
   ═══════════════════════════════════════════════════════ */

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

.text-script {
  font-family: var(--font-script);
}

/* Floating animation for decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Subtle shimmer for gold text */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--text-accent) 0%,
    #E8D5A8 40%,
    var(--text-accent) 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ─── Print Styles ───────────────────────────────────── */
@media print {
  .nav-dock,
  .side-nav,
  .scroll-indicator,
  .page-loader,
  .modal-overlay {
    display: none !important;
  }

  body {
    background: white;
    color: #333;
  }

  .hero,
  .details-section,
  .program-section,
  .footer-section {
    background: white;
    color: #333;
  }
}


