/* =================================
   WissenWelt Hannover - Playful Dynamic Style
   CSS Reset & Base Styles
   ================================= */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE5F5 50%, #E5F0FF 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* =================================
   Typography - Playful & Energetic
   ================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #1E3A8A;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

h2 {
  font-size: 36px;
  color: #7C3AED;
}

h3 {
  font-size: 24px;
  color: #1E3A8A;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #2d2d2d;
}

a {
  color: #7C3AED;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #F59E0B;
  transform: translateY(-2px);
}

ul {
  list-style: none;
}

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

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(15deg); }
}

/* =================================
   Container & Layout
   ================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =================================
   Header - Bright & Playful
   ================================= */

.site-header {
  background: linear-gradient(135deg, #FFD700 0%, #FF6B9D 50%, #7C3AED 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
  animation: headerPulse 2s ease-in-out infinite;
}

@keyframes headerPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3); }
  50% { box-shadow: 0 12px 40px rgba(245, 158, 11, 0.4); }
}

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

.logo img {
  height: 30px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.logo:hover img {
  transform: rotate(5deg) scale(1.1);
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #7C3AED;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* =================================
   Mobile Menu - Animated Slide-in
   ================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #F59E0B, #FF6B9D);
  color: #fff;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #7C3AED 0%, #1E3A8A 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #7C3AED;
  transform: rotate(90deg) scale(1.1);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #7C3AED;
  transform: translateX(10px) scale(1.05);
  border-color: #F59E0B;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
}

/* =================================
   Hero Section - Dynamic & Energetic
   ================================= */

.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD700 0%, #FF6B9D 50%, #7C3AED 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #fff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 24px;
  animation: titleBounce 1s ease-out;
}

@keyframes titleBounce {
  0% { transform: scale(0.5) rotate(-5deg); opacity: 0; }
  50% { transform: scale(1.1) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.hero-subtitle {
  font-size: 20px;
  color: #fff;
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =================================
   Buttons - Playful & Interactive
   ================================= */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #F59E0B, #FF6B9D);
  color: #fff;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #FF6B9D, #7C3AED);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #7C3AED;
  border-color: #7C3AED;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

.btn-secondary:hover {
  background: #7C3AED;
  color: #fff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.5);
}

/* =================================
   Sections - Spacing & Layout
   ================================= */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  font-weight: 600;
}

/* =================================
   Features Section - Bright Cards
   ================================= */

.features {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFD700 0%, #FF6B9D 100%);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  margin-bottom: 20px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #7C3AED, #F59E0B);
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-10px) rotate(2deg) scale(1.05);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.4);
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.feature-card h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 22px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
}

/* =================================
   Service Grid - Dynamic Layout
   ================================= */

.services {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
}

.services h2 {
  text-align: center;
  margin-bottom: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.3);
  border-color: #F59E0B;
}

