/* ============================================
   KAMPWAY - Premium Portfolyo Sitesi
   Renk Paleti & Tasarım Sistemi
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Renkler */
  --bg-primary: #0B1426;
  --bg-secondary: #0F2027;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --bg-glass: rgba(255, 255, 255, 0.06);

  --accent-green: #1DB954;
  --accent-green-glow: rgba(29, 185, 84, 0.3);
  --accent-amber: #F5A623;
  --accent-amber-glow: rgba(245, 166, 35, 0.3);
  --accent-coral: #FF6B6B;
  --accent-coral-end: #FF8E53;

  --text-primary: #F5F0E8;
  --text-secondary: #8B95A5;
  --text-muted: #5A6577;

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Tipografi */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --card-radius: 20px;
  --btn-radius: 50px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(11, 20, 38, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
  height: 38px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px !important;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-coral-end)) !important;
  color: white !important;
  border-radius: 50px !important;
  border: none !important;
  transition: var(--transition-smooth) !important;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  gap: 8px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4) !important;
}

.nav-cta .btn-icon {
  margin-right: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 20, 38, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(-10px);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for links */
.mobile-menu.active a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu.active a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu.active a:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu a:hover {
  color: var(--accent-green);
  letter-spacing: 1px;
}

.mobile-menu .btn-primary {
  margin-top: 12px !important;
  font-size: 0.95rem !important;
  padding: 14px 40px !important;
  border-radius: 50px !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(11, 20, 38, 0.3) 0%,
      rgba(11, 20, 38, 0.6) 50%,
      rgba(11, 20, 38, 1) 100%);
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.2);
}

/* Particle canvas */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

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

.hero-hashtag {
  display: inline-block;
  padding: 10px 30px;
  background: var(--bg-glass);
  border: 1px solid var(--accent-green);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-green);
  margin-bottom: 32px;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--accent-green-glow);
  }

  50% {
    box-shadow: 0 0 40px var(--accent-green-glow), 0 0 80px rgba(29, 185, 84, 0.1);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.hero-event-name {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--accent-amber);
  margin-bottom: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 16px;
  min-width: 80px;
  backdrop-filter: blur(10px);
}

.countdown-item .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-amber);
  line-height: 1;
}

.countdown-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 6px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 40px;
  /* Sol tarafa ikon için ekstra boşluk */
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-coral-end));
  color: white;
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.35);
  letter-spacing: 0.5px;
  gap: 10px;
}

.btn-primary .btn-icon {
  margin-right: 0;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

/* Occupancy Modern Design */
.hero-stats {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.occupancy-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  padding: 24px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.occupancy-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 12px;
}

.occupancy-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.occupancy-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
  text-shadow: 0 0 20px var(--accent-green-glow);
}

.occupancy-progress-container {
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.occupancy-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-amber));
  border-radius: 10px;
  transition: width 2s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 15px var(--accent-green-glow);
}

.occupancy-status {
  font-size: 0.85rem;
  color: var(--accent-amber);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* ============================================
   TICKETS SECTION
   ============================================ */

.tickets {
  padding: var(--section-padding);
  position: relative;
}

.tickets .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tickets .section-subtitle {
  margin: 0 auto;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.ticket-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 36px 28px;
  transition: var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-amber));
  opacity: 0;
  transition: var(--transition-smooth);
}

.ticket-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ticket-card:hover::before {
  opacity: 1;
}

.ticket-card.popular {
  border-color: var(--accent-green);
  background: rgba(29, 185, 84, 0.05);
}

.ticket-card.popular::before {
  opacity: 1;
  background: var(--accent-green);
}

.ticket-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-popular {
  background: rgba(29, 185, 84, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(29, 185, 84, 0.3);
}

.badge-limited {
  background: rgba(255, 107, 107, 0.15);
  color: var(--accent-coral);
  border: 1px solid rgba(255, 107, 107, 0.3);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.ticket-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.ticket-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ticket-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
  flex-grow: 1;
}

.ticket-prices {
  margin-bottom: 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.price-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--accent-amber);
}

.price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 8px;
}

.ticket-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 14px;
  /* Sol tarafa ikon için ekstra boşluk */
  width: 100%;
  border: none;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  gap: 10px;
}

.ticket-btn .btn-icon {
  margin-right: 0;
}

.ticket-btn.btn-fill {
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-coral-end));
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.ticket-btn.btn-fill:hover {
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.5);
  transform: translateY(-2px);
}

.ticket-btn.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.ticket-btn.btn-outline:hover {
  border-color: var(--accent-green);
  background: rgba(29, 185, 84, 0.1);
}

/* ============================================
   CAPACITY SECTION
   ============================================ */

.capacity {
  padding: 80px 0;
}

.capacity-chart-wrapper {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.capacity-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.capacity-chart {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
}

.capacity-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: var(--bg-glass);
  stroke-width: 12;
}

.ring-fill {
  fill: none;
  stroke: url(#capacityGradient);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 534;
  stroke-dashoffset: 534;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.capacity-chart-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.capacity-chart-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent-coral);
  line-height: 1;
}

.capacity-chart-label {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-coral);
}

.capacity-warning {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--accent-coral);
  font-weight: 600;
}

/* ============================================
   EVENTS / ACTIVITIES SECTION
   ============================================ */

.events {
  padding: var(--section-padding);
  position: relative;
}

.events .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.events .section-subtitle {
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.event-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.event-card:hover {
  transform: scale(1.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card-img {
  transform: scale(1.1);
}

.event-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.event-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.event-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent-amber);
  font-weight: 600;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
  padding: var(--section-padding);
}

.gallery .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery .section-subtitle {
  margin: 0 auto;
}

.gallery-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* Masonry Grid */
.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.gallery-masonry .gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.gallery-masonry .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-masonry .gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.gallery-masonry .gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(11, 20, 38, 0.7));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-masonry .gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transform: translateY(10px);
  transition: var(--transition-bounce);
}

