/* ============================================
   BARBADOS SLIM — Island Vibes CSS
   ============================================ */

@font-face {
  font-family: 'Cactus';
  src: url('fonts/CactusRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --sun: #ffe94f;
  --sun-light: #fff176;
  --sun-glow: #FFF9C4;
  --ocean: #1919ce;
  --ocean-deep: #1212a0;
  --ocean-light: #6B6BFF;
  --sand: #FFF9E6;
  --sand-dark: #F5E6C8;
  --coral: #FF6B6B;
  --coral-dark: #E63946;
  --palm: #2D6A4F;
  --palm-light: #52B788;
  --navy: #1919ce;
  --white: #FFFFFF;
  --text: #2D2D2D;
  --text-light: #666;

  --font-display: 'Cactus', 'Lilita One', cursive;
  --font-fun: 'Permanent Marker', cursive;
  --font-body: 'Fredoka', sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--sand);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 24px;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 249, 230, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 8px 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  transition: transform 0.3s;
}
.nav-logo:hover { transform: scale(1.05); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--sun);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 300px; }
.mobile-menu a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(27, 20, 100, 0.1);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.btn-primary {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}
.btn-primary:hover {
  background: var(--ocean-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 119, 182, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* Order Pickup Button */
.btn-order {
  background: #22c55e;
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  animation: pulse-green 2s infinite;
}
.btn-order:hover {
  background: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5);
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 4px 25px rgba(34, 197, 94, 0.7); }
}

.order-closed-msg {
  margin-top: 12px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 50px;
  font-size: 0.95rem;
  color: var(--navy);
  display: inline-block;
  backdrop-filter: blur(5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-light) 50%, #FFE082 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.palm {
  position: absolute;
  font-size: 120px;
  opacity: 0.15;
  animation: sway 6s ease-in-out infinite;
}
.palm-left { top: 5%; left: -20px; transform: rotate(-15deg); }
.palm-right { top: 10%; right: -20px; transform: rotate(15deg); animation-delay: -3s; }

@keyframes sway {
  0%, 100% { transform: rotate(-15deg); }
  50% { transform: rotate(-10deg); }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--navy);
  line-height: 1.1;
  display: block;
  text-shadow: 2px 4px 0px rgba(255,255,255,0.3);
}
.hero-tagline {
  font-family: var(--font-fun);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--navy);
  margin: 16px 0 32px;
  opacity: 0.85;
  line-height: 1.4;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 1rem;
  color: var(--text);
  animation: float 4s ease-in-out infinite;
}
.promo-icon { font-size: 1.4rem; }

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

