/* ═══════════════════════════════════════════════════
   Yize's 6th Birthday Party – Pokemon Theme CSS
   ═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --pikachu-yellow: #FFD700;
  --pokemon-red: #E63946;
  --pokeball-dark: #1a1a2e;
  --bg-deep: #0d0d1a;
  --bg-section: #111128;
  --card-bg: rgba(30, 30, 60, 0.85);
  --text-primary: #fff;
  --text-secondary: #b0b0d0;
  --accent-blue: #4ECDC4;
  --accent-pink: #FF6B9D;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-yellow: 0 0 30px rgba(255, 215, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ═══ Navigation ═══ */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 60px;
  background: rgba(13, 13, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--pikachu-yellow);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--pikachu-yellow);
}

.nav-pokemon-sprite {
  width: 32px;
  height: 32px;
  image-rendering: pixelated;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pokeball-dark);
  background: var(--pikachu-yellow);
}

.nav-rsvp-cta {
  background: var(--pokemon-red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  animation: pulse-glow 2s infinite;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--pikachu-yellow);
  font-size: 24px;
  cursor: pointer;
}

/* ═══ Floating Pokemon Decorations ═══ */
.pokemon-decorations {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 5;
  overflow: hidden;
}

.pokemon-decor {
  position: absolute;
  opacity: 0.12;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
  animation: float-pokemon 6s ease-in-out infinite;
}

.pokemon-decor-1 {
  width: 120px;
  top: 15%;
  left: 3%;
  animation-delay: 0s;
}

.pokemon-decor-2 {
  width: 90px;
  top: 35%;
  right: 5%;
  animation-delay: 1s;
}

.pokemon-decor-3 {
  width: 80px;
  top: 60%;
  left: 8%;
  animation-delay: 2s;
}

.pokemon-decor-4 {
  width: 100px;
  top: 80%;
  right: 3%;
  animation-delay: 3s;
}

.pokemon-decor-5 {
  width: 70px;
  top: 10%;
  right: 15%;
  animation-delay: 4s;
}

.pokemon-decor-6 {
  width: 85px;
  top: 50%;
  right: 12%;
  animation-delay: 5s;
}

@keyframes float-pokemon {

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

  25% {
    transform: translateY(-15px) rotate(3deg);
  }

  75% {
    transform: translateY(10px) rotate(-2deg);
  }
}

/* ═══ Sections ═══ */
.section {
  min-height: 100vh;
  position: relative;
  padding: 100px 24px 60px;
}

.section-container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.title-icon {
  margin-right: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 40px;
}

/* Section Header with Pokemon */
.section-header-pokemon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.section-pokemon-left,
.section-pokemon-right {
  width: 80px;
  height: 80px;
  opacity: 0.7;
  animation: float-pokemon 4s ease-in-out infinite;
}

.section-pokemon-right {
  animation-delay: 2s;
}

/* ═══ Hero Section ═══ */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 30%, rgba(255, 215, 0, 0.08) 0%, var(--bg-deep) 70%);
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pokemon-red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 24px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.badge-sprite {
  width: 24px;
  height: 24px;
  image-rendering: pixelated;
}

.hero-name {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--pikachu-yellow);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4);
  line-height: 1.1;
}

.hero-age {
  display: block;
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  color: var(--pokemon-red);
  line-height: 1;
}

.hero-age sup {
  font-size: 36px;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ── Photo Collage ── */
.hero-photo-collage {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 32px 0;
}

.collage-main {
  position: relative;
  width: 220px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--pikachu-yellow);
  box-shadow: var(--glow-yellow);
  flex-shrink: 0;
}

.collage-main .main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pikachu-float {
  position: absolute;
  bottom: -10px;
  right: -20px;
  animation: float-pokemon 3s ease-in-out infinite;
}

.pikachu-sprite {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.collage-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collage-small {
  position: relative;
  width: 130px;
  height: 85px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.4);
  transition: transform 0.3s, border-color 0.3s;
}

.collage-small:hover {
  transform: scale(1.05);
  border-color: var(--pikachu-yellow);
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-size: 11px;
  padding: 10px 6px 4px;
  text-align: center;
  font-weight: 600;
}

