/* ═══════════════════════════════════════════════════════════════
   NEO CLUB KEMER — Premium Nightclub Theme
   Dark luxury · Neon accents · 2026 design
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --primary: #e11d48;
  --primary-glow: rgba(225,29,72,.4);
  --secondary: #fbbf24;
  --accent: #8b5cf6;
  --accent-glow: rgba(139,92,246,.3);
  --dark: #050505;
  --dark-2: #0a0a0a;
  --dark-3: #111111;
  --dark-4: #1a1a1a;
  --dark-5: #222222;
  --text: #f5f5f5;
  --text-muted: #737373;
  --text-dim: #525252;
  --border: rgba(255,255,255,.06);
  --border-light: rgba(255,255,255,.1);
  --glass: rgba(10,10,10,.7);
  --glass-border: rgba(255,255,255,.08);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Syne', 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.175,.885,.32,1.275);
  --shadow-glow: 0 0 40px var(--primary-glow);
  --shadow-soft: 0 8px 32px rgba(0,0,0,.4);
  --container: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ═══════════════════════════════════════════════════════════════
   HEADER — Modern glassmorphism
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .4s var(--ease);
}
.header-inner {
  padding: 16px 0;
  transition: all .4s var(--ease);
}
.site-header.is-scrolled .header-inner {
  padding: 8px 0;
  background: rgba(5,5,5,.9);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.header-layout {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

/* Logo */
.site-branding { flex-shrink: 0; }
.site-branding a { display: flex; align-items: center; gap: 10px; }
.site-branding img, .custom-logo { height: 48px; width: auto; transition: height .3s; }
.site-header.is-scrolled .site-branding img,
.site-header.is-scrolled .custom-logo { height: 40px; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text__main {
  font-family: var(--font-display); font-size: 28px; font-weight: 900;
  letter-spacing: -.03em; color: #fff;
}
.logo-text__sub {
  font-size: 10px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-muted);
}

/* Nav */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li a {
  display: inline-flex; align-items: center; padding: 8px 18px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6);
  border-radius: var(--radius-full); transition: all .25s var(--ease);
  position: relative; letter-spacing: .01em;
}
.nav-menu li a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
  color: #fff; background: rgba(225,29,72,.12);
}
.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 16px; height: 2px; border-radius: 2px; background: var(--primary);
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Mobile Toggle */
.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  align-items: center; justify-content: center;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; align-items: center; }
.hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

/* Header CTA */
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; font-size: 13px; font-weight: 600;
  background: var(--primary); color: #fff; border-radius: var(--radius-full);
  transition: all .3s var(--ease); letter-spacing: .02em;
  box-shadow: 0 2px 12px rgba(225,29,72,.25);
}
.header-cta:hover {
  background: #be123c;
  box-shadow: 0 4px 24px rgba(225,29,72,.4);
  transform: translateY(-1px);
}
.header-cta__icon { display: flex; align-items: center; }
.header-cta__text { }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-size: 14px; font-weight: 600; font-family: var(--font);
  border-radius: var(--radius-full); transition: all .3s var(--ease);
  letter-spacing: .02em; white-space: nowrap; border: none; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-primary:hover {
  background: #be123c;
  box-shadow: 0 6px 30px var(--primary-glow), 0 0 60px rgba(225,29,72,.15);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-outline:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }

.btn-small { padding: 10px 20px; font-size: 13px; }

.btn-glass {
  background: var(--glass); color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }

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

/* Animated gradient background */
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(225,29,72,.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(139,92,246,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(251,191,36,.06) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: .6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Grid pattern overlay */
.hero-section::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
}

/* Background image if set */
.hero-section[style*="background-image"] {
  background-size: cover; background-position: center;
}
.hero-section[style*="background-image"]::before {
  background: linear-gradient(180deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 35%, rgba(0,0,0,.75) 65%, rgba(0,0,0,.95) 100%);
  animation: none;
}
.hero-section[style*="background-image"]::after { display: none; }

.hero-overlay { display: none; }

.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 120px 0 80px;
}

.hero-section .hero-title,
h1.hero-title {
  font-size: clamp(32px, 4vw, 60px); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.05;
  margin-bottom: 24px; color: #fff;
  text-shadow: 0 4px 60px rgba(0,0,0,.8), 0 2px 10px rgba(0,0,0,.6);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.7);
  max-width: 500px; margin: 0 auto 36px; font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}

