/* ============================================================
   Düğün Davetiyesi – style.css
   Cansu & Enes | 22 Ağustos 2026
   ============================================================ */

/* ── CSS Değişkenleri ─────────────────────────────────────── */
:root {
  /* Açık mavi/krem ton paleti – referans reel hissi */
  --color-bg:       #dce8f0;   /* Açık mavi arka plan */
  --color-paper:    #f5f0e8;   /* Zarf kağıdı / krem */
  --color-paper2:   #faf7f2;   /* Daha açık krem */
  --color-blue:     #8aaec4;   /* Yumuşak mavi vurgu */
  --color-blue-deep:#4a7a9b;   /* Koyu mavi yazı */
  --color-gold:     #b8935a;   /* Altın/bakır detay */
  --color-gold-lt:  #d4b483;   /* Açık altın */
  --color-text:     #2e3e4e;   /* Ana koyu metin */
  --color-muted:    #6a7e8e;   /* İkincil metin */
  --color-white:    #ffffff;
  --shadow-soft:    0 8px 40px rgba(100,140,170,0.18);
  --shadow-card:    0 4px 24px rgba(80,110,140,0.14);

  /* Fontlar */
  --font-script: 'Great Vibes', cursive;
  --font-serif:  'Cormorant Garamond', 'Lora', Georgia, serif;
  --font-body:   'Lora', 'Cormorant Garamond', Georgia, serif;

  /* Animasyon */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100dvh;
  overflow-x: hidden;
  /* Safe area (iPhone çentik) */
  padding-top:    env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* ============================================================
   BÖLÜM 1 — TAM EKRAN ZARF
   Gerçek zarf geometrisi: 4 clip-path üçgen yüzey.
   Sol / Sağ / Alt = sabit. Üst = açılan kapak (flap).
   ============================================================ */

/* ── Ana kap ────────────────────────────────────────────── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  /* Zarf kağıdı zemini – açık krem/beyaz */
  background: #f0f4f8;
}

.intro:focus-visible {
  outline: 3px solid var(--color-blue-deep);
  outline-offset: -3px;
}

