/* Main Page Gallery Styles */
.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 20px;
}


:root {
  /* Modern Color Variables */
  --primary-blue: #1e40af;
  --primary-orange: #f97316;
  --primary-green: #16a34a;
  --primary-purple: #9333ea;
  --primary-slate: #334155;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --background: #ffffff;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 12px;
  --border-radius-lg: 24px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 4rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

.btn-white {
  background-color: white;
  color: var(--primary-blue);
  font-size: 1.125rem;
  padding: 16px 32px;
}

.btn-white:hover {
  background-color: #f8fafc;
  transform: scale(1.05);
}

.btn-icon {
  margin-right: 8px;
  font-size: 1.25rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 64, 175, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0;
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  font-size: 2rem;
  color: var(--primary-orange);
  animation: spin 4s ease-in-out infinite;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 0;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.1),
    rgba(249, 115, 22, 0.1),
    rgba(147, 51, 234, 0.1)
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(249, 115, 22, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(30, 64, 175, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(22, 163, 74, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(147, 51, 234, 0.3) 0%,
      transparent 50%
    );
  background-size: 100% 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  display: block;
  color: var(--primary-orange);
  margin-top: 0.5rem;
}

.hero-description {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 500;
}

.floating-element {
  position: absolute;
  font-size: 3rem;
  opacity: 0.6;
  pointer-events: none;
}

.floating-1 {
  top: 15%;
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.floating-2 {
  top: 25%;
  right: 15%;
  animation: bounce 3s ease-in-out infinite;
}

.floating-3 {
  bottom: 15%;
  left: 15%;
  animation: float 3s ease-in-out infinite 1s;
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-section {
  padding: var(--section-padding);
  background-color: var(--background);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.menu-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  padding: .5rem;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(30, 64, 175, 0.2);
}

.menu-emoji {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.menu-card:hover .menu-emoji {
  transform: scale(1.1);
}

.menu-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ========================================
   KIDS ZONE SECTION
   ======================================== */
.kids-section {
  padding: var(--section-padding);
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.05),
    rgba(147, 51, 234, 0.05)
  );
}

.kids-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kids-text .section-title {
  text-align: left;
  margin-bottom: .5rem;
}

.kids-text .section-description {
  text-align: left;
  margin-bottom: .1rem;
}

.kids-features {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.feature-icon.green {
  background-color: var(--primary-green);
}

.feature-icon.blue {
  background-color: var(--primary-blue);
}

.feature-icon.purple {
  background-color: var(--primary-purple);
}

.feature-text h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem; /* Reduced margin to decrease space */
  color: var(--text-primary);
}


/* Kids Slider */
.kids-slider {
  position: relative;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide-content {
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  margin: 0;
}

/* Responsive adjustments for kids slider */
@media (max-width: 768px) {
  .slide-content {
    height: 220px;
  }

  .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  .slider-btn.prev {
    left: 8px;
  }

  .slider-btn.next {
    right: 8px;
  }

  .slider-indicators {
    margin-top: 1rem;
    gap: 0.3rem;
  }

  .indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .slide-content {
    height: 180px;
  }

  .slider-btn {
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }

  .slider-btn.prev {
    left: 6px;
  }

  .slider-btn.next {
    right: 6px;
  }

  .slider-indicators {
    gap: 0.2rem;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }
}

.slide-content.orange {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.1),
    rgba(249, 115, 22, 0.05)
  );
}

.slide-content.blue {
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.1),
    rgba(30, 64, 175, 0.05)
  );
}

.slide-content.green {
  background: linear-gradient(
    135deg,
    rgba(22, 163, 74, 0.1),
    rgba(22, 163, 74, 0.05)
  );
}

.slide-content.purple {
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.1),
    rgba(147, 51, 234, 0.05)
  );
}

.slide-emoji {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.slide-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.slider-btn:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #d1d5db;
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background-color: var(--primary-blue);
}

/* ========================================
   EVENTS SECTION
   ======================================== */
.events-section {
  padding: var(--section-padding);
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.05) 0%,
    var(--background) 50%,
    rgba(147, 51, 234, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
}

.events-bg::before,
.events-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.1);
  filter: blur(60px);
}

.events-bg::before {
  top: 40px;
  left: 40px;
  width: 128px;
  height: 128px;
}

