.elementor-247 .elementor-element.elementor-element-6f4a179f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-345fc904 *//* ===== VIXORAA PREMIUM HEADER — IMPERIAL COLLECTION ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --pure-gold: #D4AF37;
    --antique-gold: #C49A2B;
    --champagne: #F7E7CE;
    --obsidian-black: #0A0B0C;
    --raven-black: #121416;
    --charcoal-suede: #1E2124;
    --pearl-white: #F5F5F7;
    --smoke-silver: #8A8F99;
    --border-glow: rgba(212, 175, 55, 0.25);
}

/* ===== HEADER — STICKY, BLUR, DYNAMIC ===== */
.vixoraa-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 11, 12, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glow);
    padding: 12px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Header shrink on scroll */
.vixoraa-header.scrolled {
    padding: 8px 0;
    background: rgba(8, 9, 10, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* ===== LOGO AREA — BIG, BOLD, PREMIUM ===== */
.logo-area {
    display: flex;
    align-items: center;
    position: relative;
}

/* BIG LOGO — Brand name removed, only logo shines */
.logo-area img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pure-gold);
    padding: 5px;
    background: var(--obsidian-black);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 10;
}

/* Logo hover effect — Royal elevation */
.logo-area img:hover {
    transform: scale(1.08) rotate(3deg);
    border-color: var(--champagne);
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.7);
}

/* Dynamic glow animation */
.logo-area::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    z-index: 5;
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.95); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.95); }
}

/* ===== NAVIGATION — LUXURY TYPOGRAPHY ===== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    color: var(--pearl-white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

/* Gold underline animation — Signature VIXORAA */
.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pure-gold), var(--champagne));
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 10px var(--pure-gold);
}

.nav-menu a:hover {
    color: var(--pure-gold);
}

.nav-menu a:hover::before {
    width: 100%;
}

/* Active link state */
.nav-menu a.active {
    color: var(--pure-gold);
}

.nav-menu a.active::before {
    width: 100%;
}

/* ===== HEADER ACTION — LOGIN BUTTON ===== */
.header-action {
    display: flex;
    align-items: center;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    background: transparent;
    border: 1.5px solid var(--pure-gold);
    color: var(--pure-gold);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Button fill effect on hover */
.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--pure-gold), var(--antique-gold));
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.login-btn:hover {
    color: var(--obsidian-black);
    border-color: var(--pure-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.login-btn:hover::before {
    left: 0;
}

/* ===== RESPONSIVE DESIGN — FLAWLESS ===== */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 40px;
    }
    
    .nav-menu {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .logo-area img {
        width: 85px;
        height: 85px;
    }
    
    .logo-area::after {
        width: 95px;
        height: 95px;
    }
    
    .nav-menu a {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .login-btn {
        padding: 10px 26px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .logo-area img {
        width: 100px;
        height: 100px;
    }
    
    .logo-area::after {
        width: 110px;
        height: 110px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .header-action {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .login-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .logo-area img {
        width: 90px;
        height: 90px;
    }
    
    .logo-area::after {
        width: 100px;
        height: 100px;
    }
    
    .nav-menu {
        gap: 18px;
    }
    
    .nav-menu a {
        font-size: 12px;
        letter-spacing: 0.5px;
    }
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ===== SCROLL ANIMATION ===== */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.vixoraa-header {
    animation: headerSlideDown 0.6s ease-out;
}/* End custom CSS */