/* ── Countdown ── */
.hero-countdown {
  margin: 24px 0;
}

.countdown-label {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}

.countdown-timer {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.countdown-unit {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  min-width: 70px;
  text-align: center;
}

.countdown-unit span {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--pikachu-yellow);
}

.countdown-unit small {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* ── Info Cards ── */
.hero-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.info-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--pikachu-yellow);
}

.info-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.info-label {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.info-value {
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
}

/* ── CTA Button ── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--pokemon-red), #c0392b);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(230, 57, 70, 0.4);
  transition: all 0.3s;
  margin-top: 8px;
  animation: pulse-glow 2s infinite;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 40px rgba(230, 57, 70, 0.5);
}

.cta-pokeball {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 6px 30px rgba(230, 57, 70, 0.4);
  }

  50% {
    box-shadow: 0 6px 40px rgba(230, 57, 70, 0.7);
  }
}

/* ── Scroll Hint ── */
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
}

.scroll-arrow {
  animation: bounce 1.5s infinite;
  font-size: 18px;
  margin-top: 4px;
}

@keyframes bounce {

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

  50% {
    transform: translateY(8px);
  }
}

/* ═══ RSVP Section (Main Focus) ═══ */
.rsvp-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-section) 50%, var(--bg-deep) 100%);
}

.rsvp-main-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 2px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--glow-yellow);
  backdrop-filter: blur(12px);
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pikachu-yellow);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
  background: var(--pokeball-dark);
  color: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Submit Button */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--pokemon-red), #c0392b);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-sprite {
  width: 24px;
  height: 24px;
  image-rendering: pixelated;
}

/* Success State */
.rsvp-success {
  text-align: center;
  padding: 20px 0;
}

.rsvp-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--pikachu-yellow);
  margin: 16px 0 8px;
}

.rsvp-success p {
  color: var(--text-secondary);
}

.pokeball-catch-animation {
  margin-bottom: 10px;
}

.pokeball-large-img {
  width: 64px;
  height: 64px;
  image-rendering: pixelated;
}

.pokeball-large-img.spin {
  animation: pokeball-spin 0.8s ease-out;
}

@keyframes pokeball-spin {
  0% {
    transform: rotate(0deg) scale(0.5);
    opacity: 0;
  }

  50% {
    transform: rotate(360deg) scale(1.3);
  }

  100% {
    transform: rotate(720deg) scale(1);
    opacity: 1;
  }
}

.catch-stars {
  font-size: 32px;
  animation: sparkle 1s ease-in-out;
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Calendar Buttons */
.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  align-items: center;
}

.btn-calendar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  min-width: 280px;
  justify-content: center;
}

.btn-google-cal {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
}

.btn-google-cal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-ics {
  background: linear-gradient(135deg, #333, #555);
  color: #fff;
}

.btn-ics:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-another {
  margin-top: 16px;
  padding: 10px 24px;
  background: none;
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--pikachu-yellow);
  border-radius: 24px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-another:hover {
  background: rgba(255, 215, 0, 0.1);
}

/* Admin */
.admin-toggle {
  text-align: center;
  margin-top: 40px;
}

.btn-admin {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
}

.btn-admin:hover {
  border-color: var(--pikachu-yellow);
  color: var(--pikachu-yellow);
}

.admin-panel {
  max-width: 600px;
  margin: 20px auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.admin-password {
  display: flex;
  gap: 8px;
}

.admin-password input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
}

.admin-password button {
  padding: 10px 20px;
  background: var(--pikachu-yellow);
  color: var(--pokeball-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.admin-stat-card {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}

.admin-stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--pikachu-yellow);
}

.admin-stat-card .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.admin-list {
  max-height: 400px;
  overflow-y: auto;
}

.admin-entry {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.admin-entry .entry-name {
  font-weight: 600;
}

.admin-entry .entry-details {
  font-size: 13px;
  color: var(--text-secondary);
}

.admin-entry .entry-time {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: right;
}

.btn-export {
  margin-top: 16px;
  padding: 10px 24px;
  background: var(--accent-blue);
  color: var(--pokeball-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-export:hover {
  transform: translateY(-2px);
}

/* ═══ Slideshow / Gallery ═══ */
.slideshow-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-section) 50%, var(--bg-deep) 100%);
}

.slideshow-viewer {
  max-width: 600px;
  margin: 0 auto;
}

.slide-frame {
  background: var(--card-bg);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.slide-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
}

.slide-actual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s;
}

