/* =========================================================
   FALL FEST 2026 — Redesign
   Dark navy · flame orange · cream
   ========================================================= */

:root {
  --primary: #ff6b35;
  --primary-soft: #ff8b5e;
  --primary-glow: rgba(255, 107, 53, 0.35);
  --cream: #f5e9d2;
  --cream-muted: rgba(245, 233, 210, 0.65);
  --cream-faint: rgba(245, 233, 210, 0.12);
  --dark: #0a1520;
  --navy: #0d1b2a;
  --card: #122339;
  --card-hover: #18304a;
  --green: #4ade80;
  --text: #f3ead9;
  --muted: rgba(243, 234, 217, 0.62);
  --line: rgba(245, 233, 210, 0.1);
  --glass: rgba(18, 35, 57, 0.72);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.55);
  --font: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Outfit", "Poppins", system-ui, sans-serif;
  --nav-h: 60px;
  --age-h: 28px;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space: 1rem;
  --touch: 48px;
  --cta-h: 0px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--age-h) + var(--safe-t) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  padding-left: var(--safe-l);
  padding-right: var(--safe-r);
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: var(--primary);
  color: #000;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary), #c44a1f);
  border-radius: 8px;
}

/* ---------- Layout (mobile-first) ---------- */
.container {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 3.25rem 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-head .section-lead {
  margin-inline: auto;
  margin-bottom: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--touch);
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #e85a28);
  color: #0a0a0a;
  box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 107, 53, 0.5);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--cream-faint);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 107, 53, 0.08);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #000;
}

.btn-lg {
  padding: 1.05rem 2rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Age banner ---------- */
.age-banner {
  background: linear-gradient(90deg, #1a0a05, #2a1208, #1a0a05);
  border-bottom: 1px solid rgba(255, 107, 53, 0.35);
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-soft);
  padding: 0.4rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--age-h);
  padding-top: max(0.35rem, var(--safe-t));
  height: calc(var(--age-h) + var(--safe-t));
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.age-banner-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}

.age-banner-track span {
  margin-right: 3rem;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: calc(var(--age-h) + var(--safe-t));
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
  padding-left: var(--safe-l);
  padding-right: var(--safe-r);
}

.navbar.scrolled {
  background: rgba(10, 21, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 1.25rem, var(--container));
  gap: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 1002;
  min-width: 0;
  flex: 1;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  min-width: 0;
}

.logo-text span {
  color: var(--primary);
}

.logo-text .logo-event {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}

.logo-text .logo-event span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  /* Drawer styles applied in mobile-first block below */
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta {
  margin-left: 0.5rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: var(--touch);
  min-height: var(--touch);
  padding: 12px;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

/* Mobile menu backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop.open {
  display: block;
  opacity: 1;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--primary);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--primary);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + var(--age-h) + var(--safe-t) + 1.75rem) 0 calc(5.5rem + var(--safe-b));
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 21, 32, 0.55) 0%, rgba(10, 21, 32, 0.88) 70%, var(--dark) 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 53, 0.18), transparent 60%),
    url("https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?q=80&w=1800&auto=format&fit=crop")
      center / cover no-repeat;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  background: var(--primary);
  top: 10%;
  left: -8%;
  animation: floatOrb 14s ease-in-out infinite;
}

.hero-glow-2 {
  background: #f5c16c;
  bottom: 5%;
  right: -10%;
  opacity: 0.12;
  animation: floatOrb 18s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -25px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  width: 100%;
  padding-inline: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.35);
  color: var(--primary-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 1.6s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 11vw, 5.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
  word-break: break-word;
}

.hero h1 .accent {
  color: var(--primary);
  text-shadow: 0 0 40px var(--primary-glow);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cream-muted);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  margin: 1.15rem 0 1.5rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-meta span,
.hero-meta a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta a {
  color: var(--cream);
  transition: color 0.2s;
}

.hero-meta a:hover {
  color: var(--primary);
}

.hero-meta i {
  color: var(--primary);
}

/* Countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: min(100%, 360px);
  margin-inline: auto;
}

.cd-item {
  background: rgba(18, 35, 57, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.25rem;
  backdrop-filter: blur(10px);
  min-width: 0;
}

.cd-num {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 6vw, 2.1rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cd-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.hero-actions .btn {
  width: 100%;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bounce 2.2s ease infinite;
}

.scroll-hint i {
  font-size: 0.9rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ---------- Story / About ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 21, 32, 0.7), transparent 50%);
}

.story-chip {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  background: rgba(10, 21, 32, 0.8);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

.story-chip strong {
  color: var(--primary);
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.story-body p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 0.75rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.stat span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Experiences ---------- */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.exp-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.35rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.exp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.exp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.35);
  background: var(--card-hover);
}