/* ── Zarf yüzeyleri (clip-path üçgenler) ─────────────────── */
/*
  Ortak mantık: her yüzey tam ekran (inset:0), position:absolute.
  clip-path ile sadece kendi üçgen alanı görünür.
  Renk farkı = derinlik hissi (üst daha açık, alt daha koyu).
  Merkez nokta: 50% 50%
*/
.env-face {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* SOL üçgen: sol-üst(0,0) → sol-alt(0,100%) → merkez(50%,50%) */
.env-face--left {
  background: linear-gradient(to right,
    #bcd4e8 0%,
    #cce0ee 60%,
    #d8eaf5 100%);
  clip-path: polygon(0% 0%, 0% 100%, 50% 50%);
}

/* SAĞ üçgen: sağ-üst(100%,0) → sağ-alt(100%,100%) → merkez */
.env-face--right {
  background: linear-gradient(to left,
    #b8d0e4 0%,
    #caddec 60%,
    #d8eaf5 100%);
  clip-path: polygon(100% 0%, 100% 100%, 50% 50%);
}

/* ALT üçgen: sol-alt(0,100%) → sağ-alt(100%,100%) → merkez */
.env-face--bottom {
  background: linear-gradient(to top,
    #b0cce0 0%,
    #c5d9eb 55%,
    #d8eaf5 100%);
  clip-path: polygon(0% 100%, 100% 100%, 50% 50%);
}

/* ÜST FLAP: sol-üst(0,0) → sağ-üst(100%,0) → merkez(50%,50%) */
/* En açık ton – ışık yukarıdan geliyor */
.env-face--top {
  background: linear-gradient(to bottom,
    #e4f0f8 0%,
    #d4e8f4 45%,
    #c8dff0 100%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 50%);
  transform-origin: top center;
  /* 3D açılma için perspektif gerekiyor – parent'a atıyoruz */
  transition: transform 0.75s cubic-bezier(0.35, 0.1, 0.2, 1);
  z-index: 8;
}

/* ── Kenar çizgileri SVG ─────────────────────────────────── */
/* 4 yüzeyin birleşim kenarlarını vurgular */
.env-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9;
}

/* ── Açılış animasyonu ───────────────────────────────────── */
/* Perspektif için intro'ya ekliyoruz */
.intro { perspective: 1200px; }

/* Flap açılıyor */
.intro.is-opening .env-face--top {
  transform: rotateX(-185deg);
  transition: transform 0.75s cubic-bezier(0.35, 0.1, 0.2, 1) 0.1s;
}

/* Sol / sağ / alt yüzeyler hafif dışa kayar */
.intro.is-opening .env-face--left {
  transform: translateX(-6px);
  transition: transform 0.5s ease 0.15s;
}
.intro.is-opening .env-face--right {
  transform: translateX(6px);
  transition: transform 0.5s ease 0.15s;
}
.intro.is-opening .env-face--bottom {
  transform: translateY(6px);
  transition: transform 0.5s ease 0.15s;
}

/* ── Beyaz parlama geçişi ────────────────────────────────── */
.intro__burst {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%,
    rgba(255,255,255,1) 0%,
    rgba(230,243,252,0.9) 45%,
    rgba(210,232,248,0.0) 100%);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transform: scale(0.3);
}

.intro.is-bursting .intro__burst {
  animation: burstOpen 0.65s var(--ease-out) forwards;
}

@keyframes burstOpen {
  0%   { opacity: 0; transform: scale(0.3); }
  40%  { opacity: 1; transform: scale(1.0); }
  100% { opacity: 1; transform: scale(1.3); }
}

/* ── Ekran kapanışı ──────────────────────────────────────── */
.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ── Merkez içerik ───────────────────────────────────────── */
.intro__center {
  position: relative;
  z-index: 15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 3.5vh, 26px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  /* Hafif yukarı kaydır – görsel ağırlık dengesi */
  transform: translateY(-2vh);
}

.intro.is-opening .intro__center {
  opacity: 0;
  transform: translateY(-2vh) scale(0.92);
}

/* ── Mühür ──────────────────────────────────────────────── */
.intro__seal {
  position: relative;
  width: clamp(90px, 23vw, 120px);
  height: clamp(90px, 23vw, 120px);
  filter:
    drop-shadow(0 5px 18px rgba(80,130,170,0.28))
    drop-shadow(0 1px 4px rgba(80,130,170,0.14));
  transition: transform 0.22s var(--ease-spring), filter 0.22s ease;
}

.intro:not(.is-opening) .intro__seal:hover {
  transform: scale(1.05);
  filter:
    drop-shadow(0 8px 24px rgba(80,130,170,0.35))
    drop-shadow(0 2px 6px rgba(80,130,170,0.2));
}

.intro__seal-svg { width: 100%; height: 100%; display: block; }

.intro.is-opening .intro__seal {
  animation: sealDissolve 0.6s var(--ease-out) forwards;
}

@keyframes sealDissolve {
  0%   { transform: scale(1);    opacity: 1; }
  20%  { transform: scale(1.14); opacity: 1; }
  100% { transform: scale(0.55); opacity: 0; }
}

/* ── Işık halkası ────────────────────────────────────────── */
.intro__seal-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(130,175,210,0.0);
  pointer-events: none;
}

.intro.is-opening .intro__seal-ring {
  animation: ringPulse 0.55s ease-out forwards;
}

@keyframes ringPulse {
  0%   { transform: scale(0.8);  border-color: rgba(130,175,210,0.75); opacity: 1; }
  100% { transform: scale(1.6);  border-color: rgba(130,175,210,0.0);  opacity: 0; }
}

/* ── Tagline ─────────────────────────────────────────────── */
.intro__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.08rem, 4.5vw, 1.48rem);
  color: #3d6880;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.5;
  max-width: 26ch;
  padding: 0 20px;
}

