/* ============================================
   HOLIDAY THEME - CHRISTMAS & NEW YEAR 2026
   ============================================
   TEMPORARY STYLES - Remove after holidays
   ============================================ */

/* Holiday Hero Section Overlay */
.banner-style-2 {
    position: relative;
    overflow: hidden;
}

.banner-style-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.05) 0%, 
        rgba(255, 215, 0, 0.05) 50%, 
        rgba(0, 100, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.banner-style-2 .container {
    position: relative;
    z-index: 2;
}

/* Animated Snowflakes */
@keyframes snowfall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.holiday-snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: snowfall linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Holiday Banner Content Enhancements */
.banner-content {
    position: relative;
}

.banner-content .subheading {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(255, 215, 0, 0.2));
    border-radius: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-content h1 {
    position: relative;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3),
                 0 0 40px rgba(220, 20, 60, 0.2);
}

.banner-content h1 .cd-words-wrapper b {
    background: linear-gradient(135deg, #dc143c, #ffd700, #006400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holiday-glow 3s ease-in-out infinite;
}

@keyframes holiday-glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(220, 20, 60, 0.7));
    }
}

/* Holiday Message Badge */
.holiday-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #dc143c, #ffd700);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    animation: pulse-holiday 2s ease-in-out infinite;
}

@keyframes pulse-holiday {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }
}

/* Holiday Button Enhancement */
.banner-content .btn-main {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #dc143c, #ff6347);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
}

.banner-content .btn-main:hover {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.banner-content .btn-main::before {
    content: '🎄';
    position: absolute;
    left: -30px;
    transition: left 0.3s ease;
}

.banner-content .btn-main:hover::before {
    left: 10px;
}

.banner-content .btn-main::after {
    content: '✨';
    position: absolute;
    right: -30px;
    transition: right 0.3s ease;
}

.banner-content .btn-main:hover::after {
    right: 10px;
}

/* Floating Holiday Icons */
.holiday-icon {
    position: absolute;
    font-size: 2em;
    opacity: 0.6;
    animation: float-holiday 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.holiday-icon:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.holiday-icon:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.holiday-icon:nth-child(3) {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}

.holiday-icon:nth-child(4) {
    bottom: 20%;
    right: 5%;
    animation-delay: 1.5s;
}

.holiday-icon:nth-child(5) {
    top: 50%;
    left: 2%;
    animation-delay: 0.5s;
}

.holiday-icon:nth-child(6) {
    top: 35%;
    right: 3%;
    animation-delay: 2.5s;
}

.holiday-icon:nth-child(7) {
    bottom: 50%;
    left: 12%;
    animation-delay: 1.2s;
}

.holiday-icon:nth-child(8) {
    bottom: 10%;
    right: 15%;
    animation-delay: 0.8s;
}

.holiday-icon:nth-child(9) {
    top: 15%;
    left: 15%;
    animation-delay: 2.2s;
}

.holiday-icon:nth-child(10) {
    top: 60%;
    right: 8%;
    animation-delay: 1.8s;
}

.holiday-icon:nth-child(11) {
    bottom: 40%;
    right: 20%;
    animation-delay: 0.3s;
}

.holiday-icon:nth-child(12) {
    top: 40%;
    left: 20%;
    animation-delay: 2.8s;
}

@keyframes float-holiday {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .holiday-icon {
        font-size: 1.5em;
    }
    
    .holiday-snowflake {
        font-size: 1em;
    }
    
    .banner-content .subheading {
        padding: 6px 15px;
        font-size: 14px;
    }
    
    .holiday-badge {
        padding: 8px 20px;
        font-size: 12px;
    }
}