.exp-card:hover::before {
  opacity: 1;
}

.exp-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 107, 53, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}

.exp-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.exp-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ---------- Lineup ---------- */
/* Headliner üstte tam genişlik; altta 5 sanatçı (otomatik sarmalama) */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.artist-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.55);
  transition:
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.artist-card:hover {
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow:
    0 18px 40px -14px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 107, 53, 0.12);
  transform: translateY(-3px);
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

/* Geniş yazı-logoları (ör. Seyrek): kırpmak yerine tamamını göster */
.artist-card img.logo-fit {
  object-fit: contain;
  background: #fff;
  padding: 1.75rem;
}

.artist-card:hover img {
  transform: scale(1.06);
}

/* Ana sahne / headliner */
.artist-card.featured {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  min-height: 180px;
  border-color: rgba(255, 107, 53, 0.28);
  box-shadow:
    0 16px 48px -18px rgba(0, 0, 0, 0.55),
    0 0 40px -12px rgba(255, 107, 53, 0.22);
}

.artist-card.featured:hover {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow:
    0 22px 52px -14px rgba(0, 0, 0, 0.6),
    0 0 48px -8px rgba(255, 107, 53, 0.3);
}

.artist-card.featured img {
  object-position: center 22%;
}

.artist-card.placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(255, 107, 53, 0.22), transparent 70%),
    radial-gradient(circle at 80% 20%, rgba(255, 139, 94, 0.08), transparent 45%),
    linear-gradient(165deg, #152a42 0%, var(--card) 45%, #0e1c2e 100%);
}

.artist-placeholder-inner {
  text-align: center;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.artist-card.placeholder .ph-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--primary);
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.35);
  margin-bottom: 0.65rem;
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.2);
}

.artist-card.featured .artist-name {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  letter-spacing: -0.02em;
}

.artist-card.featured .artist-role {
  font-size: 0.72rem;
  margin-bottom: 0.35rem;
}

.artist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}

.artist-hint {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 22ch;
  line-height: 1.4;
}

.artist-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.75rem 1.15rem 1.15rem;
  background: linear-gradient(
    to top,
    rgba(10, 21, 32, 0.96) 0%,
    rgba(10, 21, 32, 0.55) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.artist-role {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.2;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--line);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 53, 0);
  transition: background 0.3s;
}

.gallery-item:hover::after {
  background: rgba(255, 107, 53, 0.12);
}

.gallery-cta {
  text-align: center;
  margin-top: 1.75rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 10, 16, 0.92);
  display: none;
  place-items: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(92vw, 1000px);
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: var(--primary);
  color: #000;
}

/* ---------- Tickets ---------- */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.ticket-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.ticket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.3);
}

.ticket-card.featured {
  border-color: rgba(255, 107, 53, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 107, 53, 0.1), transparent 40%),
    var(--card);
  box-shadow: 0 20px 50px -20px var(--primary-glow);
  transform: scale(1.03);
}

.ticket-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.ticket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #e85a28);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.ticket-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-align: center;
}

.ticket-price {
  text-align: center;
  margin-bottom: 1.35rem;
}

.ticket-price .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: var(--cream);
}