.service-card.featured {
  background: linear-gradient(135deg, #7C3AED 0%, #FF6B9D 100%);
  color: #fff;
  border-color: #FFD700;
}

.service-card.featured h3,
.service-card.featured .price,
.service-card.featured p {
  color: #fff;
}

.service-card h3 {
  color: #1E3A8A;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 900;
  color: #F59E0B;
  margin-bottom: 16px;
  font-family: 'Orbitron', sans-serif;
}

.service-card p {
  margin-bottom: 24px;
  color: #555;
}

.badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #F59E0B, #FF6B9D);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* =================================
   Stats Section - Energetic Numbers
   ================================= */

.stats {
  background: linear-gradient(135deg, #7C3AED 0%, #1E3A8A 100%);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
}

.stats h2 {
  color: #fff;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.15);
  padding: 32px 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  border-color: #FFD700;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #FFD700;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-item p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* =================================
   Benefits Section
   ================================= */

.benefits {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFD700, #FF6B9D);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-item:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.4);
}

.benefit-item h3 {
  color: #fff;
  margin-bottom: 12px;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* =================================
   Testimonials - Readable & Bright
   ================================= */

.testimonials {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #fff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #F59E0B;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.3);
  border-left-color: #7C3AED;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2d2d2d;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1E3A8A;
  font-style: normal;
  font-size: 15px;
  margin-bottom: 0;
}

.testimonial-card .rating {
  color: #F59E0B;
  font-size: 18px;
  margin-top: 8px;
}

/* =================================
   CTA Banner - Eye-catching
   ================================= */

.cta-banner {
  background: linear-gradient(135deg, #FF6B9D 0%, #7C3AED 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.4);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* =================================
   Page Hero - Breadcrumb Navigation
   ================================= */

.page-hero {
  background: linear-gradient(135deg, #FFD700 0%, #7C3AED 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 40px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.breadcrumb a {
  color: #fff;
  text-decoration: underline;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 600;
}

/* =================================
   Content Sections
   ================================= */

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.content-block {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.text-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.text-section h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section h2:first-child {
  margin-top: 0;
}

.text-section p {
  margin-bottom: 16px;
}

.text-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.text-section ul li {
  margin-bottom: 8px;
  color: #2d2d2d;
}

/* =================================
   Program Cards
   ================================= */

.program-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.3);
  border-color: #F59E0B;
}

.program-card.featured {
  background: linear-gradient(135deg, #7C3AED 0%, #FF6B9D 100%);
  color: #fff;
}

.program-card.featured h2,
.program-card.featured .price,
.program-card.featured .duration,
.program-card.featured .audience,
.program-card.featured p,
.program-card.featured li {
  color: #fff;
}

.program-card h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.program-card .price {
  font-size: 32px;
  font-weight: 900;
  color: #F59E0B;
  margin-bottom: 12px;
  font-family: 'Orbitron', sans-serif;
}

.program-card .duration,
.program-card .audience {
  font-weight: 700;
  color: #555;
  margin-bottom: 16px;
}

.program-card ul {
  list-style: none;
  margin: 24px 0;
}

.program-card ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #2d2d2d;
}

.program-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F59E0B;
  font-weight: 900;
  font-size: 18px;
}

/* =================================
   Booking Process Steps
   ================================= */

.booking-process {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
}

.booking-process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, #FFD700, #FF6B9D);
  padding: 32px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.4);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #fff;
  color: #7C3AED;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step-item h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 20px;
}

.step-item p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
}

/* =================================
   Exhibition Sections
   ================================= */

.exhibition-overview {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.exhibition-overview .intro {
  font-size: 20px;
  font-weight: 700;
  color: #1E3A8A;
  margin-bottom: 24px;
}

.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.quick-stats span {
  padding: 12px 24px;
  background: linear-gradient(135deg, #F59E0B, #FF6B9D);
  color: #fff;
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.exhibition-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 28px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.exhibition-section h2 {
  margin-bottom: 16px;
}

.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.highlight-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  background: linear-gradient(135deg, #FFD700, #FF6B9D);
  color: #fff;
  padding: 16px 20px;
  border-radius: 15px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.fun-fact {
  background: linear-gradient(135deg, #7C3AED, #FF6B9D);
  color: #fff;
  padding: 20px 24px;
  border-radius: 15px;
  font-weight: 700;
  margin-top: 24px;
  font-style: italic;
}

/* =================================
   Visitor Info
   ================================= */

.visitor-info {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.visitor-info h2 {
  text-align: center;
  margin-bottom: 32px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.info-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, #FFD700, #FF6B9D);
  padding: 24px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.info-item h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 20px;
}

.info-item p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* =================================
   Events
   ================================= */

.event-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.event-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #fff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
  position: relative;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.3);
  border-color: #F59E0B;
}

.event-card.featured {
  background: linear-gradient(135deg, #7C3AED, #FF6B9D);
  color: #fff;
}

.event-card.featured h3,
.event-card.featured .event-date,
.event-card.featured .event-price,
.event-card.featured p {
  color: #fff;
}

.event-date {
  display: inline-block;
  background: #F59E0B;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.event-card h3 {
  color: #1E3A8A;
  margin-bottom: 16px;
}

.event-price {
  font-weight: 700;
  color: #7C3AED;
  margin: 16px 0;
}

.series-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.series-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, #FFD700, #FF6B9D);
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.series-item:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.4);
}

.series-item h3 {
  color: #fff;
  margin-bottom: 12px;
}

.series-item p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 14px;
}

/* =================================
   Birthday Parties
   ================================= */

.birthday-parties {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.birthday-parties h2 {
  margin-bottom: 16px;
}

.birthday-parties > p {
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 600;
  color: #555;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.package-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  background: linear-gradient(135deg, #7C3AED, #FF6B9D);
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.package-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.4);
}

.package-item h3 {
  color: #fff;
  margin-bottom: 12px;
}

.package-item p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 12px;
}

.package-item .price {
  font-size: 24px;
  font-weight: 900;
  color: #FFD700;
  font-family: 'Orbitron', sans-serif;
}

.package-info {
  font-size: 15px;
  color: #555;
  font-style: italic;
  margin-bottom: 24px;
}

/* =================================
   Blog Sections
   ================================= */

.blog-featured {
  margin-bottom: 48px;
}

.featured-article {
  background: linear-gradient(135deg, #7C3AED, #FF6B9D);
  padding: 48px 40px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.featured-article h2 {
  color: #fff;
  margin-bottom: 16px;
}

.featured-article p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.article-meta span {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.blog-categories {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.category-tag {
  padding: 10px 20px;
  background: #fff;
  border: 2px solid #7C3AED;
  color: #7C3AED;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-tag:hover,
.category-tag.active {
  background: linear-gradient(135deg, #7C3AED, #FF6B9D);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.article-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #fff;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 6px solid transparent;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.3);
  border-left-color: #F59E0B;
}

.article-card .category {
  display: inline-block;
  background: #7C3AED;
  color: #fff;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.article-card h3 {
  color: #1E3A8A;
  margin-bottom: 12px;
  font-size: 20px;
}

.article-card p {
  color: #555;
  margin-bottom: 16px;
}

.article-card .article-meta {
  color: #888;
  font-size: 13px;
  margin-bottom: 0;
}

.fun-fact {
  background: linear-gradient(135deg, #FFD700, #FF6B9D);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.fun-fact h2 {
  color: #fff;
  margin-bottom: 20px;
}

.fun-fact .fact {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

/* =================================
   Contact Page
   ================================= */

.contact-info {
  margin-bottom: 48px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  background: linear-gradient(135deg, #FFD700, #FF6B9D);
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.4);
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}

.contact-card h3 {
  color: #fff;
  margin-bottom: 16px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-details {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.form-info {
  max-width: 700px;
  margin: 24px auto 0;
}

.form-info ul {
  list-style: disc;
  margin-left: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.form-info ul li {
  margin-bottom: 8px;
  color: #2d2d2d;
}

.note {
  font-size: 14px;
  color: #777;
  font-style: italic;
  margin-top: 20px;
}

.map-section,
.directions {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.directions h3 {
  margin-bottom: 16px;
}

.directions p {
  margin-bottom: 12px;
}

.faq-contact {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.faq-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFD700, #FF6B9D);
  padding: 24px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.faq-item h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

/* =================================
   Legal Pages
   ================================= */

.legal-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: #888;
  font-style: italic;
  margin-top: 8px;
}

/* =================================
   Thank You Page
   ================================= */

.thank-you-hero {
  background: linear-gradient(135deg, #FFD700, #7C3AED);
  padding: 80px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 40px;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 120px;
  height: 120px;
  line-height: 120px;
  background: #fff;
  color: #10B981;
  border-radius: 50%;
  font-size: 64px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  animation: successPop 0.6s ease-out;
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  font-weight: 600;
}

.confirmation {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.confirmation h2 {
  text-align: center;
  margin-bottom: 32px;
}

.next-steps {
  text-align: center;
  margin-bottom: 40px;
}

.next-steps h2 {
  margin-bottom: 32px;
}

.testimonial-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* =================================
   Values Grid
   ================================= */

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #7C3AED, #FF6B9D);
  padding: 28px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.4);
}

.value-item h3 {
  color: #fff;
  margin-bottom: 12px;
}

.value-item p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* =================================
   Mission Vision
   ================================= */

.mission-vision {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.story {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.story h2 {
  margin-bottom: 24px;
}

/* =================================
   Footer - Vibrant & Informative
   ================================= */

.site-footer {
  background: linear-gradient(135deg, #1E3A8A 0%, #7C3AED 100%);
  padding: 60px 20px 20px;
  color: #fff;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #FFD700;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFD700;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* =================================
   Cookie Consent Banner - Fixed Bottom
   ================================= */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E3A8A, #7C3AED);
  padding: 24px 20px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 300px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-btn.accept {
  background: #10B981;
  color: #fff;
}

.cookie-btn.accept:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.cookie-btn.reject {
  background: #EF4444;
  color: #fff;
}

.cookie-btn.reject:hover {
  background: #DC2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.cookie-btn.settings {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}

.cookie-btn.settings:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #7C3AED;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: #1E3A8A;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #7C3AED;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ddd;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #10B981;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons .btn {
  flex: 1 1 auto;
  min-width: 150px;
}

/* =================================
   Responsive Design - Mobile First
   ================================= */

@media (max-width: 768px) {
  .feature-grid,
  .service-grid,
  .benefits-grid,
  .stats-grid,
  .content-grid,
  .steps-grid,
  .event-grid,
  .series-grid,
  .packages-grid,
  .articles-grid,
  .contact-cards,
  .info-grid,
  .faq-grid,
  .values-grid {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .benefit-item,
  .stat-item,
  .content-block,
  .step-item,
  .event-card,
  .series-item,
  .package-item,
  .article-card,
  .contact-card,
  .info-item,
  .faq-item,
  .value-item {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
}

/* =================================
   Animations & Effects
   ================================= */

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: #7C3AED;
  color: #fff;
}

::-moz-selection {
  background: #7C3AED;
  color: #fff;
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 3px solid #F59E0B;
  outline-offset: 3px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}