/* 🍭 CANDY CLOUD THEME — Sweet, Dreamy, Playful Pastel Paradise */
:root {
  --primary: #a88beb;      /* Soft Lavender */
  --secondary: #ff9eaa;    /* Blush Pink */
  --accent: #88d4ab;       /* Mint Green */
  --bg: #f9f6ff;           /* Cloud White */
  --text: #4a4a4a;
  --muted: #888;
  --radius: 24px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Dreamy gradients */
  --block1: linear-gradient(135deg, #f5e1ff, #d0c4e9);
  --block2: linear-gradient(135deg, #fff1f5, #ffe6f0);
  --block3: linear-gradient(135deg, #e6f7ff, #d0ecff);
  --block4: linear-gradient(135deg, #f0fff4, #e0f2e9);
  --block5: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PHBhdGggZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDIwMCwxODAsMjU1LDAuMDQpIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0wIDBoNjB2NjBIMHoiLz48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIyIiBmaWxsPSJyZ2JhKDI1NSwyMjAsMjU1LDAuMSkiLz48Y2lyY2xlIGN4PSI0MCIgY3k9IjQwIiByPSIyIiBmaWxsPSJyZ2JhKDIwMCwyNDAsMjU1LDAuMSkiLz48L3N2Zz4=');
  background-size: 100px 100px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* ---------------- HEADER ---------------- */
.site-header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  position: sticky;
  top: 0;
  z-index: 40;
  animation: slideDown 0.8s ease-out;
  box-shadow: var(--shadow);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  padding: 6px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  animation: floatCloud 8s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.logo:hover {
  transform: rotate(20deg) scale(1.15);
  background: rgba(255, 255, 255, 0.35);
}
.brand-text h1 {
  font-size: 24px;
  margin: 0;
  color: white;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}
.brand-text small {
  opacity: 0.9;
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  background: rgba(255, 255, 255, 0.1);
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 3px;
}
.nav a:hover::after {
  width: 70%;
  left: 15%;
}
.nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  color: var(--accent);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 26px;
  cursor: pointer;
  transition: var(--transition);
  padding: 10px;
  border-radius: 50%;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(360deg);
}

/* ---------------- HERO ---------------- */
.hero {
  padding: 90px 0;
  background: var(--block1);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(255,220,255,0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(200,240,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(255,240,220,0.3) 0%, transparent 50%);
  animation: floatCloud 20s infinite alternate;
  z-index: -1;
  pointer-events: none;
}
@keyframes floatCloud {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(3deg); }
  100% { transform: translateY(0) rotate(-3deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}
.hero-text {
  animation: fadeInLeft 1s ease;
}
.hero-text h2 {
  font-size: 42px;
  margin-bottom: 16px;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.8px;
  text-shadow: 2px 2px 5px rgba(255,255,255,0.8);
}
.hero-text p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 18px;
  max-width: 90%;
  font-weight: 500;
}
.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.6s;
}
.btn:hover::before {
  left: 100%;
}
.btn-primary {
  background: var(--primary);
}
.btn:hover {
  background: var(--accent);
  transform: scale(1.1) translateY(-6px);
  box-shadow: 0 15px 35px rgba(168, 141, 235, 0.4);
  color: white;
}
.hero-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: floatUpAndDown 6s ease-in-out infinite;
  transform-origin: center;
  transition: transform 0.6s ease;
  border: 6px solid white;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}
.hero-img:hover {
  transform: scale(1.06) rotate(4deg);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* ---------------- BLOG SECTION ---------------- */
.section {
  padding: 70px 0;
}
.section h3 {
  font-size: 30px;
  margin-bottom: 16px;
  text-align: center;
  color: #333;
  font-weight: 700;
  animation: fadeInUp 1s ease;
  letter-spacing: -0.5px;
  position: relative;
}
.section h3::after {
  content: '';
  display: block;
  width: 100px;
  height: 5px;
  background: var(--accent);
  margin: 12px auto;
  border-radius: 3px;
}
.section.alt {
  background: var(--block2);
  border-radius: 50px;
  margin: 30px 0;
  padding: 50px 0;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.section.alt::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.blog-item {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  border: 1px solid rgba(0,0,0,0.03);
}
.blog-item:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.blog-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-item:hover img {
  transform: scale(1.08);
}
.blog-item h4 {
  padding: 24px 20px 12px;
  color: #333;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.blog-item p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.read-more {
  display: block;
  text-align: center;
  color: var(--primary);
  text-decoration: none;
  padding: 14px;
  font-weight: 600;
  border-top: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.read-more:hover {
  background: rgba(168, 141, 235, 0.05);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ---------------- GALLERY ---------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.6s forwards;
}
.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:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.gallery-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.12);
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(25px);
  transition: var(--transition);
  text-align: center;
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--accent);
}
.gallery-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- ACHIEVEMENTS ---------------- */
.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}
.card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 240px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s forwards;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
  background: linear-gradient(white, white) padding-box, var(--primary) border-box;
}
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card h4 {
  margin: 18px 0 10px;
  color: #333;
  font-size: 20px;
  letter-spacing: -0.3px;
  font-weight: 600;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.achievement-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
  border: 4px solid rgba(255,255,255,0.7);
  box-shadow: 0 5px 12px rgba(0,0,0,0.04);
  transition: transform 0.4s ease;
}
.card:hover .achievement-img {
  transform: scale(1.08);
}

/* ---------------- EVENTS ---------------- */
.events-list {
  list-style: none;
  margin-top: 24px;
}
.events-list li {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 20px;
  align-items: center;
  background: white;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInRight 0.8s forwards;
}
.events-list li:nth-child(1) { animation-delay: 0.1s; }
.events-list li:nth-child(2) { animation-delay: 0.2s; }
.events-list li:nth-child(3) { animation-delay: 0.3s; }
.events-list li:hover {
  transform: translateX(0) scale(1.03);
  box-shadow: 0 20px 45px rgba(255, 158, 170, 0.15);
  background: #fff5f7;
}
.event-img {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid var(--accent);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}
.event-img:hover {
  transform: scale(1.05);
}
.event-body strong {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 18px;
  font-weight: 600;
}
.event-body p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* ---------------- CONTACT ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 20px;
}
.contact-info {
  animation: fadeInLeft 1s ease;
  background: white;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.03);
}
.contact-info h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
  position: relative;
  display: inline-block;
}
.contact-info h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary);
  margin-top: 10px;
  border-radius: 3px;
}
.features-list {
  list-style: none;
  margin-top: 24px;
}
.features-list li {
  color: var(--muted);
  margin-bottom: 14px;
  padding-left: 36px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}