/* ── Hint ────────────────────────────────────────────────── */
.intro__hint {
  position: absolute;
  bottom: max(clamp(22px, 5vh, 44px), calc(env(safe-area-inset-bottom) + 22px));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: var(--font-serif);
  font-size: clamp(0.56rem, 1.7vw, 0.66rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(60,100,130,0.6);
  white-space: nowrap;
  pointer-events: none;
  animation: hintFloat 2.8s ease-in-out infinite;
}

.intro__hint svg {
  width: 13px; height: 13px;
  color: var(--color-blue);
  animation: hintArrow 2.8s ease-in-out infinite;
}

@keyframes hintFloat {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.88; }
}

@keyframes hintArrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

.intro.is-opening .intro__hint {
  opacity: 0;
  transition: opacity 0.18s ease;
}

/* ============================================================
   BÖLÜM 2 — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  /* Soft mavi/krem degradeli arka plan */
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%,
      rgba(255,255,255,0.55) 0%,
      transparent 70%),
    linear-gradient(170deg, #dce8f0 0%, #e8f0f7 40%, #f0e8e0 100%);

  padding: clamp(60px, 12vh, 100px) clamp(20px, 6vw, 60px);
  padding-top:    max(clamp(60px, 12vh, 100px), calc(env(safe-area-inset-top) + 60px));
  padding-bottom: max(clamp(60px, 12vh, 100px), calc(env(safe-area-inset-bottom) + 60px));
}

/* ── Hero arka plan ─────────────────────────────────────── */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── SVG Kuşlar ─────────────────────────────────────────── */
.birds {
  position: absolute;
  top: 12%;
  left: -80px;
  width: min(600px, 90vw);
  height: auto;
  opacity: 0;
}

.bird { animation: birdFly 18s linear infinite; }
.bird--1 { transform: translate(-80px, 0px); animation-delay: 0s;    animation-duration: 18s; }
.bird--2 { transform: translate(-80px, 18px); animation-delay: 3s;   animation-duration: 22s; }
.bird--3 { transform: translate(-80px, -12px); animation-delay: 6s;  animation-duration: 26s; }

@keyframes birdFly {
  0%   { transform: translate(-80px, var(--by, 0px)); opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translate(calc(100vw + 80px), var(--by, 0px)); opacity: 0; }
}

/* bird fly override per bird */
.bird--1 { --by: 0px; }
.bird--2 { --by: 18px; }
.bird--3 { --by: -12px; }

/* ── Floral köşe süsleri ─────────────────────────────────── */
.floral {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease;
}
.floral--tl { top: 0;    left: 0;    width: min(200px, 40vw); }
.floral--tr { top: 0;    right: 0;   width: min(200px, 40vw); transform: scaleX(-1); }
.floral--bl { bottom: 0; left: 0;    width: min(140px, 30vw); }
.floral--br { bottom: 0; right: 0;   width: min(140px, 30vw); transform: scaleX(-1); }

/* ── Işık zincirleri ─────────────────────────────────────── */
.lights { position: absolute; inset: 0; pointer-events: none; }
.lights__string {
  position: absolute;
  top: 0; left: 50%;
  width: min(600px, 100%);
  transform: translateX(-50%);
  height: 100%;
  background-image:
    radial-gradient(circle 3px at var(--lx,10%) var(--ly,15%),
      rgba(255,220,140,0.6) 0%, transparent 100%),
    radial-gradient(circle 2.5px at var(--lx2,28%) var(--ly2,25%),
      rgba(255,220,140,0.5) 0%, transparent 100%),
    radial-gradient(circle 2px at var(--lx3,55%) var(--ly3,12%),
      rgba(255,220,140,0.55) 0%, transparent 100%),
    radial-gradient(circle 3px at var(--lx4,75%) var(--ly4,20%),
      rgba(255,220,140,0.6) 0%, transparent 100%),
    radial-gradient(circle 2px at var(--lx5,90%) var(--ly5,8%),
      rgba(255,220,140,0.4) 0%, transparent 100%);
  animation: twinkle 3s ease-in-out infinite alternate;
  opacity: 0;
}
.lights__string--1 {
  --lx:10%;  --ly:15%;  --lx2:28%; --ly2:25%;
  --lx3:55%; --ly3:12%; --lx4:75%; --ly4:20%; --lx5:90%; --ly5:8%;
}
.lights__string--2 {
  --lx:18%;  --ly:30%;  --lx2:42%; --ly2:18%;
  --lx3:65%; --ly3:28%; --lx4:82%; --ly4:10%; --lx5:95%; --ly5:22%;
  animation-delay: 1.5s;
}
@keyframes twinkle {
  0%   { opacity: 0.4; }
  100% { opacity: 0.9; }
}

