/* ============================================
   PROFESSIONAL HOLIDAY THEME SYSTEM
   Annie Luxury Homes - Automatic Theme Switcher
   ============================================ */

/* === ROOT VARIABLES FOR ALL THEMES === */
:root {
  /* Default/Golden Theme */
  --holiday-primary: #FFD700;
  --holiday-secondary: #FFA500;
  --holiday-accent: #F0E68C;
  --holiday-dark: #1a1a1a;
  --holiday-light: #f5f5f5;
  --holiday-text: #e0e0e0;
  --holiday-border: rgba(255, 215, 0, 0.15);
  --holiday-shadow: rgba(255, 215, 0, 0.1);
}

/* === EASTER THEME === */
body.holiday-easter {
  --holiday-primary: #66BB6A;
  --holiday-secondary: #A5D6A7;
  --holiday-accent: #FFB6C1;
  --holiday-dark: #1b2e1b;
  background-image: url('../images/easter_bg.jpg') !important;
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

body.holiday-easter::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 46, 27, 0.5);
  backdrop-filter: blur(3px);
  z-index: -1;
  pointer-events: none;
}

/* === CHRISTMAS THEME === */
body.holiday-christmas {
  --holiday-primary: #C4302B;
  --holiday-secondary: #2D5016;
  --holiday-accent: #FFD700;
  --holiday-dark: #0d0d0d;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(45, 80, 22, 0.9) 100%);
}

body.holiday-christmas::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  z-index: -1;
  pointer-events: none;
}

/* === NEW YEAR THEME === */
body.holiday-newyear {
  --holiday-primary: #FFD700;
  --holiday-secondary: #1a1a1a;
  --holiday-accent: #FF6B9D;
  --holiday-dark: #0a0a0a;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(50, 50, 50, 0.9) 100%);
}

body.holiday-newyear::before {
  display: none;
}

/* === NATIONAL HOLIDAYS THEME === */
body.holiday-national {
  --holiday-primary: #CE181E;
  --holiday-secondary: #007A5E;
  --holiday-accent: #FFD700;
  --holiday-dark: #0f0f0f;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(206, 24, 30, 0.15) 50%, rgba(0, 122, 94, 0.15) 100%);
}

body.holiday-national::before {
  display: none;
}

/* === WOMEN'S DAY THEME === */
body.holiday-women {
  --holiday-primary: #E91E63;
  --holiday-secondary: #9C27B0;
  --holiday-accent: #FFD700;
  --holiday-dark: #1a0d1a;
  background: linear-gradient(135deg, rgba(26, 13, 26, 0.85) 0%, rgba(233, 30, 99, 0.15) 50%, rgba(156, 39, 176, 0.15) 100%);
}

body.holiday-women::before {
  display: none;
}

/* === MOTHER'S DAY THEME === */
body.holiday-mothers {
  --holiday-primary: #FF1493;
  --holiday-secondary: #FFB6C1;
  --holiday-accent: #FFD700;
  --holiday-dark: #1a0f15;
  background: linear-gradient(135deg, rgba(26, 15, 21, 0.85) 0%, rgba(255, 20, 147, 0.15) 50%, rgba(255, 182, 193, 0.1) 100%);
}

body.holiday-mothers::before {
  display: none;
}

/* === MOTHER'S DAY THEME === */
body.holiday-mothers {
  --holiday-primary: #FF1493;
  --holiday-secondary: #FFB6C1;
  --holiday-accent: #FFD700;
  --holiday-dark: #1a0f15;
  background: linear-gradient(135deg, rgba(26, 15, 21, 0.85) 0%, rgba(255, 20, 147, 0.15) 50%, rgba(255, 182, 193, 0.1) 100%);
}

body.holiday-mothers::before {
  display: none;
}

/* === FATHER'S DAY THEME === */
body.holiday-fathers {
  --holiday-primary: #1E40AF;
  --holiday-secondary: #60A5FA;
  --holiday-accent: #FFD700;
  --holiday-dark: #0f1a2a;
  background: linear-gradient(135deg, rgba(15, 26, 42, 0.85) 0%, rgba(30, 64, 175, 0.15) 50%, rgba(96, 165, 250, 0.1) 100%);
}

body.holiday-fathers::before {
  display: none;
}