.hero-image-slot {
  position: absolute;
  bottom: 80px;
  right: -5%;
  width: 45%;
  z-index: 1;
  pointer-events: none;
}
.hero-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  opacity: 0.6;
}
@media (max-width: 768px) {
  .hero-image-slot { display: none !important; }
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 1;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */
.placeholder-img {
  background: linear-gradient(135deg, var(--ocean-light), var(--ocean));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.placeholder-img::before {
  content: '🏝️';
  font-size: 3rem;
  margin-bottom: 8px;
}
.placeholder-img small {
  font-weight: 400;
  opacity: 0.8;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header.light h2 { color: var(--white); }
.section-header.light .section-label { color: var(--sun-light); }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}
.section-header.light .section-sub { color: rgba(255,255,255,0.8); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--sand);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-1 {
  min-height: 350px;
  grid-row: span 2;
}
.about-img-2 {
  min-height: 165px;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-top: 24px;
  font-weight: 600;
  color: var(--navy);
  border-left: 4px solid var(--sun);
}
.highlight-emoji { font-size: 1.5rem; }

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   MENU / FEATURED TOASTIES
   ============================================ */
.featured {
  background: linear-gradient(180deg, var(--sun) 0%, var(--sun-light) 100%);
  padding: 80px 0;
  position: relative;
}
.wave-top, .wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
}
.wave-top { top: -2px; }
.wave-bottom { bottom: -2px; }
.wave-top svg, .wave-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: default;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.menu-card-img {
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}
.menu-card-body {
  padding: 20px;
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.menu-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
}
.menu-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--coral);
  background: #FFF0F0;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.menu-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.menu-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--sand);
  color: var(--text);
}
.tag-popular { background: #FFF3E0; color: #E65100; }
.tag-vego { background: #E8F5E9; color: #2E7D32; }

/* Menu vibe quote */
.menu-vibe {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ocean);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--sun);
}
.tag-spicy { background: #FFF3E0; color: #BF360C; }
.tag-value { background: #E8F5E9; color: #1B5E20; }

/* Bajan Sayings */
.bajan-sayings {
  margin-top: 48px;
  padding: 32px;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  text-align: center;
}
.bajan-sayings h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.sayings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.saying {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.saying-phrase {
  font-family: var(--font-fun);
  font-size: 1.1rem;
  color: var(--navy);
}
.saying-meaning {
  font-size: 0.9rem;
  color: var(--text-light);
}

.menu-note {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.menu-note p {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 4px 0;
  font-weight: 500;
}

/* ============================================
   DRINKS
   ============================================ */
.drinks {
  padding: 80px 0;
  background: var(--sand);
}
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.drink-category {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.drink-category h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--sun);
}
.drink-category li {
  padding: 10px 0;
  border-bottom: 1px solid var(--sand-dark);
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
.drink-category li:last-child { border-bottom: none; }
.drink-category li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drink-prices {
  font-weight: 600;
  color: var(--coral);
  font-size: 0.9rem;
  white-space: nowrap;
}
.drink-extras {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 2px dashed var(--sand-dark);
}
.drink-extras p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text);
}
.sorrel-note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--coral);
}
.sorrel-note p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean) 100%);
  padding: 80px 0;
  position: relative;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-cta {
  text-align: center;
  margin-top: 40px;
}
.gallery-cta .btn-primary {
  background: var(--sun);
  color: var(--navy);
}
.gallery-cta .btn-primary:hover {
  background: var(--sun-light);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   FIND US
   ============================================ */
.find-us {
  padding: 100px 0;
  background: var(--sand);
}
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.find-us-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 32px;
}
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.info-card:hover { transform: translateX(4px); }
.info-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sun-glow);
  border-radius: 12px;
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.info-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.info-card small {
  font-size: 0.85rem;
  color: var(--coral);
  font-weight: 600;
}
.info-card a {
  color: var(--ocean);
  font-weight: 600;
  transition: color 0.3s;
}
.info-card a:hover { color: var(--ocean-deep); }

.find-us-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .find-us-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
}
.footer-wave {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
}
.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-top: 40px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 12px;
}
.footer-brand p {
  opacity: 0.7;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  transition: all 0.3s;
  color: var(--white);
}
.footer-social a:hover {
  background: var(--sun);
  color: var(--navy);
  transform: translateY(-2px);
}
.footer-links h4, .footer-hours h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  opacity: 0.7;
  transition: all 0.3s;
  font-weight: 500;
}
.footer-links a:hover { opacity: 1; transform: translateX(4px); }
.footer-hours p {
  opacity: 0.7;
  margin-bottom: 4px;
}
.footer-note {
  margin-top: 12px;
  opacity: 1 !important;
  color: var(--sun);
  font-weight: 600;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.6;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   COMPREHENSIVE MOBILE FIXES
   ============================================ */
@media (max-width: 768px) {
  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-promo { font-size: 0.85rem; }

  .drinks-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sayings-grid {
    grid-template-columns: 1fr;
  }

  .bajan-sayings { padding: 20px; }

  .section-header h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }

  .find-us { padding: 60px 0; }
  .gallery { padding: 60px 0; }
  .featured { padding: 60px 0; }

  .container { padding: 0 16px; }

  .sorrel-note { font-size: 0.85rem; }

  .footer { padding: 40px 0 0; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-wide {
    grid-column: span 1;
  }
  .hero { min-height: 85vh; }
  .hero h1 { font-size: 2.5rem; }
}

/* ============================================
   ANIMATIONS / SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Fun cursor trail effect */
.cursor-trail {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sun);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: multiply;
}

/* Smooth image loading */
img[data-src] {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img.loaded {
  opacity: 1;
}

/* ============================================
   FUN EXTRAS
   ============================================ */

/* Wobble animation for emojis */
@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}
.info-icon:hover { animation: wobble 0.5s ease; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--ocean), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Tropical confetti background pattern */
.tropical-bg {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,184,0,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,119,182,0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255,107,107,0.05) 0%, transparent 50%);
}