/* ── Floating Yapraklar ─────────────────────────────────── */
.petals, .falling-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.falling-petals { position: fixed; z-index: 50; }

.petal {
  position: absolute;
  top: -30px;
  opacity: 0;
  animation: petalFall linear forwards;
  will-change: transform, opacity;
}
@keyframes petalFall {
  0%   { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
  8%   { opacity: 0.75; }
  92%  { opacity: 0.4; }
  100% { transform: translateY(105vh) rotate(320deg) translateX(30px); opacity: 0; }
}

/* ── Hero İçerik ────────────────────────────────────────── */
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2.5vh, 18px);
}

/* ── İsimler ─────────────────────────────────────────────── */
.hero__names {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 2.5vw, 14px);
  flex-wrap: wrap;
  line-height: 1;
}

.hero__name {
  font-family: var(--font-script);
  font-size: clamp(3.4rem, 15vw, 6.8rem);
  color: var(--color-blue-deep);
  font-weight: 400;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

.hero__amp {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 4.5vw, 2.2rem);
  color: var(--color-gold);
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out) 0.18s, transform 0.7s var(--ease-out) 0.18s;
}

/* Reveal aktif olunca */
.hero.is-revealed .hero__name,
.hero.is-revealed .hero__amp {
  opacity: 1;
  transform: translateY(0);
}
.hero.is-revealed .hero__name--bride { transition-delay: 0s;   }
.hero.is-revealed .hero__amp          { transition-delay: 0.22s; }
.hero.is-revealed .hero__name--groom  { transition-delay: 0.38s; }

/* ── Ornament çizgisi ───────────────────────────────────── */
.ornament-line {
  width: min(240px, 75vw);
  color: var(--color-blue);
  opacity: 0;
  transition: opacity 0.7s ease;
}
.ornament-line svg { width: 100%; height: auto; display: block; }
.hero.is-revealed .ornament-line { opacity: 0.6; transition-delay: 0.55s; }

.ornament-line--dark { color: var(--color-gold); }

/* ── Hero alt yazı ───────────────────────────────────────── */
.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.82rem, 2.8vw, 1rem);
  color: var(--color-muted);
  line-height: 1.9;
  max-width: 30ch;
  font-weight: 300;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease 0.65s, transform 0.7s var(--ease-out) 0.65s;
}
.hero.is-revealed .hero__sub { opacity: 1; transform: translateY(0); }

/* ── Scroll hint ────────────────────────────────────────── */
.scroll-hint {
  margin-top: clamp(8px, 2vh, 16px);
  color: var(--color-blue);
  opacity: 0;
  animation: none;
  transition: opacity 0.6s ease 1.1s;
}
.scroll-hint svg { width: 20px; height: 20px; }
.hero.is-revealed .scroll-hint {
  opacity: 0.5;
  animation: scrollBounce 2.2s ease-in-out 1.4s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0);  opacity: 0.5; }
  50%       { transform: translateY(5px); opacity: 0.8; }
}

/* ============================================================
   BÖLÜM 3 — TARİH & DAVET
   ============================================================ */
.section {
  padding: clamp(60px, 10vh, 100px) clamp(20px, 6vw, 60px);
  display: flex;
  justify-content: center;
}

.section__inner {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 5vh, 40px);
  text-align: center;
}

.section--date {
  background: var(--color-paper2);
  position: relative;
  overflow: hidden;
}

/* Hafif arka plan doku */
.section--date::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%,
      rgba(220,232,240,0.3) 0%, transparent 100%);
  pointer-events: none;
}