.slide-caption {
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
  background: rgba(255, 215, 0, 0.05);
}

.slide-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.slide-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.2);
  color: var(--pikachu-yellow);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.slide-btn:hover {
  background: var(--pikachu-yellow);
  color: var(--pokeball-dark);
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slide-dot.active {
  background: var(--pikachu-yellow);
  transform: scale(1.3);
}

/* ═══ Schedule / Timeline ═══ */
.schedule-section {
  background: var(--bg-section);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--pikachu-yellow), var(--pokemon-red), var(--accent-blue));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-icon {
  position: absolute;
  left: -50px;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--pikachu-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.timeline-sprite {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
}

.timeline-time {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pikachu-yellow);
  font-size: 14px;
  margin-bottom: 4px;
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: transform 0.3s, border-color 0.3s;
}

.timeline-content:hover {
  transform: translateX(6px);
  border-color: var(--pikachu-yellow);
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ═══ Location / Map ═══ */
.location-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-section) 50%, var(--bg-deep) 100%);
}

.map-container {
  max-width: 700px;
  margin: 0 auto;
}

.venue-header {
  text-align: center;
  margin-bottom: 24px;
}

.venue-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--pikachu-yellow);
  margin-bottom: 8px;
}

.venue-address {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-loading {
  color: var(--text-secondary);
  font-size: 15px;
}

.map-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
  flex-wrap: wrap;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
}

.btn-directions:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.5);
}

.btn-open-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--card-bg);
  border: 2px solid rgba(255, 215, 0, 0.25);
  color: var(--pikachu-yellow);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s;
}

.btn-open-maps:hover {
  transform: translateY(-3px);
  border-color: var(--pikachu-yellow);
  box-shadow: var(--glow-yellow);
}

.location-details {
  background: var(--card-bg);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.location-detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-primary);
}

.detail-icon {
  font-size: 20px;
}

/* ═══ Footer ═══ */
.site-footer {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.footer-pokemon-row img {
  width: 40px;
  height: 40px;
  image-rendering: pixelated;
  opacity: 0.6;
  transition: all 0.3s;
  animation: float-pokemon 3s ease-in-out infinite;
}

.footer-pokemon-row img:nth-child(2) {
  animation-delay: 0.5s;
}

.footer-pokemon-row img:nth-child(3) {
  animation-delay: 1s;
}

.footer-pokemon-row img:nth-child(4) {
  animation-delay: 1.5s;
}

.footer-pokemon-row img:nth-child(5) {
  animation-delay: 2s;
}

.footer-pokemon-row img:nth-child(6) {
  animation-delay: 2.5s;
}

.footer-pokemon-row img:hover {
  opacity: 1;
  transform: scale(1.3);
}

.site-footer p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* ═══ Scroll Animations ═══ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ Responsive ═══ */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 26, 0.98);
    padding: 16px;
    border-bottom: 2px solid var(--pikachu-yellow);
  }

  .nav-links.active {
    display: flex;
  }

  .hero-name {
    font-size: 36px;
  }

  .hero-age {
    font-size: 64px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

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

  .collage-main {
    width: 180px;
    height: 230px;
  }

  .collage-side {
    flex-direction: row;
    gap: 8px;
  }

  .collage-small {
    width: 100px;
    height: 70px;
  }

  .hero-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-unit {
    min-width: 60px;
    padding: 10px 14px;
  }

  .countdown-unit span {
    font-size: 24px;
  }

  .rsvp-main-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-pokemon-left,
  .section-pokemon-right {
    width: 50px;
    height: 50px;
  }

  .section-title {
    font-size: 28px;
  }

  .btn-calendar {
    min-width: 100%;
  }

  .pokemon-decorations {
    display: none;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline-icon {
    left: -42px;
    width: 38px;
    height: 38px;
  }

  .timeline-sprite {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 28px;
  }

  .hero-age {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .collage-side {
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-card {
    padding: 12px 4px;
  }

  .info-value {
    font-size: 12px;
  }
}