.hero-cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Floating particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  margin-bottom: 12px; letter-spacing: -.03em;
}
.section-subtitle {
  font-size: 16px; color: var(--text-muted); max-width: 500px; margin: 0 auto;
}
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--primary); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--primary);
}
.section-cta { text-align: center; margin-top: 48px; }

/* Section gradient divider */
.events-section,
.home-blog,
.gallery-section { position: relative; }
.events-section::before,
.home-blog::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,29,72,.2) 30%, rgba(139,92,246,.2) 50%, rgba(225,29,72,.2) 70%, transparent);
}

/* ═══════════════════════════════════════════════════════════════
   EVENT CARDS
   ═══════════════════════════════════════════════════════════════ */
.events-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}

.event-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .4s var(--ease);
  position: relative;
}
.event-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent 40%, rgba(225,29,72,.15) 100%);
  opacity: 0; transition: opacity .4s; z-index: 0; pointer-events: none;
}
.event-card:hover::before { opacity: 1; }
.event-card:hover {
  border-color: rgba(225,29,72,.2); transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 30px rgba(225,29,72,.08);
}

.event-image {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
}
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.event-card:hover .event-image img { transform: scale(1.05); }

.event-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; font-size: 11px; font-weight: 700;
  border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: .05em;
}
.event-badge.featured { background: var(--primary); color: #fff; }
.event-badge.sold-out { background: var(--dark-4); color: var(--text-muted); border: 1px solid var(--border); }

.event-content { padding: 20px; }

.event-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.event-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-muted);
}
.event-meta svg { width: 14px; height: 14px; fill: var(--primary); }

.event-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.event-title a { transition: color .2s; }
.event-title a:hover { color: var(--primary); }

.event-artist { font-size: 14px; color: var(--accent); margin-bottom: 10px; font-weight: 500; }
.event-excerpt { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.event-excerpt p { margin: 0; }

.no-events { text-align: center; padding: 60px 20px; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1; background: var(--dark-3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); position: absolute; inset: 0; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.8) 100%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity .4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item { transition: transform .4s var(--ease), box-shadow .4s; }
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(0,0,0,.6); z-index: 2; }
.gallery-title { font-size: 14px; font-weight: 600; }