.events-bg::after {
  bottom: 40px;
  right: 40px;
  width: 160px;
  height: 160px;
  background: rgba(30, 64, 175, 0.1);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 64, 175, 0.1);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-icon {
  margin-right: 0.5rem;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-highlight {
  display: block;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.event-card {
  background: linear-gradient(135deg, white, rgba(249, 115, 22, 0.02));
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition-slow);
  overflow: hidden;
  position: relative;
  border: none;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-card.orange {
  background: linear-gradient(135deg, white, rgba(249, 115, 22, 0.02));
}

.event-card.blue {
  background: linear-gradient(135deg, white, rgba(30, 64, 175, 0.02));
}

.event-card.green {
  background: linear-gradient(135deg, white, rgba(22, 163, 74, 0.02));
}

.card-decoration {
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.event-card.orange .card-decoration {
  background: var(--primary-orange);
  top: -48px;
  right: -48px;
}

.event-card.blue .card-decoration {
  background: var(--primary-blue);
  top: -64px;
  left: -64px;
}

.event-card.green .card-decoration {
  background: var(--primary-green);
  bottom: -56px;
  right: -56px;
}

.card-content {
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.card-icon {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    rgba(249, 115, 22, 0.8)
  );
  padding: 1rem;
  border-radius: var(--border-radius-lg);
  width: fit-content;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
  transition: var(--transition);
}

.event-card.blue .card-icon {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    rgba(30, 64, 175, 0.8)
  );
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.event-card.green .card-icon {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    rgba(22, 163, 74, 0.8)
  );
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.event-card:hover .card-icon {
  transform: scale(1.1);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card-divider {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), transparent);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.event-card.blue .card-divider {
  background: linear-gradient(90deg, var(--primary-blue), transparent);
}

.event-card.green .card-divider {
  background: linear-gradient(90deg, var(--primary-green), transparent);
}

.card-description {
  font-size: 1.125rem;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-stats {
  background: rgba(249, 115, 22, 0.05);
  border-radius: var(--border-radius);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.event-card.blue .card-stats {
  background: rgba(30, 64, 175, 0.05);
}

.event-card.green .card-stats {
  background: rgba(22, 163, 74, 0.05);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.event-card.blue .stat-number {
  color: var(--primary-blue);
}

.event-card.green .stat-number {
  color: var(--primary-green);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
  padding: var(--section-padding);
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.05),
    rgba(249, 115, 22, 0.05)
  );
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.gallery-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-content {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.1),
    rgba(249, 115, 22, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-emoji {
  font-size: 4rem;
  transition: var(--transition);
}

.gallery-card:hover .gallery-emoji {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.camera-icon {
  font-size: 2rem;
  color: white;
}

.gallery-title {
  padding: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.gallery-action {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 0;
}

/* ========================================
   VIDEOS SECTION
   ======================================== */
.videos-section {
  padding: var(--section-padding);
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.05),
    rgba(30, 64, 175, 0.05)
  );
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.video-item {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.video-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
}

.video-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(
    135deg,
    rgba(30, 64, 175, 0.1),
    rgba(147, 51, 234, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-emoji {
  font-size: 4rem;
}

.play-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  transition: var(--transition);
}

.video-card:hover .play-button {
  background: white;
  transform: scale(1.1);
}

.video-content {
  padding: 1rem;
}

.video-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.video-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.videos-action {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 0;
}

/* ========================================
   CONTACT SECTION - MODERN DESIGN
   ======================================== */
.contact-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Modern Location Grid Container */
.modern-location-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Main Location Card */
.location-main-card {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  color: white;
  box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
  position: relative;
  overflow: hidden;
}

.location-main-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.location-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.location-pin {
  font-size: 2.5rem;
  animation: bounce 2s infinite;
}

.location-main-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.location-main-address {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.address-primary {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.address-secondary {
  font-size: 1.125rem;
  opacity: 0.9;
}

.directions-btn {
  background: white;
  color: #1e40af;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #f8fafc;
}

/* Contact Info Cards Grid */
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-card .info-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.email-card .info-icon {
  background: linear-gradient(135deg, #16a34a, #15803d);
}

.hours-card .info-icon {
  background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.info-title {
  margin-bottom: 0;
  white-space: nowrap;
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.info-details a,
.info-details span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.info-details a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.info-details a:hover {
  color: var(--primary-blue);
}

.info-details span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Map Container */
.map-container {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.map-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.map-text {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-address {
  font-size: 0.875rem;
}

/* ========================================
   FOOTER SECTION - SIMPLE MODERN DESIGN
   ======================================== */
.footer {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  padding: 3rem 0 2rem;
  width: 100%;
}

/* Modern Footer Container */
.footer-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2rem;
}

/* Footer Brand Section */
.footer-brand-modern {
  flex: 1;
  max-width: 400px;
}

.footer-logo-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.logo-emoji {
  font-size: 3rem;
  background: linear-gradient(135deg, #f97316, #ea580c);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.logo-text-modern {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.25rem 0;
  line-height: 1.2;
}

.brand-tagline {
  color: #f97316;
  font-weight: 500;
  font-size: 1.125rem;
  margin: 0;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

/* Footer Contact Section */
.footer-contact-modern {
  flex: 1;
  max-width: 350px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.contact-row:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon-small {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text-modern {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

/* Footer Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-payments {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  min-width: 200px;
}

.payments-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
  text-align: right;
}

.payment-methods {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.payment-card {
  background: white;
  color: #000;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 50px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.payment-card.visa {
  color: #1a1f71;
}

.payment-card.mastercard {
  color: #eb001b;
}

.payment-card.amex {
  color: #006fcf;
}

.payment-card.generic {
  color: #f59e0b;
  font-size: 1rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .kids-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kids-text .section-title,
  .kids-text .section-description {
    text-align: center;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
  }

  .hamburger {
    display: flex;
  }


  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.25rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  /* Modern Contact Section Mobile */
  .modern-location-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .location-main-card {
    padding: 2rem 1.5rem;
  }

  .location-main-title {
    font-size: 1.75rem;
  }

  .contact-info-cards {
    gap: 1rem;
  }

  .info-card {
    padding: 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  /* Modern Footer Mobile */
  .footer-modern {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand-modern,
  .footer-contact-modern {
    max-width: 100%;
  }

  .footer-logo-modern {
    justify-content: center;
  }

  .contact-row {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-payments {
    align-items: center;
    min-width: auto;
  }

  .payments-label {
    text-align: center;
  }

  .payment-methods {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .location-main-card {
    padding: 1.5rem 1rem;
  }

  .location-main-title {
    font-size: 1.5rem;
  }

  .location-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .location-pin {
    font-size: 2rem;
  }

  .contact-info-cards {
    gap: 0.75rem;
  }

  .info-card {
    padding: 1rem;
  }

  .footer-modern {
    gap: 1.5rem;
  }

  .logo-emoji {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }

  .brand-name {
    font-size: 1.75rem;
  }
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  max-height: 700px; /* Limit max height to prevent excessive zoom */
  overflow: hidden;
}

.hero-slider .slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.hero-slider .slide {
  min-width: 100%;
  flex-shrink: 0;
  height: 100%;
  position: relative;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill container, crop if needed */
  object-position: center center; /* Center the image */
  display: block;
}

.hero-slider .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.hero-slider .slider-btn:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-slider .slider-btn.prev {
  left: 20px;
}

.hero-slider .slider-btn.next {
  right: 20px;
}

.hero-slider .slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero-slider .indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  background-color: #d1d5db;
  cursor: pointer;
  transition: var(--transition);
}

.hero-slider .indicator.active {
  background-color: var(--primary-blue);
}

/* Responsive adjustments for hero slider */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
    background: none !important;
  }

  .hero {
    background: none !important;
  }

  .hero-slider .slide,
  .hero-slider .slide img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
  }

  .hero-slider .slide {
    background: none !important;
  }

  .hero-slider .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .hero-slider .slider-btn.prev {
    left: 10px;
  }

  .hero-slider .slider-btn.next {
    right: 10px;
  }

  .hero-slider .slider-indicators {
    bottom: 15px;
    gap: 0.5rem;
  }

  .hero-slider .indicator {
    width: 12px;
    height: 12px;
    background-color: transparent !important;
  }

  .hero-slider .indicator.active {
    background-color: var(--primary-blue) !important;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 50vh;
    background: none !important;
  }

  .hero {
    background: none !important;
  }

  .hero-slider .slide,
  .hero-slider .slide img {
    background-color: transparent;
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
  }

  .hero-slider .slide {
    background: none !important;
  }

  .hero-slider .slider-btn {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  .hero-slider .slider-btn.prev {
    left: 8px;
  }

  .hero-slider .slider-btn.next {
    right: 8px;
  }

  .hero-slider .slider-indicators {
    bottom: 10px;
    gap: 0.3rem;
  }

  .hero-slider .indicator {
    width: 10px;
    height: 10px;
    background-color: transparent !important;
  }

  .hero-slider .indicator.active {
    background-color: var(--primary-blue) !important;
  }
}

/* ========================================
   ANIMATION DELAYS FOR SEQUENTIAL LOADING
   ======================================== */
.menu-item:nth-child(1) {
  animation-delay: 0.1s;
}

/* ========================================
   VIDEO MODAL POPUP STYLES
   ======================================== */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal[aria-hidden="false"] {
  display: flex;
}

.video-modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: #000;
  border-radius: 12px;
  max-width: 90vw;
  max-height: 80vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  width: 80vw;
  height: 45vw;
  max-width: 960px;
  max-height: 540px;
  transform: translate(-50%, -50%);
  z-index: 1600;
}

.video-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  padding: 0 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

.video-modal-close:hover,
.video-modal-close:focus {
  color: var(--primary-orange);
  outline: none;
}

.video-modal iframe {
  display: block;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.menu-item:nth-child(2) {
  animation-delay: 0.2s;
}
.menu-item:nth-child(3) {
  animation-delay: 0.3s;
}
.menu-item:nth-child(4) {
  animation-delay: 0.4s;
}
.menu-item:nth-child(5) {
  animation-delay: 0.5s;
}
.menu-item:nth-child(6) {
  animation-delay: 0.6s;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}
.gallery-item:nth-child(7) {
  animation-delay: 0.7s;
}
.gallery-item:nth-child(8) {
  animation-delay: 0.8s;
}

.video-item:nth-child(1) {
  animation-delay: 0.1s;
}
.video-item:nth-child(2) {
  animation-delay: 0.2s;
}
.video-item:nth-child(3) {
  animation-delay: 0.3s;
}
.video-item:nth-child(4) {
  animation-delay: 0.4s;
}
.video-item:nth-child(5) {
  animation-delay: 0.5s;
}
.video-item:nth-child(6) {
  animation-delay: 0.6s;
}

.menu-item,
.gallery-item,
.video-item {
  animation-fill-mode: forwards;
}