.features-list li::before {
  content: "🍭";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--accent);
  animation: candySpin 3s infinite;
}
@keyframes candySpin {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}
.contact-info a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
  font-size: 16px;
}
.contact-info a:hover {
  color: var(--accent);
  text-decoration: underline;
  transform: translateX(4px);
}

/* ---------------- MAP ---------------- */
.map-wrap {
  margin-top: 28px;
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  border: 4px solid white;
  box-shadow: var(--shadow);
  animation: fadeIn 1.2s ease;
}

/* ---------------- FOOTER — CANDY GLOW ---------------- */
.site-footer {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: white;
  padding: 40px 0;
  margin-top: 50px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  animation: footerGlow 3s ease-in-out infinite alternate;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 158, 170, 0.2), transparent 70%);
  animation: pulseRing 5s ease-in-out infinite;
  z-index: -1;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: var(--transition);
  font-size: 24px;
  display: inline-block;
}
.site-footer a:hover {
  color: #fff;
  transform: scale(1.3) rotate(20deg);
  text-shadow: 0 0 15px rgba(255,255,255,0.9);
}
.social-icon {
  font-size: 26px;
  transition: var(--transition);
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  animation: floatCloud 4s ease-in-out infinite;
}
.social-icon:hover {
  transform: translateY(-8px) scale(1.4) rotate(30deg);
  background: rgba(255,255,255,0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.attribution {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  text-align: center;
  margin-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

/* ---------------- RESPONSIVE — MOBILE FIRST ---------------- */

/* All Mobile Devices — Stack Everything, Center Align, Increase Padding */
@media (max-width: 768px) {
  :root {
    --radius: 18px;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  }

  body {
    padding: 0;
    font-size: 16px;
  }

  .container {
    padding: 16px;
    width: 100%;
    max-width: none;
  }

  /* Header */
  .site-header {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .header-inner {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .brand {
    justify-content: center;
  }
  .brand-text h1 {
    font-size: 22px;
  }
  .brand-text small {
    font-size: 13px;
  }
  .logo {
    width: 56px;
    height: 56px;
  }

  /* Navigation Toggle for Mobile */
  .nav-toggle {
    display: block;
  }
  .nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 16px 10px;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .nav.active {
    display: flex !important;
  }
  .nav a {
    font-size: 13px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.2);
    min-width: 80px;
    text-align: center;
  }

  /* Hero Section */
  .hero {
    padding: 60px 0 40px;
    border-radius: 0 0 30px 30px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .hero-text {
    text-align: center;
    margin: 0 auto;
  }
  .hero-text h2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-text p {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .btn {
    padding: 16px 32px;
    font-size: 16px;
    margin: 0 auto;
    display: block;
    width: fit-content;
  }

  /* Sections */
  .section {
    padding: 50px 0;
  }
  .section h3 {
    font-size: 26px;
  }
  .section.alt {
    padding: 40px 0;
    border-radius: 30px;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .blog-item img {
    height: 180px;
  }
  .blog-item h4 {
    font-size: 18px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-item img {
    height: 200px;
  }

  /* Achievements */
  .cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .card {
    width: 100%;
    max-width: 320px;
    padding: 28px 24px;
  }
  .achievement-img {
    height: 120px;
  }

  /* Events */
  .events-list li {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 20px;
  }
  .event-img {
    width: 100%;
    height: 160px;
    border-radius: 16px;
  }
  .event-body {
    text-align: center;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-info {
    padding: 28px;
    text-align: center;
  }
  .contact-info h3 {
    display: block;
    text-align: center;
  }
  .features-list {
    text-align: left;
    margin: 0 auto;
    max-width: 300px;
  }
  .features-list li {
    padding-left: 40px;
    text-align: left;
  }

  /* Map */
  .map-wrap iframe {
    height: 300px;
    border-radius: 18px;
  }

  /* Footer */
  .site-footer {
    padding: 30px 0;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .attribution {
    font-size: 14px;
    padding: 16px;
    border-radius: 20px;
  }
}

/* Small Phones (320px - 480px) */
@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 28px;
  }
  .section h3 {
    font-size: 24px;
  }
  .blog-item img {
    height: 160px;
  }
  .gallery-item img {
    height: 180px;
  }
  .card {
    padding: 24px 20px;
  }
  .achievement-img {
    height: 110px;
  }
  .events-list li {
    padding: 18px;
  }
  .event-img {
    height: 140px;
  }
  .map-wrap iframe {
    height: 260px;
  }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-text h2 {
    font-size: 36px;
  }
  .section h3 {
    font-size: 28px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------------- ANIMATIONS ---------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes floatUpAndDown {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes animate-bounce-in {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.animate-fade-in { animation: fadeInUp 0.6s ease-out forwards; }
.animate-fade-in-right { animation: fadeInRight 0.8s ease-out forwards; }
.animate-fade-in-left { animation: fadeInLeft 0.8s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 1s ease-out forwards; }
.animate-bounce-in { animation: animate-bounce-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.animate-float { animation: floatUpAndDown 6s ease-in-out infinite; }

/* ---------------- FOOTER GLOW ANIMATION ---------------- */
@keyframes footerGlow {
  0% { box-shadow: 0 12px 35px rgba(255, 158, 170, 0.25); }
  100% { box-shadow: 0 20px 50px rgba(255, 158, 170, 0.5); }
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.5; }
}

/* ✅ JavaScript to toggle mobile nav */