.no-gallery { text-align: center; padding: 60px 20px; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(225,29,72,.15), transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 0%, rgba(139,92,246,.08), transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 0%, rgba(251,191,36,.06), transparent 60%);
}
.cta-title { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 12px; position: relative; }
.cta-subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; position: relative; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages) — Enhanced with depth
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px; text-align: center;
  background: var(--dark-2);
  position: relative; overflow: hidden;
}
/* Radial glow background */
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(225,29,72,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(139,92,246,.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(251,191,36,.04) 0%, transparent 60%);
  pointer-events: none;
}
/* Bottom gradient line */
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--primary) 30%, var(--accent) 50%, var(--primary) 70%, transparent 95%);
  opacity: .3;
}
.page-hero__title {
  font-size: clamp(36px, 5vw, 56px); margin-bottom: 12px;
  position: relative;
}
.page-hero__subtitle {
  font-size: 17px; color: var(--text-muted); max-width: 500px; margin: 0 auto;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-content { font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.about-content p { margin-bottom: 20px; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.stats-section {
  padding: 60px 0; background: var(--dark-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-card {
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--dark-3); border: 1px solid var(--border);
  transition: all .3s var(--ease);
}
.stat-card:hover {
  border-color: rgba(225,29,72,.15);
  box-shadow: 0 8px 30px rgba(0,0,0,.3), 0 0 20px rgba(225,29,72,.05);
  transform: translateY(-2px);
}
.stat-card__value {
  font-family: var(--font-display); font-size: 42px; font-weight: 900;
  letter-spacing: -.03em; color: var(--primary); margin-bottom: 4px;
}
.stat-card__label { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════ */
.blog-section { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .4s var(--ease);
}
.blog-card:hover {
  border-color: rgba(139,92,246,.2); transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 20px rgba(139,92,246,.06);
}

.blog-card__image { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__content { padding: 20px; }
.blog-card__meta { display: flex; gap: 12px; margin-bottom: 10px; font-size: 12px; color: var(--text-dim); }
.blog-card__cat { color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.blog-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.blog-card__title a:hover { color: var(--primary); }
.blog-card__excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.blog-card__excerpt p { margin: 0; }
.blog-card__link { font-size: 13px; font-weight: 600; color: var(--primary); transition: gap .2s; display: inline-flex; gap: 4px; }
.blog-card__link:hover { gap: 8px; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all .35s var(--ease);
}
.contact-card:hover {
  border-color: rgba(255,255,255,.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.contact-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: rgba(225,29,72,.1); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--primary);
}
.contact-card__icon--green { background: rgba(34,197,94,.1); color: #22c55e; }
.contact-card__icon--blue { background: rgba(59,130,246,.1); color: #3b82f6; }
.contact-card__icon--amber { background: rgba(251,191,36,.1); color: #fbbf24; }
.contact-card__icon--purple { background: rgba(139,92,246,.1); color: #8b5cf6; }

.contact-card__body h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; font-family: var(--font); }
.contact-card__body a { color: var(--text-muted); font-size: 14px; transition: color .2s; }
.contact-card__body a:hover { color: var(--primary); }
.contact-card__body p { font-size: 14px; color: var(--text-muted); margin: 0; }
.hours-note { font-size: 12px; color: var(--text-dim); font-style: italic; margin-top: 4px; }

.contact-map {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--dark-3); border: 1px solid var(--border);
  min-height: 400px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 400px; border: none; }
.map-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 400px; gap: 16px; text-align: center; color: var(--text-muted); padding: 24px;
}

.contact-extra { padding: 60px 0 0; font-size: 16px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  font-size: 14px; font-weight: 500; border-radius: var(--radius);
  background: var(--dark-3); border: 1px solid var(--border); color: var(--text-muted);
  transition: all .2s;
}
.pagination a:hover { background: var(--dark-4); color: var(--text); border-color: var(--border-light); }
.pagination .current { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER CTA STRIP
   ═══════════════════════════════════════════════════════════════ */
.footer-cta-strip {
  padding: 0; background: transparent; position: relative;
}
.footer-cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 48px 48px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(225,29,72,.12) 0%, rgba(139,92,246,.08) 100%);
  border: 1px solid rgba(225,29,72,.15);
  position: relative; overflow: hidden;
  margin: 0 auto; max-width: var(--container);
}
.footer-cta-strip__inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(225,29,72,.1), transparent 70%);
  pointer-events: none;
}
.footer-cta-strip__content { position: relative; }
.footer-cta-strip__content h3 {
  font-size: 24px; font-weight: 800; margin-bottom: 6px;
  font-family: var(--font-display); letter-spacing: -.02em;
}
.footer-cta-strip__content p { font-size: 15px; color: var(--text-muted); margin: 0; }
.footer-cta-strip__actions { display: flex; gap: 12px; flex-shrink: 0; position: relative; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER — Modern premium
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  padding: 80px 0 32px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--dark) 0%, #030303 100%);
}
/* Subtle glow */
.footer-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(225,29,72,.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

/* Footer brand */
.footer-brand { max-width: 320px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img, .footer-logo .custom-logo { height: 44px; width: auto; }
.footer-logo-text {
  font-family: var(--font-display); font-size: 24px; font-weight: 900;
  letter-spacing: -.02em; display: block; margin-bottom: 16px;
}
.footer-logo-text span { color: var(--primary); }
.footer-brand__desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

/* Footer columns */
.footer-col { }
.footer-heading {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: #fff; margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; background: var(--primary); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: var(--text-muted); transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: #fff; transform: translateX(4px); }

/* Footer contact with icons */
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact__item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted); transition: color .2s;
}
.footer-contact__item:hover { color: var(--primary); }
.footer-contact__item svg { flex-shrink: 0; margin-top: 2px; color: var(--primary); opacity: .6; }
.footer-contact__item--muted { color: var(--text-dim); cursor: default; }
.footer-contact__item--muted:hover { color: var(--text-dim); }

/* Footer hours */
.footer-hours { display: flex; flex-direction: column; gap: 16px; }
.footer-hours__item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px; background: rgba(255,255,255,.03);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.footer-hours__day { font-size: 12px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .05em; }
.footer-hours__time { font-size: 14px; color: var(--text-muted); }
.footer-hours__note { font-size: 12px; color: var(--text-dim); font-style: italic; }

/* Social links */
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all .3s var(--ease);
}
.footer-social a:hover {
  background: var(--primary); border-color: var(--primary); color: #fff;
  box-shadow: 0 4px 20px rgba(225,29,72,.3);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }

/* Bottom bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding-top: 24px;
  font-size: 13px; color: var(--text-dim);
}
.footer-bottom__copy { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   HOME ABOUT (Anasayfa Kısa Tanıtım)
   ═══════════════════════════════════════════════════════════════ */
.home-about {
  padding: 80px 0 60px;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.home-about__content .section-title { text-align: left; margin-bottom: 20px; }
.home-about__content .section-label { margin-bottom: 12px; }
.home-about__text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.home-about__text p { margin-bottom: 16px; }
.home-about__image { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.home-about__image img { width: 100%; height: 100%; min-height: 350px; max-height: 500px; object-fit: cover; border-radius: var(--radius-lg); }
.home-about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border);
  text-align: center;
}
.home-about__stats .stat-card { opacity: 1; transform: none; }
.home-blog { padding: 80px 0; }

/* ═══════════════════════════════════════════════════════════════
   SINGLE EVENT HERO
   ═══════════════════════════════════════════════════════════════ */
.event-hero {
  position: relative; min-height: 60vh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--dark);
}
.event-hero-image {
  position: absolute; inset: 0;
}
.event-hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.event-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,.3) 0%, rgba(5,5,5,.85) 100%);
}
.event-hero-content {
  position: relative; z-index: 2; padding: 160px 0 60px; width: 100%;
}
.event-hero-badge {
  display: inline-block; padding: 6px 16px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--primary); color: #fff; border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.event-hero-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 900; margin-bottom: 12px;
  letter-spacing: -.03em; line-height: 1.05;
}
.event-hero-artist {
  font-size: 20px; color: var(--accent); font-weight: 600; margin-bottom: 24px;
}
.event-hero-meta {
  display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 32px;
}
.event-hero-meta-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; color: var(--text-muted);
}
.event-hero-meta-item svg { color: var(--primary); flex-shrink: 0; }
.event-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Event Content Grid */
.event-content-section { padding: 80px 0; }
.event-content-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 60px;
}
.event-main-content { font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.event-main-content h2 { font-size: 24px; margin: 40px 0 16px; color: var(--text); }
.event-main-content p { margin-bottom: 20px; }
.event-excerpt { font-size: 18px; line-height: 1.7; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.event-description { margin-bottom: 40px; }
.event-artist-bio { padding-top: 32px; border-top: 1px solid var(--border); }

/* Event Sidebar */
.event-sidebar { display: flex; flex-direction: column; gap: 24px; }
.event-info-box {
  padding: 28px; background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.event-info-box h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border); font-family: var(--font);
}
.info-item {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
.info-item:last-child { border-bottom: none; }
.info-label { color: var(--text-muted); }
.info-value { color: var(--text); font-weight: 600; }

/* Share */
.event-share {
  padding: 28px; background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.event-share h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 16px; font-family: var(--font);
}
.share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  background: var(--dark-4); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text-muted);
  transition: all .2s;
}
.share-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.related-events-section { padding: 80px 0; background: var(--dark-2); border-top: 1px solid var(--border); }
.related-events-section .section-title { margin-bottom: 40px; }