/* === VALENTINE'S DAY THEME === */
body.holiday-valentine {
  --holiday-primary: #FF1744;
  --holiday-secondary: #D32F2F;
  --holiday-accent: #FFB6C1;
  --holiday-dark: #1a0a0a;
  background: linear-gradient(135deg, rgba(26, 10, 10, 0.85) 0%, rgba(255, 23, 68, 0.15) 50%, rgba(211, 47, 47, 0.15) 100%);
}

body.holiday-valentine::before {
  display: none;
}

/* === EID THEME === */
body.holiday-eid {
  --holiday-primary: #2ECC71;
  --holiday-secondary: #27AE60;
  --holiday-accent: #F39C12;
  --holiday-dark: #0a1a10;
  background: linear-gradient(135deg, rgba(10, 26, 16, 0.85) 0%, rgba(46, 204, 113, 0.1) 50%, rgba(39, 174, 96, 0.1) 100%);
}

body.holiday-eid::before {
  display: none;
}

/* === LABOUR DAY THEME === */
body.holiday-labour {
  --holiday-primary: #E74C3C;
  --holiday-secondary: #C0392B;
  --holiday-accent: #FFD700;
  --holiday-dark: #1a0a0a;
  background: linear-gradient(135deg, rgba(26, 10, 10, 0.85) 0%, rgba(231, 76, 60, 0.15) 50%, rgba(192, 57, 43, 0.15) 100%);
}

body.holiday-labour::before {
  display: none;
}

/* ============================================
   HOLIDAY SECTION - MAIN STYLES
   ============================================ */

.holiday-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: transparent !important;
  border-top: none;
  border-bottom: none;
  color: var(--holiday-text);
  z-index: 20;
}

/* Background Overlay */
.holiday-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.holiday-content {
  position: relative;
  z-index: 1;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.holiday-header {
  animation: slideInDown 0.8s ease-out;
}

.holiday-badge-wrapper {
  display: inline-block;
}

.holiday-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--holiday-primary) 0%, var(--holiday-secondary) 100%);
  color: var(--holiday-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
  transition: all 0.3s ease;
}

.holiday-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.35);
}

.holiday-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--holiday-primary), var(--holiday-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 1rem 0;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.15);
}

.holiday-message {
  color: var(--holiday-text);
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 1rem auto;
  opacity: 0.95;
  animation: fadeIn 1s ease-out 0.3s both;
}

/* ============================================
   MEDIA CAROUSEL
   ============================================ */

.holiday-media-section {
  animation: fadeIn 1s ease-out 0.5s both;
}

.holiday-carousel-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2),
              0 0 40px rgba(255, 215, 0, 0.1);
  border: 1px solid var(--holiday-border);
}

.holiday-carousel {
  background: #000;
}

.holiday-media {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.holiday-video {
  max-height: 480px;
  object-fit: cover;
}

/* Carousel Controls */
.holiday-carousel .carousel-control-prev,
.holiday-carousel .carousel-control-next {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.holiday-carousel .carousel-control-prev:hover,
.holiday-carousel .carousel-control-next:hover {
  background: var(--holiday-primary);
  opacity: 1;
}

/* Carousel Indicators */
.holiday-carousel .carousel-indicators {
  bottom: 1.5rem;
}

.holiday-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--holiday-primary);
  background: transparent;
  transition: all 0.3s ease;
}

.holiday-carousel .carousel-indicators button.active {
  background: var(--holiday-primary);
  width: 30px;
  border-radius: 6px;
}

/* ============================================
   CALL-TO-ACTION
   ============================================ */

.holiday-cta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--holiday-border);
  animation: fadeIn 1s ease-out 0.7s both;
}

.holiday-cta-text {
  font-size: 1.1rem;
  color: var(--holiday-text);
}

.holiday-cta-link {
  color: var(--holiday-primary);
  font-weight: 700;
  text-decoration: none;
  position: relative;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.holiday-cta-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--holiday-primary);
  transition: width 0.3s ease;
}

.holiday-cta-link:hover {
  color: var(--holiday-secondary);
}

.holiday-cta-link:hover::after {
  width: 100%;
}

/* ============================================
   DECORATIONS - BALLOONS
   ============================================ */