.gallery-masonry .gallery-item:hover .overlay-icon {
  transform: translateY(0);
}

/* Empty State */
.gallery-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--card-radius);
}

.gallery-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.gallery-empty h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.gallery-empty p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.gallery-empty code {
  background: var(--bg-glass);
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--accent-green);
  font-size: 0.85rem;
}

/* Lightbox Navigation */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2001;
}

.lightbox-nav:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

/* ============================================
   TRANSPORT SECTION
   ============================================ */

.transport {
  padding: var(--section-padding);
}

.transport .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.transport .section-subtitle {
  margin: 0 auto;
}

.transport-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.transport-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 36px;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.transport-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.transport-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-green), rgba(29, 185, 84, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.transport-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.transport-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.transport-card .highlight {
  color: var(--accent-amber);
  font-weight: 600;
}

.transport-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.transport-link:hover {
  gap: 10px;
}

.faq {
  padding: var(--section-padding);
}

.faq .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.faq-item.active {
  border-color: var(--accent-green);
  background: rgba(29, 185, 84, 0.04);
  box-shadow: 0 8px 32px rgba(29, 185, 84, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--accent-green);
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-green);
  line-height: 1;
}

.faq-item.active .faq-icon {
  background: var(--accent-green);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin: 0 12px;
}

/* ============================================
   RULES SECTION
   ============================================ */

.rules {
  padding: var(--section-padding);
}

.rules .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.rules .section-subtitle {
  margin: 0 auto;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.rule-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.rule-number {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-green), rgba(29, 185, 84, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.rule-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: var(--section-padding);
}

.contact .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact .section-subtitle {
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .contact-cards {
    gap: 6px;
  }
}

.contact-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  transition: var(--transition-smooth);
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-card {
    padding: 15px 5px;
    border-radius: 12px;
  }
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: var(--transition-smooth);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .contact-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .contact-card-icon svg {
    width: 18px;
    height: 18px;
  }
}

.contact-card-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.contact-card-icon.instagram {
  background: linear-gradient(135deg, rgba(214, 41, 118, 0.1), rgba(250, 126, 30, 0.1));
  color: #E1306C;
}

.contact-card-icon.phone {
  background: rgba(29, 185, 84, 0.1);
  color: var(--accent-green);
}

.contact-card-icon.email {
  background: rgba(66, 133, 244, 0.1);
  color: #4285F4;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card-info {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .contact-card-title {
    font-size: 0.75rem;
  }

  .contact-card-info {
    display: none;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.footer-logo .logo-img {
  height: 60px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  transform: translateY(-3px);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   FLOATING CTA
   ============================================ */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent-coral), var(--accent-coral-end));
  color: white;
  border-radius: var(--btn-radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
  transition: var(--transition-smooth);
  animation: float-cta 3s ease-in-out infinite;
}

@keyframes float-cta {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.floating-cta a:hover {
  box-shadow: 0 12px 48px rgba(255, 107, 107, 0.6);
  transform: scale(1.05);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent-coral);
  border-color: var(--accent-coral);
}

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

@media (max-width: 1024px) {
  .tickets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 100svh;
    padding: 100px 20px 60px;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    min-width: 64px;
    padding: 12px 14px;
  }

  .countdown-item .number {
    font-size: 1.5rem;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .tickets-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 0 4px;
    max-width: none;
    align-items: stretch;
  }

  .ticket-card {
    padding: 12px 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
  }

  .ticket-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    margin-left: 0;
  }

  .ticket-title {
    font-size: 0.7rem;
    line-height: 1.1;
    text-align: left;
    margin-bottom: 4px;
    min-height: auto;
    font-weight: 800;
  }

  .ticket-desc {
    display: block;
    font-size: 0.55rem;
    line-height: 1.2;
    color: var(--text-muted);
    margin-bottom: 8px;
    flex-grow: 1;
    height: 3em;
    overflow: hidden;
  }

  .ticket-prices {
    margin-bottom: 8px;
    border-top: 1px solid var(--border);
    padding-top: 4px;
  }

  .price-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    border-bottom: none;
  }

  .price-label {
    font-size: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55%;
  }

  .price-value {
    font-size: 0.7rem;
    font-weight: 900;
  }

  .ticket-btn {
    padding: 8px 2px;
    font-size: 0.65rem;
    gap: 2px;
    border-radius: 6px;
    width: 100%;
  }

  .ticket-badge {
    top: 4px;
    right: 4px;
    padding: 1px 3px;
    font-size: 0.38rem;
    font-weight: 800;
  }

  .gallery-masonry {
    columns: 1;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }

  .floating-cta a {
    width: 100%;
    justify-content: center;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .transport-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
    align-items: stretch;
  }

  .transport-card {
    padding: 24px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }

  .transport-card-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .transport-card-title {
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 8px;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .transport-card p {
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 0;
  }

  .transport-link {
    font-size: 0.75rem;
    margin-top: auto;
    /* Yazı kısa olsa bile linki en alta iter */
    padding-top: 12px;
    display: inline-block;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .hero-hashtag {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .countdown-item {
    min-width: 56px;
    padding: 10px 10px;
  }

  .countdown-item .number {
    font-size: 1.3rem;
  }

  .countdown-item .label {
    font-size: 0.6rem;
  }
}

/* Button Icons */
.btn-icon {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: middle;
}

/* Card SVG Icons */
.card-svg-icon {
  width: 24px;
  height: 24px;
  stroke: var(--accent-green);
  opacity: 0.9;
}

.ticket-card:hover .card-svg-icon {
  stroke: var(--text-primary);
  opacity: 1;
}