/* Disabled Button */
.btn-disabled {
  padding: 14px 32px; font-size: 14px; font-weight: 600; font-family: var(--font);
  border-radius: var(--radius-full); background: var(--dark-4); color: var(--text-dim);
  border: 1px solid var(--border); cursor: not-allowed; opacity: .6;
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════════════════ */
.single-post__section { padding: 60px 0 80px; }
.single-post__meta {
  display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 16px;
}
.single-post__cat {
  display: inline-block; padding: 4px 14px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  background: rgba(225,29,72,.15); color: var(--primary); border-radius: var(--radius-full);
}
.single-post__date { font-size: 14px; color: var(--text-muted); }

.single-post { max-width: 780px; margin: 0 auto; }
.single-post__featured {
  margin-bottom: 40px; border-radius: var(--radius-lg); overflow: hidden;
}
.single-post__featured img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.single-post__content {
  font-size: 17px; color: var(--text-muted); line-height: 1.85;
}
.single-post__content h2 { font-size: 28px; color: var(--text); margin: 40px 0 16px; }
.single-post__content h3 { font-size: 22px; color: var(--text); margin: 32px 0 12px; }
.single-post__content p { margin-bottom: 20px; }
.single-post__content img { border-radius: var(--radius); margin: 24px 0; }
.single-post__content blockquote {
  border-left: 3px solid var(--primary); padding: 16px 24px; margin: 24px 0;
  background: var(--dark-3); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--text);
}
.single-post__content ul, .single-post__content ol {
  margin: 16px 0; padding-left: 24px;
}
.single-post__content li { margin-bottom: 8px; list-style: disc; }
.single-post__content ol li { list-style: decimal; }
.single-post__content a { color: var(--primary); text-decoration: underline; }
.single-post__content a:hover { color: var(--secondary); }