.holiday-balloons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.holiday-balloons .balloon {
  position: absolute;
  width: 60px;
  height: 80px;
  border-radius: 60% 60% 55% 55% / 60% 60% 40% 40%;
  background: var(--holiday-primary);
  box-shadow: inset -2px -2px 8px rgba(0, 0, 0, 0.3),
              0 6px 20px rgba(0, 0, 0, 0.4);
  transform-origin: bottom center;
  animation: floatUp 4s ease-in-out infinite;
  opacity: 0.85;
}

.holiday-balloons .balloon:nth-child(1) {
  left: 8%;
  top: 40%;
  animation-delay: 0s;
  background: linear-gradient(135deg, #FF6B6B, #FF8787);
}

.holiday-balloons .balloon:nth-child(2) {
  left: 22%;
  top: 45%;
  animation-delay: 0.4s;
  background: linear-gradient(135deg, var(--holiday-primary), #FFA500);
}

.holiday-balloons .balloon:nth-child(3) {
  left: 38%;
  top: 42%;
  animation-delay: 0.8s;
  background: linear-gradient(135deg, #6ac7d4, #4db8c4);
}

.holiday-balloons .balloon:nth-child(4) {
  left: 60%;
  top: 48%;
  animation-delay: 0.2s;
  background: linear-gradient(135deg, #A57C00, #C9A961);
}

.holiday-balloons .balloon:nth-child(5) {
  left: 75%;
  top: 44%;
  animation-delay: 0.6s;
  background: linear-gradient(135deg, #FFB6C1, #FF69B4);
}

/* Alias classes for direct targeting */
.balloon-1 { left: 8%; top: 40%; animation-delay: 0s; background: linear-gradient(135deg, #FF6B6B, #FF8787); }
.balloon-2 { left: 22%; top: 45%; animation-delay: 0.4s; background: linear-gradient(135deg, var(--holiday-primary), #FFA500); }
.balloon-3 { left: 38%; top: 42%; animation-delay: 0.8s; background: linear-gradient(135deg, #6ac7d4, #4db8c4); }
.balloon-4 { left: 60%; top: 48%; animation-delay: 0.2s; background: linear-gradient(135deg, #A57C00, #C9A961); }
.balloon-5 { left: 75%; top: 44%; animation-delay: 0.6s; background: linear-gradient(135deg, #FFB6C1, #FF69B4); }

.holiday-balloons .string {
  position: absolute;
  width: 2px;
  height: 90px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent);
  left: 50%;
  top: 80px;
  transform: translateX(-50%);
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.2);
  display: none;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(-6deg);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-40px) rotate(6deg);
    opacity: 0.95;
  }
  100% {
    transform: translateY(0) rotate(-6deg);
    opacity: 0.85;
  }
}

/* ============================================
   DECORATIONS - CONFETTI
   ============================================ */

.holiday-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.holiday-confetti .piece {
  position: absolute;
  width: 10px;
  height: 14px;
  opacity: 0.8;
  transform: rotate(0deg);
  animation: confettiFall linear infinite;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 0.9;
  }
  100% {
    transform: translateY(120vh) rotate(720deg);
    opacity: 0;
  }
}

/* ============================================
   DECORATIONS - TWINKLING STARS/LIGHTS
   ============================================ */

.holiday-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--holiday-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--holiday-primary);
  animation: twinkle 3s ease-in-out infinite;
  opacity: 0.6;
}

.star-1 { top: 15%; left: 8%; animation-delay: 0s; }
.star-2 { top: 22%; left: 18%; animation-delay: 0.5s; }
.star-3 { top: 12%; left: 35%; animation-delay: 1s; }
.star-4 { top: 28%; left: 75%; animation-delay: 0.3s; }
.star-5 { top: 18%; left: 88%; animation-delay: 1.5s; }
.star-6 { top: 35%; left: 12%; animation-delay: 0.8s; }
.star-7 { top: 32%; left: 65%; animation-delay: 1.2s; }
.star-8 { top: 25%; left: 45%; animation-delay: 1.8s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 12px var(--holiday-primary), 0 0 20px var(--holiday-primary); }
}

/* ============================================
   DECORATIONS - SPARKLES
   ============================================ */

.holiday-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.holiday-sparkles .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--holiday-primary), var(--holiday-secondary));
  border-radius: 50%;
  filter: drop-shadow(0 0 4px var(--holiday-primary));
  animation: sparkleFlash 0.6s ease-in-out forwards;
}

@keyframes sparkleFlash {
  0% {
    opacity: 0;
    transform: scale(0) translate(0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1) translate(-8px, -8px);
  }
  100% {
    opacity: 0;
    transform: scale(0) translate(-16px, -16px);
  }
}

/* ============================================
   DECORATIONS - RIBBONS
   ============================================ */

.holiday-ribbons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.ribbon {
  position: absolute;
  background: linear-gradient(90deg, var(--holiday-primary), var(--holiday-secondary), var(--holiday-primary));
  opacity: 0.15;
  animation: ribbonWave 4s ease-in-out infinite;
  filter: blur(1px);
}

.ribbon-1 {
  width: 200px;
  height: 8px;
  top: 25%;
  left: 0;
  animation-delay: 0s;
  transform-origin: left center;
}

.ribbon-2 {
  width: 180px;
  height: 8px;
  top: 50%;
  right: 0;
  animation-delay: 0.5s;
  transform-origin: right center;
}

.ribbon-3 {
  width: 200px;
  height: 8px;
  bottom: 25%;
  left: 50%;
  animation-delay: 1s;
  transform-origin: center;
}

@keyframes ribbonWave {
  0%, 100% { transform: scaleX(1) skewX(0deg); }
  25% { transform: scaleX(1.1) skewX(2deg); }
  50% { transform: scaleX(0.95) skewX(-2deg); }
  75% { transform: scaleX(1.05) skewX(1deg); }
}

/* ============================================
   DECORATIONS - LIGHT BEAMS
   ============================================ */

.holiday-light-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

.light-beam {
  position: absolute;
  background: linear-gradient(180deg, transparent, var(--holiday-primary), transparent);
  animation: beamSweep 5s ease-in-out infinite;
  filter: blur(20px);
}

.beam-1 {
  width: 120px;
  height: 300px;
  left: 10%;
  top: -50px;
  animation-delay: 0s;
}

.beam-2 {
  width: 100px;
  height: 280px;
  left: 50%;
  top: -40px;
  animation-delay: 1.5s;
}

.beam-3 {
  width: 130px;
  height: 320px;
  right: 10%;
  top: -60px;
  animation-delay: 3s;
}

@keyframes beamSweep {
  0%, 100% { opacity: 0.1; transform: translateY(0) rotate(-15deg); }
  50% { opacity: 0.4; transform: translateY(40px) rotate(0deg); }
}

/* ============================================
   DECORATIONS - THEME-SPECIFIC PARTICLES
   ============================================ */

.holiday-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.holiday-particles .particle {
  position: absolute;
  animation: particleFloat 3s ease-in infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) translateX(var(--drift)) scale(0.5) rotate(360deg);
  }
}

/* Easter-specific particles (flower petals) */
.holiday-easter .particle {
  width: 8px;
  height: 8px;
  background: #FFB6C1;
  border-radius: 50% 0;
}

/* Christmas-specific particles (snowflakes) */
.holiday-christmas .particle {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #fff 30%, transparent 70%);
  box-shadow: 0 0 4px rgba(255,255,255,0.8);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* New Year-specific particles (gold stars) */
.holiday-newyear .particle {
  width: 10px;
  height: 10px;
  background: #FFD700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 6px rgba(255,215,0,0.8);
}

/* Valentine-specific particles (hearts) */
.holiday-valentine .particle {
  width: 8px;
  height: 8px;
  background: #FF1744;
  clip-path: path('M0,3 C0,1.34,1.34,0,3,0 C4.66,0,6,1.34,6,3 C6,5.5,3,8,3,8 C3,8,0,5.5,0,3');
}

/* National holidays-specific particles (flags) */
.holiday-national .particle {
  width: 12px;
  height: 8px;
  background: linear-gradient(90deg, #CE181E 50%, #007A5E 50%);
}

/* Women's Day-specific particles (flowers) */
.holiday-women .particle {
  width: 10px;
  height: 10px;
  background: #E91E63;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(233,30,99,0.6);
}

/* Mothers Day-specific particles (flowers) */
.holiday-mothers .particle {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #FFB6C1, #FF1493);
  border-radius: 50%;
}

/* Fathers Day-specific particles (stars) */
.holiday-fathers .particle {
  width: 9px;
  height: 9px;
  background: #60A5FA;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Eid-specific particles (crescent moons) */
.holiday-eid .particle {
  width: 11px;
  height: 11px;
  background: #2ECC71;
  border-radius: 50%;
  box-shadow: inset 3px 0 0 #000;
}

/* ============================================
   HEADER ANIMATIONS
   ============================================ */

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .holiday-section {
    padding: 2.5rem 0;
  }

  .holiday-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .holiday-message {
    font-size: 1rem;
  }

  .holiday-balloons .balloon {
    width: 44px;
    height: 60px;
  }

  .holiday-balloons .balloon:nth-child(1) { left: 5%; }
  .holiday-balloons .balloon:nth-child(2) { left: 20%; }
  .holiday-balloons .balloon:nth-child(3) { left: 40%; }
  .holiday-balloons .balloon:nth-child(4) { left: 60%; }
  .holiday-balloons .balloon:nth-child(5) { left: 78%; }

  .holiday-cta-text {
    font-size: 1rem;
  }

  /* Reduce particles on mobile */
  .star { width: 2px; height: 2px; }
  
  .holiday-sparkles .sparkle { width: 3px; height: 3px; }
  
  .ribbon { height: 6px; opacity: 0.1; }
  
  .light-beam { filter: blur(15px); opacity: 0.15; }

  /* Theme-specific mobile adjustments */
  .easter-eggs-ring { width: 200px; height: 200px; }
  .egg { width: 28px; height: 38px; }

  .christmas-ornaments { width: 280px; height: 150px; }
  .ornament { width: 25px; height: 35px; }

  .valentine-hearts { width: 20px; height: 20px; }

  .mothers-flowers { width: 180px; height: 180px; }
  .flower { width: 20px; height: 20px; }

  .fathers-shields { width: 200px; height: 180px; }
  .shield { width: 40px; height: 50px; }

  .women-spirals .spiral { width: 40px; height: 40px; }

  .national-flags { height: 100px; }
  .flag { width: 35px; height: 25px; }

  .eid-lanterns { padding: 0 20px; }
  .lantern { width: 30px; height: 45px; }

  .labour-gears { width: 200px; height: 200px; }
  .gear { width: 60px; height: 60px; }
  .gear-2 { width: 45px; height: 45px; }
}

@media (max-width: 576px) {
  .holiday-section {
    padding: 1.5rem 0;
  }

  .holiday-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .holiday-title {
    font-size: 1.5rem;
  }

  .holiday-message {
    font-size: 0.9rem;
  }

  .holiday-media {
    max-height: 300px;
  }

  .holiday-balloons .balloon {
    width: 35px;
    height: 50px;
  }
}

/* ============================================
   THEME-SPECIFIC ADJUSTMENTS
   ============================================ */

/* Easter specific tweaks */
.holiday-easter .holiday-balloons .balloon:nth-child(3) {
  background: linear-gradient(135deg, #FFB8DD, #FF69B4);
}

/* Christmas specific tweaks */
.holiday-christmas .holiday-balloons .balloon:nth-child(2) {
  background: linear-gradient(135deg, #C4302B, #E53935);
}

.holiday-christmas .holiday-balloons .balloon:nth-child(4) {
  background: linear-gradient(135deg, #2D5016, #558B2F);
}

/* New Year specific tweaks */
.holiday-newyear .holiday-title {
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   THEME-SPECIFIC ELEMENTS
   ============================================ */

/* EASTER ELEMENTS - Rotating Eggs */
.easter-eggs-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 0;
}

.egg {
  position: absolute;
  width: 40px;
  height: 50px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), var(--holiday-primary));
  border-radius: 50% 50% 50% 45%;
  transform-origin: center;
  animation: eggRotate 8s linear infinite;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.egg-1 { left: 50%; top: 0; transform: rotateY(0deg); animation-delay: 0s; }
.egg-2 { left: 93%; top: 25%; animation-delay: 0.5s; }
.egg-3 { left: 93%; top: 75%; animation-delay: 1s; }
.egg-4 { left: 50%; top: 100%; animation-delay: 1.5s; }
.egg-5 { left: 7%; top: 75%; animation-delay: 2s; }
.egg-6 { left: 7%; top: 25%; animation-delay: 2.5s; }

@keyframes eggRotate {
  0% { transform: rotateX(0deg) rotateY(0deg); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: rotateX(360deg) rotateY(360deg); opacity: 0.6; }
}

.easter-cross-decoration {
  display: none;
}

/* CHRISTMAS ELEMENTS - Ornaments and Tree */
.christmas-ornaments {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  z-index: 0;
}

.ornament {
  position: absolute;
  width: 35px;
  height: 45px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), #C4302B);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset -2px -2px 5px rgba(0,0,0,0.3);
  animation: ornamentSwing 3s ease-in-out infinite;
}

.ornament::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #D4AF37;
  border-radius: 2px;
}

.ornament-1 { left: 5%; top: 20%; animation-delay: 0s; }
.ornament-2 { left: 22%; top: 5%; animation-delay: 0.3s; }
.ornament-3 { left: 50%; top: 0; animation-delay: 0.6s; }
.ornament-4 { left: 78%; top: 5%; animation-delay: 0.3s; }
.ornament-5 { right: 5%; top: 20%; animation-delay: 0s; }

@keyframes ornamentSwing {
  0%, 100% { transform: rotateZ(-10deg); }
  50% { transform: rotateZ(10deg); }
}

.christmas-tree {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 150px solid rgba(45, 80, 22, 0.15);
  z-index: 0;
  filter: blur(2px);
}

.christmas-star-top {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #FFD700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 0 0 20px #FFD700;
  display: none;
}

/* NEW YEAR ELEMENTS - Fireworks */
.fireworks-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  z-index: 0;
}

.firework {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--holiday-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--holiday-primary);
  animation: fireworkBurst 1.5s ease-out infinite;
}

.firework-1 { animation-delay: 0s; }
.firework-2 { animation-delay: 0.3s; }
.firework-3 { animation-delay: 0.6s; }
.firework-4 { animation-delay: 0.9s; }
.firework-5 { animation-delay: 1.2s; }

@keyframes fireworkBurst {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(0);
    opacity: 0;
  }
}

.newyear-banner-top {
  display: none;
}

/* VALENTINE ELEMENTS - Floating Hearts */
.valentine-hearts {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.heart {
  position: absolute;
  width: 30px;
  height: 30px;
  animation: heartFloat 4s ease-in-out infinite;
}

.heart::before,
.heart::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--holiday-primary);
  border-radius: 50%;
}

