/* Custom CSS for Ambica Holidays */

/* Keyframes */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}

@keyframes glow {
    0% { 
        box-shadow: 0 0 20px rgba(201, 169, 110, 0.6); 
    }
    100% { 
        box-shadow: 0 0 30px rgba(201, 169, 110, 0.9), 0 0 40px rgba(255, 107, 107, 0.4); 
    }
}

@keyframes fadeInUp {
    0% { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    100% { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideInLeft {
    0% { 
        opacity: 0; 
        transform: translateX(-50px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes slideInRight {
    0% { 
        opacity: 0; 
        transform: translateX(50px); 
    }
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

/* Custom Classes */
.logo-container {
    filter: drop-shadow(0 0 25px rgba(201, 169, 110, 0.7)) brightness(1.1) contrast(1.2);
    mix-blend-mode: normal;
    background: radial-gradient(circle, rgba(255,248,240,0.9) 0%, rgba(201,169,110,0.15) 50%, transparent 70%);
    border-radius: 20px;
    padding: 1rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 169, 110, 0.4);
}

.logo-footer {
    filter: brightness(1.1) contrast(1.1);
    mix-blend-mode: normal;
    background: radial-gradient(circle, rgba(255,248,240,0.8) 0%, transparent 70%);
    border-radius: 15px;
    padding: 0.5rem;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.text-shadow {
    text-shadow: 1px 1px 3px rgba(255, 248, 240, 0.9), 2px 2px 6px rgba(45, 90, 90, 0.2);
}

.countdown-digit {
    background: linear-gradient(145deg, rgba(255, 248, 240, 0.9), rgba(184, 230, 230, 0.4));
    border: 2px solid rgba(201, 169, 110, 0.6);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(45, 90, 90, 0.15);
}

.contact-card {
    background: linear-gradient(145deg, rgba(255, 248, 240, 0.95), rgba(184, 230, 230, 0.6));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 169, 110, 0.5);
    box-shadow: 0 8px 32px rgba(45, 90, 90, 0.12);
}

.floating-contact {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 50;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.4) 0%, rgba(255, 107, 107, 0.3) 50%, transparent 100%);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.5);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Animations */
.hero-logo {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    animation: slideInRight 1s ease-out;
}

#countdown {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-contact {
        right: 1rem;
        bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .countdown-digit {
        padding: 1rem;
    }
}

/* Hover Effects */
.group:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4), 0 5px 20px rgba(255, 107, 107, 0.2);
    border-color: rgba(201, 169, 110, 0.7);
}

/* Background Video Styling */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Particles Container */
#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 20;
}