.single-post__tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.single-post__tag {
  padding: 6px 14px; font-size: 13px; font-weight: 500;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-full); color: var(--text-muted);
  transition: all .2s;
}
.single-post__tag:hover { border-color: var(--primary); color: var(--primary); }

.single-post__share {
  display: flex; align-items: center; gap: 12px; margin-top: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.single-post__share-label { font-size: 14px; font-weight: 600; color: var(--text); }

.single-post__nav {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px;
}
.post-nav-link {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px; background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all .3s var(--ease);
}
.post-nav-link:hover { border-color: var(--border-light); transform: translateY(-2px); }
.post-nav-link--next { text-align: right; }
.post-nav-link__label { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.post-nav-link__title { font-size: 15px; font-weight: 600; color: var(--text); }

.related-posts-section {
  padding: 80px 0; background: var(--dark-2); border-top: 1px solid var(--border);
}
.related-posts-section .section-title { margin-bottom: 40px; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════════ */
.contact-form-wrapper {
  margin-top: 60px; padding: 48px; background: var(--dark-3);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.contact-form__title {
  font-size: 24px; font-weight: 800; margin-bottom: 8px;
  font-family: var(--font-display); letter-spacing: -.02em;
}
.contact-form__subtitle {
  font-size: 15px; color: var(--text-muted); margin-bottom: 32px;
}
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form__field { margin-bottom: 20px; }
.contact-form__field label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px;
  color: var(--text); text-transform: uppercase; letter-spacing: .04em;
}
.contact-form__field label span { color: var(--primary); }
.contact-form__field input,
.contact-form__field textarea {
  width: 100%; padding: 14px 18px; font-size: 15px; font-family: var(--font);
  background: var(--dark-4); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  transition: all .25s var(--ease);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: var(--text-dim); }
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.contact-form__field textarea { resize: vertical; min-height: 120px; }
.contact-form__submit { margin-top: 8px; }
.nck-hp { position: absolute; left: -9999px; }

.contact-form__message {
  margin-top: 20px; padding: 16px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
}
.contact-form__message--success {
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.2); color: #22c55e;
}
.contact-form__message--error {
  background: rgba(225,29,72,.1); border: 1px solid rgba(225,29,72,.2); color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════ */
.error-404 {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  padding: 160px 0 100px;
}
.error-404__code {
  font-family: var(--font-display); font-size: clamp(80px, 15vw, 180px);
  font-weight: 900; letter-spacing: -.05em; line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.error-404__title {
  font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px;
}
.error-404__text {
  font-size: 16px; color: var(--text-muted); margin-bottom: 40px;
  max-width: 400px; margin-left: auto; margin-right: auto;
}
.error-404__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.nck-animate {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.nck-animate.is-visible { opacity: 1; transform: translateY(0); }

/* Hero elements always visible (above fold) */
.hero-section .nck-animate { opacity: 1; transform: none; animation: heroFadeIn .8s var(--ease) both; }
.hero-section .nck-animate:nth-child(1) { animation-delay: .1s; }
.hero-section .nck-animate:nth-child(2) { animation-delay: .3s; }
.hero-section .nck-animate:nth-child(3) { animation-delay: .5s; }
.hero-section .nck-animate:nth-child(4) { animation-delay: .7s; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.nck-kinetic-text { display: inline-block; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-cta-strip__inner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .home-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .home-about__stats { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .event-content-grid { grid-template-columns: 1fr; }
  .event-sidebar { order: -1; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-navigation .nav-menu {
    display: none; position: fixed; inset: 0; top: 70px;
    background: var(--dark-2); flex-direction: column;
    padding: 24px; gap: 8px; z-index: 999;
  }
  .main-navigation .nav-menu.is-open { display: flex; }
  .nav-menu li a { padding: 14px 20px; font-size: 16px; width: 100%; border-radius: var(--radius); }
  .header-cta { display: none; }

  .hero-title { font-size: 36px; white-space: normal; }
  .hero-cta { flex-direction: column; align-items: center; }

  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .home-about__stats { grid-template-columns: repeat(2, 1fr); }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px; }
  .single-post__nav { grid-template-columns: 1fr; }
  .event-hero-meta { flex-direction: column; gap: 12px; }

  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .header-cta__text { display: none; }
  .header-cta { padding: 10px 14px; }
  .header-actions { gap: 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 60px 0; }
  .stat-card__value { font-size: 32px; }
}
