/* CSS Variables - Color Palette */
:root {
  /* Primary Colors */
  --pikachu-glow: #FFE066;
  --garden-cream: #FFF8DC;
  --soft-blue: #A3D1FF;
  
  /* Secondary Siamese Notes */
  --fur-beige: #EADFC8;
  --cocoa-shadow: #5A4A42;
  --deep-mocha: #3C2F29;
  
  /* Text */
  --warm-gray: #4A4A4A;
  
  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--warm-gray);
  background: linear-gradient(180deg, var(--garden-cream) 0%, var(--fur-beige) 100%);
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-mocha);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--cocoa-shadow);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  font-weight: 300;
}

a {
  color: var(--cocoa-shadow);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--deep-mocha);
}

header {
  background: var(--garden-cream);
  padding: var(--space-md) 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  padding: 0 var(--space-md);
}

nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: var(--space-xs) var(--space-md);
  border-radius: 20px;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  background: var(--pikachu-glow);
  color: var(--deep-mocha);
  transform: translateY(-2px);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.hero {
  text-align: center;
  padding: var(--space-xxl) 0;
}

.hero h1 {
  font-size: 4rem;
  color: var(--deep-mocha);
  margin-bottom: var(--space-sm);
}

.hero h2 {
  color: var(--cocoa-shadow);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: var(--space-xl);
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 20px;
  margin: var(--space-xl) auto;
  box-shadow: 0 10px 40px rgba(90, 74, 66, 0.15);
  display: block;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: var(--pikachu-glow);
  color: var(--deep-mocha);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: var(--space-md) var(--space-xl);
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 224, 102, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 224, 102, 0.6);
  background: #FFD94D;
}

/* Intro Section */
.intro {
  max-width: 800px;
  margin: var(--space-xxl) auto;
  text-align: center;
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.intro p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-xl);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(90, 74, 66, 0.15);
}

.about-text h2 {
  margin-top: 0;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-top: var(--space-md);
}

.about-text ul li {
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
  background: rgba(255, 224, 102, 0.1);
  border-left: 4px solid var(--pikachu-glow);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.about-text ul li:hover {
  background: rgba(255, 224, 102, 0.2);
  transform: translateX(5px);
}

.schedule-subtitle {
  text-align: center;
  color: var(--cocoa-shadow);
  font-weight: 300;
  margin-bottom: var(--space-xxl);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--soft-blue);
}

.timeline-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-marker {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--pikachu-glow);
  border: 4px solid var(--garden-cream);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(255, 224, 102, 0.2);
  animation: lanternPulse 3s ease-in-out infinite;
}

/* Lantern Pulse Animation */
@keyframes lanternPulse {
  0%, 100% {
    box-shadow: 0 0 0 8px rgba(255, 224, 102, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(255, 224, 102, 0.1);
    transform: scale(1.05);
  }
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  padding: var(--space-md);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(90, 74, 66, 0.1);
}

.timeline-content h3 {
  margin-top: 0;
  color: var(--deep-mocha);
}

footer {
  background: var(--cocoa-shadow);
  color: var(--garden-cream);
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-xxl);
}

footer p {
  margin: var(--space-sm) 0;
  font-size: 0.9rem;
}

footer a {
  color: var(--pikachu-glow);
  text-decoration: underline;
}

footer a:hover {
  color: var(--garden-cream);
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1rem;
  }
  
  nav {
    gap: var(--space-sm);
  }
  
  nav a {
    font-size: 0.9rem;
    padding: var(--space-xs) var(--space-sm);
  }
  
  .hero {
    padding: var(--space-lg) 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.1rem;
  }
  
  .cta-button {
    font-size: 1rem;
    padding: var(--space-sm) var(--space-lg);
  }
  
  /* About Page - Stack Layout */
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  /* Timeline Mobile */
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    gap: var(--space-sm);
  }
  
  .timeline-marker {
    width: 40px;
    height: 40px;
  }
  
  .timeline-content {
    padding: var(--space-sm);
  }
}

@media (min-width: 1025px) {
  .hero h1 {
    font-size: 5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr 2fr;
  }
}