.ticket-price .currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 0.15rem;
}

.ticket-price .note {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.ticket-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--cream-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}

.ticket-features li:last-child {
  border-bottom: none;
}

.ticket-features i {
  color: var(--green);
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

.ticket-features .highlight {
  color: var(--cream);
  font-weight: 600;
}

/* ---------- Ambassador / CTA strips ---------- */
.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
}

.cta-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background:
    radial-gradient(ellipse at right, rgba(255, 107, 53, 0.12), transparent 55%),
    var(--card);
}

.cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cta-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.cta-card.wide p {
  margin-bottom: 0;
}

.perk-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.perk {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}

.perk i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.perk strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}

.perk span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- Rules accordion ---------- */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.rule-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.rule-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-weight: 650;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.rule-btn:hover {
  background: rgba(255, 255, 255, 0.03);
}

.rule-btn i.chevron {
  color: var(--primary);
  transition: transform 0.3s var(--ease);
  font-size: 0.85rem;
}

.rule-item.open .rule-btn i.chevron {
  transform: rotate(180deg);
}

.rule-btn .rule-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rule-btn .rule-title i {
  color: var(--primary);
  width: 1.1rem;
}

.rule-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.rule-item.open .rule-panel {
  max-height: 480px;
}

.rule-panel ul {
  padding: 0 1.2rem 1.15rem 2.9rem;
}

.rule-panel li {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 0.3rem 0;
  list-style: disc;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 6.5rem;
  background: #070f17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.85rem 0 1.25rem;
  max-width: 28rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--cream-muted);
  transition: 0.25s;
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 107, 53, 0.1);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
  padding: 0.55rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #000;
  color: #fff;
  transition: 0.25s;
}

.app-badge:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.app-badge i {
  font-size: 1.7rem;
  line-height: 1;
}

.app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.app-badge-text small {
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.app-badge-text strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.footer h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-legal {
  max-width: 36rem;
  line-height: 1.55;
}

/* ---------- Mobile sticky CTA (primary conversion) ---------- */
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.65rem 0.85rem calc(0.65rem + var(--safe-b));
  padding-left: max(0.85rem, var(--safe-l));
  padding-right: max(0.85rem, var(--safe-r));
  background: rgba(10, 21, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  gap: 0.65rem;
  align-items: center;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
}

.mobile-cta .price-hint {
  flex: 1;
  min-width: 0;
}

.mobile-cta .price-hint small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
}

.mobile-cta .price-hint strong {
  font-size: 0.95rem;
  color: var(--cream);
  white-space: nowrap;
}

