/* Luxury Design System for ASAVARI */
:root {
    --primary-red: #8B0000;
    --dark-red: #4A0000;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --cream: #FFFDD0;
    --black: #0A0A0A;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--cream);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.brand-name {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 1px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    visibility: visible;
    /* Ensure they aren't hidden by visibility property */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback for No-JS or reveal issues */
.no-js .reveal {
    opacity: 1;
    transform: none;
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    transition: var(--transition);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--gold);
}


.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta-btn {
    display: none;
    /* Hidden by default */
    background: var(--gold);
    color: var(--black);
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.navbar.scrolled .nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta-btn:hover {
    background: var(--cream);
}

.menu-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section Refined - Luxury Split Screen Style */
.hero {
    height: 100vh;
    /* Fixed height for one-frame look */
    width: 100%;
    background: #4A0000;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 8% 0 8%;
    /* Adjust padding for framing */
}

/* Navigation Logo Styling */
.navbar-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
}

.navbar.scrolled .navbar-logo img {
    height: 45px;
}

.hero-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(139, 0, 0, 0.5) 0%, transparent 80%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    /* Tighter constraint for "one frame" feel */
    margin: 0 auto;
    z-index: 10;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-text-side {
    flex: 1.2;
    /* Slightly more space for text */
    text-align: left;
    padding-right: 20px;
}

.hero-visual-side {
    flex: 0.8;
    /* Slightly smaller for the visual to keep it in frame */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-pre-title {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /* Slightly smaller to fit frame */
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--cream);
    font-family: var(--font-heading);
    text-transform: capitalize;
}

.hero h1 .accent {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 253, 208, 0.7);
    max-width: 450px;
}

/* Logo Showcase Treatment */
.logo-showcase {
    position: relative;
    width: 100%;
    max-width: 380px;
    /* Constined to fit height */
}

.logo-showcase img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    /* Ensure it stays within viewport height */
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.4) 0%, transparent 75%);
    border-radius: 12px;
}

.showcase-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 8%;
    color: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    animation: bounce 2s infinite;
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 10px;
}

.btn {
    padding: 15px 35px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    min-width: 220px;
    text-align: center;
}

.btn:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

/* Updated Floating WhatsApp */
.whatsapp-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-cta-text {
    background: var(--gold);
    color: var(--black);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    pointer-events: none;
    opacity: 1;
    /* Always visible to encourage */
    transform: translateX(0);
    transition: var(--transition);
    white-space: nowrap;
    animation: bounceSlow 3s infinite;
}

@keyframes bounceSlow {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }
}

.whatsapp-float-container:hover .whatsapp-cta-text {
    background: var(--white);
}

.whatsapp-float {
    background-color: #25d366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-decoration: none;
    font-size: 1.8rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.2);
}

/* Collection Grid */
.collection {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-red) 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 20px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
}

.product-image-container {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 15px;
}

.price-on-request {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}

/* About Section */
.about {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--primary-red);
}

/* Why Us Section */
.why-us {
    padding: 80px 10%;
    background: var(--black);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.why-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Lightbox Structure */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    gap: 40px;
    background: var(--black);
    border: 1px solid var(--gold);
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: var(--gold);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-logo img {
        height: 40px;
    }

    .navbar.scrolled .nav-cta-btn {
        display: flex;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .nav-cta-btn span {
        display: none;
        /* Show only icon on small phones to save space */
    }

    @media (min-width: 480px) {
        .nav-cta-btn span {
            display: inline;
        }
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        /* Start from top to show close button */
        align-items: flex-start;
        padding: 40px 10%;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid var(--gold);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-close {
        display: block !important;
        margin-bottom: 50px;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 25px;
    }

    .nav-links li a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .why-us {
        grid-template-columns: 1fr;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 5% 100px 5%;
        /* Increased padding for framing */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .hero-text-side {
        text-align: center;
        padding-right: 0;
        width: 100%;
    }

    .hero-visual-side {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .logo-showcase {
        max-width: 260px;
        height: auto;
    }

    .logo-showcase img {
        max-height: 35vh;
        padding: 15px;
        border-radius: 8px;
    }

    .hero h1 {
        font-size: 2.3rem;
        /* Tighter for mobile with logo */
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        min-width: unset;
        margin: 0;
        padding: 14px;
        font-size: 0.8rem;
    }

    .mobile-sticky-footer {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--black);
        border-top: 1px solid rgba(212, 175, 55, 0.4);
        padding: 10px 15px;
        z-index: 1001;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
    }

    .sticky-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--gold);
        color: var(--black);
        text-align: center;
        padding: 12px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
    }

    .whatsapp-float-container {
        display: none !important;
        /* Hide floating elements on mobile to avoid clutter */
    }

    .about {
        flex-direction: column;
        padding: 60px 8%;
    }

    .how-works div {
        grid-template-columns: 1fr !important;
    }

    .testimonials div {
        grid-template-columns: 1fr !important;
    }

    .lightbox-content {
        flex-direction: column;
        padding: 20px;
    }
}


.mobile-sticky-footer {
    display: none;
}