.heart::before { left: 0; }
.heart::after { right: 0; }

.heart-1 { left: 10%; top: 30%; animation-delay: 0s; }
.heart-2 { left: 40%; top: 25%; animation-delay: 0.5s; }
.heart-3 { left: 70%; top: 35%; animation-delay: 1s; }
.heart-4 { left: 25%; top: 60%; animation-delay: 0.7s; }
.heart-5 { left: 75%; top: 65%; animation-delay: 1.2s; }

@keyframes heartFloat {
  0%, 100% { transform: translateY(0) scale(0.8); opacity: 0.6; }
  50% { transform: translateY(-30px) scale(1); opacity: 1; }
}

/* MOTHERS DAY ELEMENTS - Flower Petals Ring */
.mothers-flowers {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  z-index: 0;
}

.flower {
  position: absolute;
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, var(--holiday-primary) 30%, var(--holiday-secondary) 70%);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,182,193,0.5);
  animation: flowerSway 4s ease-in-out infinite;
}

.flower-1 { left: 50%; top: 0; animation-delay: 0s; }
.flower-2 { left: 85%; top: 23%; animation-delay: 0.4s; }
.flower-3 { left: 73%; top: 73%; animation-delay: 0.8s; }
.flower-4 { left: 27%; top: 73%; animation-delay: 0.4s; }
.flower-5 { left: 15%; top: 23%; animation-delay: 0s; }