.mobile-cta .btn {
  min-height: 46px;
  padding-inline: 1.25rem;
  flex-shrink: 0;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: max(0.85rem, var(--safe-r));
  bottom: calc(4.75rem + var(--safe-b));
  z-index: 950;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.wa-float:active {
  transform: scale(0.94);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   MOBILE-FIRST layout defaults (phones)
   Desktop enhancements via min-width below
   ========================================================= */

/* Hamburger always on by default (mobile primary) */
.menu-toggle {
  display: flex;
}

.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 320px);
  background: rgba(10, 21, 32, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0.25rem;
  padding: calc(var(--safe-t) + 5rem) 1.25rem calc(2rem + var(--safe-b));
  transform: translateX(110%);
  transition: transform 0.35s var(--ease);
  border-left: 1px solid var(--line);
  z-index: 1050;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-links.open {
  transform: translateX(0);
}

.nav-links a {
  font-size: 1.05rem;
  min-height: var(--touch);
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
}

.nav-cta {
  margin-left: 0 !important;
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

/* Grids → single column on mobile */
.story-grid,
.exp-grid,
.rules-grid,
.cta-band,
.footer-grid,
.tickets-grid {
  grid-template-columns: 1fr;
}

.story-grid {
  gap: 1.5rem;
}

.story-visual {
  max-height: 240px;
  aspect-ratio: 16/10;
}

.section-head {
  margin-bottom: 1.75rem;
  text-align: left;
}

.section-head .section-lead {
  margin-inline: 0;
}

.section-title {
  font-size: clamp(1.55rem, 6.5vw, 2.75rem);
}

.section-lead {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Lineup: mobilde 2 sütun + headliner tam genişlik (yukarıdaki base stiller) */

/* Gallery mobile */
.gallery-grid {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 110px;
  gap: 0.5rem;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 1;
}

/* Tickets */
.tickets-grid {
  max-width: none;
  gap: 1rem;
}

.ticket-card {
  padding: 1.35rem 1.15rem;
}

.ticket-card.featured {
  transform: none;
  order: -1;
}

.ticket-card.featured:hover {
  transform: translateY(-4px);
}

.ticket-price .amount {
  font-size: 2.2rem;
}

/* Stats / perks */
.stats {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.stat {
  padding: 0.75rem 0.4rem;
}

.stat strong {
  font-size: 1.1rem;
}

.stat span {
  font-size: 0.65rem;
}

.perk-list {
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.perk {
  padding: 0.75rem 0.5rem;
}

.cta-card {
  padding: 1.35rem;
}

.cta-card.wide {
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cta-card.wide .btn {
  width: 100%;
}

/* Rules */
.rule-btn {
  min-height: var(--touch);
  padding: 1rem;
  font-size: 0.9rem;
}

.rule-panel ul {
  padding: 0 1rem 1rem 1.75rem;
}

.rule-panel li {
  font-size: 0.86rem;
  line-height: 1.5;
}

/* Footer space for sticky CTA */
.footer {
  padding: 2.5rem 0 calc(6.5rem + var(--safe-b));
}

.footer-grid {
  gap: 1.5rem;
}

.scroll-hint {
  display: none;
}

/* Hover disable on true touch devices */
@media (hover: none) {
  .exp-card:hover,
  .ticket-card:hover,
  .artist-card:hover,
  .artist-card:hover img,
  .gallery-item:hover img {
    transform: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

/* ---------- Tablet+ ---------- */
@media (min-width: 640px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .hero-actions {
    flex-direction: row;
    max-width: none;
    width: auto;
  }

  .hero-actions .btn {
    width: auto;
  }

  .countdown {
    width: auto;
    grid-template-columns: repeat(4, minmax(72px, 100px));
    gap: 0.75rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-head {
    text-align: center;
  }

  .section-head .section-lead {
    margin-inline: auto;
  }

  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lineup-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .artist-card.featured {
    aspect-ratio: 2.4 / 1;
    min-height: 200px;
  }

  .artist-card.placeholder .ph-icon {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.55rem;
  }

  .gallery-grid {
    grid-auto-rows: 140px;
  }
}

/* ---------- Desktop: hide mobile chrome, full nav ---------- */
@media (min-width: 900px) {
  :root {
    --nav-h: 72px;
    --radius: 18px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-backdrop {
    display: none !important;
  }

  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    transform: none;
    border: none;
    overflow: visible;
  }

  .nav-links a {
    font-size: 0.78rem;
    min-height: auto;
    padding: 0.5rem 0.75rem;
  }

  .nav-cta {
    margin-left: 0.5rem !important;
    margin-top: 0;
    width: auto;
  }

  .mobile-cta {
    display: none;
  }

  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 56px;
    height: 56px;
  }

  .footer {
    padding: 3.5rem 0 2.5rem;
  }

  .logo-text {
    font-size: 0.92rem;
  }

  .logo-text .logo-event {
    font-size: 0.68rem;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .hero-meta {
    font-size: 0.95rem;
    gap: 0.75rem 1.5rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .section {
    padding: 5.5rem 0;
  }

  .story-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
  }

  .story-visual {
    max-height: none;
    aspect-ratio: 4/3;
  }

  .exp-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .lineup-grid {
    /* Headliner + 5: alt sıra 5 eşit sütun */
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .artist-card.featured {
    aspect-ratio: 2.6 / 1;
    min-height: 220px;
  }

  .lineup-grid .artist-card:not(.featured) .artist-name {
    font-size: 1.05rem;
  }

  .artist-overlay {
    padding: 3rem 1.25rem 1.25rem;
  }

  .artist-name {
    font-size: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 0.75rem;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

  .tickets-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .ticket-card.featured {
    transform: scale(1.03);
  }

  .rules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    grid-template-columns: 1.2fr 1fr;
  }

  .cta-card.wide {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cta-card.wide .btn {
    width: auto;
  }

  .perk-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
  }

  .scroll-hint {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(100% - 2.5rem, var(--container));
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .logo-text {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .cd-label {
    font-size: 0.52rem;
  }

  .mobile-cta .price-hint strong {
    font-size: 0.85rem;
  }
}

/* Landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + var(--age-h) + var(--safe-t) + 1rem);
    padding-bottom: 5rem;
  }

  .countdown {
    margin-bottom: 0.75rem;
  }

  .hero-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   SUBPAGES — forms, legal, gallery, checkout
   ========================================================= */

body.subpage {
  padding-top: calc(var(--age-h) + var(--safe-t) + var(--nav-h));
}

body.subpage .navbar {
  background: rgba(10, 21, 32, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

body.subpage .footer {
  padding-bottom: calc(2rem + var(--safe-b));
}

body.subpage .mobile-cta,
body.subpage .wa-float {
  display: none !important;
}

.page-hero {
  padding: 1.5rem 0 1rem;
  text-align: center;
}

.page-hero .section-label {
  justify-content: center;
}

.page-hero .section-label::before {
  display: none;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.page-hero h1 span {
  color: var(--primary);
}

.page-hero p {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
}

.page-wrap {
  padding: 0 0 4rem;
}

.card-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}

.card-panel.narrow {
  max-width: 720px;
  margin-inline: auto;
}

.card-panel.medium {
  max-width: 880px;
  margin-inline: auto;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: inherit;
  /* 16px prevents iOS auto-zoom on focus */
  font-size: 16px;
  min-height: var(--touch);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field select {
  appearance: none;
  background-color: var(--navy);
  color: var(--primary);
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23ff6b35'%3E%3Cpath d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Native <option> listesi Windows'ta select rengini miras alır;
   açık yazı + sistem gri zemini okunmaz hale getirir. */
.form-field select option {
  background-color: var(--navy);
  color: var(--primary);
}

/* Ödeme sayfası biniş noktası — native popup stillenemez tarayıcılarda
   marka renklerini garanti eden özel liste */
.pickup-picker {
  position: relative;
}

.pickup-picker-btn {
  width: 100%;
  min-height: var(--touch);
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background-color: var(--navy);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23ff6b35'%3E%3Cpath d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  color: var(--primary);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pickup-picker-btn:focus,
.pickup-picker.is-open .pickup-picker-btn {
  border-color: rgba(255, 107, 53, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.pickup-picker-btn.is-placeholder {
  font-weight: 500;
  color: var(--primary-soft);
}

.pickup-picker-list {
  display: none;
  position: static;
  margin: 6px 0 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--navy);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: var(--radius-sm);
}

.pickup-picker.is-open .pickup-picker-list {
  display: block;
}

.pickup-picker-list li {
  padding: 0.75rem 1rem;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.pickup-picker-list li:hover,
.pickup-picker-list li:focus {
  background: var(--card);
  outline: none;
}

.pickup-picker-list li[aria-selected="true"] {
  background: var(--card-hover);
}

.pickup-picker-list li.is-placeholder {
  font-weight: 500;
  color: var(--primary-soft);
}

.form-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.show {
  display: block;
}

.form-success i {
  font-size: 3rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.form-success h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Legal prose */
.legal h2,
.legal h3 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--primary);
}

.legal h2:first-child,
.legal h3:first-of-type {
  margin-top: 0.5rem;
}

.legal p,
.legal li {
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.legal ul {
  margin: 0 0 1rem 1.1rem;
  list-style: disc;
}

.legal li {
  margin-bottom: 0.4rem;
}

.legal strong {
  color: var(--cream);
}

.legal .meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}

.legal .warn {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
}

.legal .warn strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.35rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}

.legal th,
.legal td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
  text-align: left;
  color: var(--cream-muted);
}

.legal th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  font-weight: 600;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-card i {
  color: var(--primary);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-card a:hover {
  color: var(--primary);
}

/* About features */
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Gallery page */
.gallery-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.gallery-page-grid .gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}

.gallery-page-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.gallery-page-grid .gallery-item:hover img {
  transform: scale(1.06);
}

/* Ticket select page */
.ticket-pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Toplu bilet / indirimli alım WhatsApp bandı */
.bulk-ticket-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(37, 211, 102, 0.35);
  background:
    linear-gradient(135deg, rgba(37, 211, 102, 0.12), transparent 55%),
    var(--card);
  box-shadow: 0 12px 32px -18px rgba(0, 0, 0, 0.45);
}

.bulk-ticket-banner-text {
  flex: 1 1 16rem;
  min-width: 0;
}

.bulk-ticket-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a1520;
  background: #25d366;
}

.bulk-ticket-banner-text p {
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bulk-ticket-banner-text strong {
  color: var(--cream);
  font-weight: 700;
}

.bulk-ticket-wa {
  flex-shrink: 0;
  white-space: nowrap;
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #0a1520 !important;
  box-shadow: 0 8px 22px -8px rgba(37, 211, 102, 0.55);
}

.bulk-ticket-wa:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.bulk-ticket-wa i {
  margin-right: 0.35rem;
}

/* Konaklamalı paketler — 4 seçenek tek kart içinde, satış WhatsApp üzerinden */
.camp-card {
  margin-top: 1.5rem;
  background:
    linear-gradient(180deg, rgba(46, 139, 87, 0.12), transparent 45%),
    var(--card);
  border: 1px solid rgba(46, 139, 87, 0.4);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem;
}

.camp-head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.camp-eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6ee7a0;
  margin-bottom: 0.4rem;
}

.camp-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.15;
}

.camp-title span {
  color: var(--primary);
}

.camp-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.4rem;
  max-width: 46ch;
}

.camp-price {
  text-align: right;
  flex-shrink: 0;
}

.camp-range {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.camp-note {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.camp-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.camp-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  align-items: center;
  transition: border-color 0.25s, background 0.25s;
}

.camp-option:hover {
  border-color: rgba(46, 139, 87, 0.45);
  background: rgba(46, 139, 87, 0.06);
}

.camp-icon {
  grid-row: 1 / 3;
  font-size: 1.5rem;
  line-height: 1;
}

.camp-option strong {
  font-size: 0.95rem;
  color: var(--text);
}

.camp-option small {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.4;
}

.camp-perks {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.camp-perks-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 0.6rem;
}

.camp-cta {
  margin-top: 1.25rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-color: #25d366;
  color: #04220f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.camp-cta:hover {
  background: linear-gradient(135deg, #2ee576, #14a08e);
}

.camp-foot {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

@media (min-width: 640px) {
  .camp-options {
    grid-template-columns: 1fr 1fr;
  }
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}

.ticket-options {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.ticket-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: rgba(0, 0, 0, 0.15);
}

.ticket-option:hover,
.ticket-option.active {
  border-color: rgba(255, 107, 53, 0.55);
  background: rgba(255, 107, 53, 0.08);
}

.ticket-option input {
  accent-color: var(--primary);
}

.ticket-option .to-name {
  font-weight: 700;
  flex: 1;
}

.ticket-option .to-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
}

.summary-box {
  position: static;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.summary-row strong {
  color: var(--cream);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.summary-total span:last-child {
  color: var(--primary);
}

/* Onay satırları: mobilde parmakla rahat işaretlenebilmesi için
   kutu büyütülür ve tüm satır dokunma hedefi yapılır. */
.check-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0.35rem 0;
  padding: 0.6rem 0.15rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}

.check-row:active {
  background: rgba(255, 107, 53, 0.07);
}

.check-row input {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.05rem;
  accent-color: var(--primary);
}

.check-row a {
  color: var(--primary);
  text-decoration: underline;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
}

.secure-badge i {
  color: var(--green);
}

/* ---------- Mobil sabit ödeme çubuğu ----------
   Ziyaretçilerin ~%90'ı mobil. Ödeme butonu form sonunda kaldığı için
   ekranın altına sabit bir özet + buton konur; masaüstünde gizlidir. */
.pay-bar {
  display: none;
}

@media (max-width: 899px) {
  .pay-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 940;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem calc(0.65rem + var(--safe-b));
    padding-left: max(0.85rem, var(--safe-l));
    padding-right: max(0.85rem, var(--safe-r));
    background: rgba(10, 21, 32, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.4);
  }

  .pay-bar-info {
    flex: 1;
    min-width: 0;
  }

  .pay-bar-info small {
    display: block;
    font-size: 0.68rem;
    color: var(--muted);
  }

  .pay-bar-info strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--primary);
    white-space: nowrap;
  }

  .pay-bar .btn {
    min-height: 48px;
    padding-inline: 1.35rem;
    flex-shrink: 0;
  }

  /* Sabit çubuk sayfanın son içeriğini kapatmasın — dolgu en alttaki
     elemana (footer) verilir, aksi halde footer çubuğun arkasında kalır. */
  body.has-pay-bar .footer {
    padding-bottom: calc(5.5rem + var(--safe-b));
  }

  /* Masaüstü özet kutusundaki buton mobilde gereksiz tekrar olur */
  body.has-pay-bar .summary-box .btn-block {
    display: none;
  }
}

/* Song search */
.song-search {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: stretch;
}

.song-search input {
  flex: 1;
  min-width: 0;
  min-height: var(--touch);
  font-size: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--cream);
  padding: 0.75rem 1rem;
  outline: none;
}

.song-search .btn {
  flex-shrink: 0;
  min-width: var(--touch);
  padding-inline: 1rem;
}

.track-item {
  min-height: var(--touch);
  width: 100%;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.track-list {
  display: grid;
  gap: 0.55rem;
  max-height: 360px;
  overflow-y: auto;
}

.track-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.track-item:hover {
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 107, 53, 0.35);
}

.track-item img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.track-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.track-item p {
  font-size: 0.8rem;
  color: var(--muted);
}

.selected-song {
  display: none;
  text-align: center;
}

.selected-song.show {
  display: block;
}

.selected-song img {
  width: 140px;
  height: 140px;
  border-radius: var(--radius);
  margin: 0 auto 1rem;
  object-fit: cover;
}

/* Nav active for multi-page */
.nav-links a[aria-current="page"] {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
}

/* Subpage mobile defaults */
.checkout-layout,
.form-grid,
.contact-grid,
.ticket-pick-grid,
.about-features {
  grid-template-columns: 1fr;
}

.gallery-page-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.summary-box {
  position: static;
}

.ticket-option {
  min-height: var(--touch);
}

.card-panel {
  padding: 1.15rem;
}

.page-wrap {
  padding-bottom: calc(2.5rem + var(--safe-b));
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid,
  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .ticket-pick-grid {
    grid-template-columns: 1fr;
  }

  .card-panel {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (min-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .ticket-pick-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .summary-box {
    position: sticky;
    top: calc(var(--nav-h) + var(--age-h) + var(--safe-t) + 16px);
  }
}

@media (max-width: 380px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }
}

.legal a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--primary-soft); }

/* Fix odeme local notice + sticky summary on mobile */
#localNotice {
  font-size: 0.9rem;
}

/* Ensure no accidental horizontal scroll from full-bleed effects */
.hero-bg,
.hero-glow,
.age-banner-track {
  max-width: none;
}