.section__label {
  font-family: var(--font-serif);
  font-size: clamp(0.6rem, 2vw, 0.72rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: clamp(10px, 2vh, 16px);
}

.date__day {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 6vw, 2.4rem);
  font-weight: 400;
  color: var(--color-blue-deep);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.date__time {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  color: var(--color-gold);
  margin-top: clamp(4px, 1vh, 8px);
  letter-spacing: 0.06em;
}

.date__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 2.8vw, 1.02rem);
  color: var(--color-muted);
  line-height: 2;
  max-width: 28ch;
  font-weight: 300;
  margin-top: clamp(8px, 2vh, 12px);
}

/* ============================================================
   BÖLÜM 4 — KONUM
   ============================================================ */
.section--venue {
  background: var(--color-bg);
  min-height: 50vh;
  align-items: center;
  padding-bottom: max(clamp(60px, 10vh, 100px), calc(env(safe-area-inset-bottom) + 60px));
}

.venue-card {
  background: var(--color-paper);
  border: 1px solid rgba(184,147,90,0.2);
  border-radius: 6px;
  padding: clamp(28px, 6vw, 48px) clamp(24px, 6vw, 48px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.8vh, 14px);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.venue-card__icon {
  width: clamp(36px, 9vw, 48px);
  height: auto;
  color: var(--color-gold);
  margin-bottom: 4px;
}
.venue-card__icon svg { width: 100%; height: auto; }

.venue-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 3.5vw, 1.3rem);
  font-weight: 500;
  color: var(--color-blue-deep);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.venue-card__location {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.82rem, 2.5vw, 0.95rem);
  color: var(--color-muted);
}

.venue-card__divider {
  width: 60%;
  height: 1px;
  background: rgba(184,147,90,0.22);
  margin: clamp(4px, 1vh, 8px) 0;
}

.venue-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(12px, 2.8vw, 15px) clamp(24px, 6vw, 36px);
  background: transparent;
  border: 1.5px solid var(--color-gold);
  border-radius: 40px;
  color: var(--color-gold);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 2.2vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-height: 44px;
  min-width: 44px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  margin-top: clamp(2px, 0.5vh, 6px);
}
.venue-card__btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.venue-card__btn:hover, .venue-card__btn:focus-visible {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-2px);
}
.venue-card__btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
.venue-card__btn:active { transform: translateY(0); opacity: 0.85; }

/* ============================================================
   SCROLL REVEAL — [data-reveal] elementleri
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(3px);
  transition:
    opacity  0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    filter    0.85s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-block--delayed {
  transition-delay: 0.25s !important;
}

/* ============================================================
   prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__name, .hero__amp, .hero__sub,
  .ornament-line, .scroll-hint,
  [data-reveal], .env, .env__lid, .env__seal, .env__peek,
  .env__tagline, .petal, .bird,
  .lights__string, .floral { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .hero__name, .hero__amp, .hero__sub { opacity: 1 !important; transform: none !important; }
  .ornament-line { opacity: 0.6 !important; }
  .scroll-hint { opacity: 0.5 !important; animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 320px */
@media (max-width: 340px) {
  .env { min-height: 170px; }
  .hero__name { font-size: 2.9rem; }
  .hero__amp  { font-size: 1.1rem; }
  .date__day  { font-size: 1.3rem; }
}

/* 360-430 mobil */
@media (max-width: 480px) {
  .hero__names { gap: 4px; }
  .venue-card  { padding: 24px 18px; }
}

/* 768px tablet */
@media (min-width: 768px) {
  .hero__name { font-size: clamp(5rem, 10vw, 6.5rem); }
  .floral--tl, .floral--tr { width: min(240px, 32vw); }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .env { width: 400px; height: 280px; }
  .hero { padding: 80px 80px; }
}

/* 1440px */
@media (min-width: 1440px) {
  .hero__name { font-size: 7.5rem; }
  .section { padding: 100px 80px; }
}

/* 1920px */
@media (min-width: 1920px) {
  .hero__name { font-size: 9rem; }
  .section__inner { max-width: 640px; }
}