/* 
   LUXURY FESTIVE THEME - NAVRATRI EDITION (V10)
   Euphorica Realty - Premium Aesthetic Fixed
*/

:root {
    --festive-purple: #1a0b33;
    --festive-gold: #D4AF37;
    --festive-saffron: #FF9933;
    --festive-shimmer: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(212,175,55,0.4) 50%, rgba(255,255,255,0) 100%);
}

/* 1. Top Festive Banner */
.festive-banner {
    background: var(--festive-purple) url('../images/festive/mandala.png') repeat;
    background-size: 300px;
    background-blend-mode: overlay;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
    z-index: 1005;
    border-bottom: 2px solid var(--festive-gold);
    cursor: pointer;
    white-space: nowrap;
}

.festive-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: var(--festive-shimmer);
    animation: festive-shimmer 4s infinite linear;
    pointer-events: none;
}

.festive-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 8px rgba(212,175,55,0.8);
    letter-spacing: 0.5px;
    display: inline-block;
}

/* 2. Navigation Adjustment (Fixing Logo Overlap) */
/* Push the fixed navbar down to account for the Banner + Top Bar */
.navbar-luxury {
    background: transparent !important;
    top: 90px !important; /* Banner (40) + TopBar (50) = 90 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.navbar-luxury.scrolled {
    top: 0px !important;
    background: rgba(26, 11, 51, 0.98) !important;
    border-bottom: 2px solid var(--festive-gold) !important;
}

.navbar-luxury .nav-links .nav-item {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important;
}

.navbar-luxury .brand-logo img {
    filter: drop-shadow(0 0 10px white) !important;
}

/* 3. Sitewide Particles */
.festive-petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.festive-petal {
    position: absolute;
    background: var(--festive-saffron);
    border-radius: 50% 0 50% 50%;
    opacity: 0.4;
    animation: festive-petal-fall linear infinite;
}

/* Animations */
@keyframes festive-shimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(100%); }
}

@keyframes festive-petal-fall {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
    20% { opacity: 0.4; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* 4. Festive Popup Variant */
.luxury-popup-card.festive-active {
    background: var(--festive-purple) url('../images/festive/mandala.png') !important;
    background-size: cover !important;
    border: 3px double var(--festive-gold) !important;
}

.luxury-popup-card.festive-active .popup-tag {
    background: var(--festive-gold) !important;
    color: var(--festive-purple) !important;
}

.luxury-popup-card.festive-active h2, 
.luxury-popup-card.festive-active p {
    color: #fff !important;
}

/* 5. Marquee Text Setup */
.festive-text-wrap {
    display: inline-block;
    padding-left: 100%;
    animation: festive-marquee 60s linear infinite;
}

@keyframes festive-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.mobile-menu-btn i { color: #ffffff !important; }