@keyframes flowerSway {
  0%, 100% { transform: scale(0.8) rotate(0deg); }
  50% { transform: scale(1) rotate(15deg); }
}

.mothers-flower-icon {
  display: none;
}

/* FATHERS DAY ELEMENTS - Strength Shields */
.fathers-shields {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 250px;
  z-index: 0;
}

.shield {
  position: absolute;
  width: 60px;
  height: 70px;
  background: linear-gradient(135deg, var(--holiday-primary), var(--holiday-secondary));
  clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 50% 85%, 0% 100%, 0% 25%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  animation: shieldPulse 3s ease-in-out infinite;
}

.shield-1 { left: 20%; top: 30%; animation-delay: 0s; }
.shield-2 { left: 50%; top: 0; animation-delay: 0.3s; transform: scale(1.2); }
.shield-3 { right: 20%; top: 30%; animation-delay: 0.6s; }

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* WOMEN'S DAY ELEMENTS - Ascending Spirals */
.women-spirals {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.spiral {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid var(--holiday-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: spiralAscend 5s ease-in-out infinite;
}

.spiral-1 { left: 15%; top: 50%; animation-delay: 0s; }
.spiral-2 { left: 40%; top: 60%; animation-delay: 0.5s; }
.spiral-3 { left: 65%; top: 50%; animation-delay: 1s; }
.spiral-4 { left: 85%; top: 70%; animation-delay: 1.5s; }

@keyframes spiralAscend {
  0% { transform: translateY(100px) scale(0); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.women-banner {
  display: none;
}

/* NATIONAL HOLIDAYS ELEMENTS - Flying Flags */
.national-flags {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flag {
  width: 50px;
  height: 35px;
  background: linear-gradient(90deg, #CE181E 50%, #007A5E 50%);
  animation: flagWave 2s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.flag-1 { animation-delay: 0s; }
.flag-2 { animation-delay: 0.15s; }
.flag-3 { animation-delay: 0.3s; }
.flag-4 { animation-delay: 0.15s; }
.flag-5 { animation-delay: 0s; }

@keyframes flagWave {
  0%, 100% { transform: skewX(0deg); }
  50% { transform: skewX(5deg); }
}

.national-flag-header {
  display: none;
}

/* EID ELEMENTS - Lanterns */
.eid-lanterns {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 50px;
}

.lantern {
  width: 40px;
  height: 60px;
  background: radial-gradient(ellipse at 50% 30%, rgba(255,215,0,0.4), rgba(255,215,0,0.1));
  border-radius: 50% 50% 40% 40%;
  border: 2px solid var(--holiday-primary);
  box-shadow: 0 0 15px var(--holiday-primary), inset 0 0 10px var(--holiday-primary);
  position: relative;
  animation: lanternGlow 2s ease-in-out infinite;
}

.lantern::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 10px;
  background: var(--holiday-primary);
  border-radius: 50% 50% 0 0;
}

.lantern-1 { animation-delay: 0s; }
.lantern-2 { animation-delay: 0.25s; }
.lantern-3 { animation-delay: 0.5s; }
.lantern-4 { animation-delay: 0.25s; }
.lantern-5 { animation-delay: 0s; }

@keyframes lanternGlow {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 15px var(--holiday-primary), inset 0 0 10px var(--holiday-primary); }
  50% { opacity: 1; box-shadow: 0 0 25px var(--holiday-primary), inset 0 0 20px var(--holiday-primary); }
}

.eid-crescent {
  display: none;
}

/* LABOUR DAY ELEMENTS - Rotating Gears */
.labour-gears {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 0;
}

.gear {
  position: absolute;
  width: 80px;
  height: 80px;
  background: conic-gradient(from 0deg, var(--holiday-primary) 0deg 30deg, transparent 30deg 60deg, var(--holiday-primary) 60deg 90deg, transparent 90deg 120deg, var(--holiday-primary) 120deg 150deg, transparent 150deg 180deg, var(--holiday-primary) 180deg 210deg, transparent 210deg 240deg, var(--holiday-primary) 240deg 270deg, transparent 270deg 300deg, var(--holiday-primary) 300deg 330deg, transparent 330deg 360deg);
  border-radius: 50%;
  animation: gearRotate 4s linear infinite;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.gear-1 { left: 20%; top: 40%; animation: gearRotate 4s linear infinite; }
.gear-2 { left: 50%; top: 10%; animation: gearRotate 4s linear infinite reverse; width: 60px; height: 60px; }
.gear-3 { right: 20%; top: 40%; animation: gearRotate 4s linear infinite; }

@keyframes gearRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .holiday-badge,
  .holiday-balloons .balloon,
  .holiday-confetti .piece,
  .holiday-carousel,
  .holiday-cta-link,
  .star,
  .holiday-sparkles .sparkle,
  .ribbon,
  .light-beam,
  .holiday-particles .particle {
    animation: none !important;
    transition: none !important;
  }

  .star {
    opacity: 0.5 !important;
  }

  .light-beam {
    opacity: 0.2 !important;
  }

  .ribbon {
    opacity: 0.15 !important;
  }
}

/* Print styles */
@media print {
  .holiday-section {
    display: none;
  }
}
