/* ===========================================
   VINESTA HOMEPAGE
   homepage.css — astra-child folder me upload karo
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500&display=swap');

/* =============================================
   HERO SECTION
   ============================================= */
.vn-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #2a0a14;
}

/* Background image */
.vn-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 8s ease;
}
.vn-hero:hover .vn-hero-bg { transform: scale(1.04); }

/* Dark overlay */
.vn-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30,5,15,0.35) 0%,
        rgba(30,5,15,0.55) 60%,
        rgba(30,5,15,0.7) 100%
    );
}

/* Hero content */
.vn-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 24px;
    max-width: 700px;
    margin: 0 auto;
}

.vn-hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C9A96E;
    margin: 0 0 20px;
    display: block;
}

.vn-hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 7vw, 72px);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 12px;
}

.vn-hero-heading em {
    font-style: italic;
    color: #e8d5b0;
}

.vn-hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 36px;
    line-height: 1.6;
    font-weight: 300;
}

.vn-hero-btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.6);
    padding: 14px 36px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.vn-hero-btn:hover {
    background: #C9A96E;
    border-color: #C9A96E;
    color: #fff;
}

/* Scroll indicator */
.vn-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.vn-hero-scroll span {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.vn-hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* =============================================
   SECTION LABELS
   ============================================= */
.vn-section-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C9A96E;
    display: block;
    text-align: center;
    margin: 0 0 10px;
}

/* =============================================
   CATEGORY SECTION
   ============================================= */
.vn-home-cats {
    padding: 60px 24px 48px;
    background: #FAF7F2;
    box-sizing: border-box;
}

.vn-home-cats-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #3D0A1E;
    text-align: center;
    margin: 0 0 36px;
    line-height: 1.3;
}

/* Override category grid inside homepage */
.vn-home-cats .vn-cat-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================
   BEST SELLERS SECTION
   ============================================= */
.vn-home-bs {
    padding: 60px 24px 64px;
    background: #fff;
    box-sizing: border-box;
}

.vn-home-bs-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #3D0A1E;
    text-align: center;
    margin: 0 0 36px;
}

/* Override best sellers inside homepage */
.vn-home-bs .vn-bs-wrap {
    padding: 0 !important;
}
.vn-home-bs .vn-bs-title { display: none; }
.vn-home-bs .vn-bs-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 768px) {
    .vn-hero { min-height: 85vh; }
    .vn-hero-heading { font-size: 36px; }
    .vn-hero-sub { font-size: 14px; }
    .vn-hero-btn { padding: 12px 28px; font-size: 11px; }

    .vn-home-cats,
    .vn-home-bs { padding: 40px 0 36px; }

    .vn-home-cats-title,
    .vn-home-bs-title { font-size: 26px; margin-bottom: 24px; }

    .vn-home-cats .vn-cat-grid,
    .vn-home-bs .vn-bs-grid {
        padding: 0 !important;
        gap: 6px !important;
    }
}
/* =============================================
   BEST SELLERS — Price & Button Colors
   ============================================= */

/* Price color — burgundy */
.vn-home-bs .vn-bs-price,
.vn-home-bs .vn-bs-price .woocommerce-Price-amount,
.vn-home-bs .vn-bs-price bdi {
    color: #3D0A1E !important;
}

/* Add to cart — outlined burgundy */
.vn-home-bs .vn-bs-cart {
    background: transparent !important;
    color: #3D0A1E !important;
    border: 1px solid #3D0A1E !important;
}
.vn-home-bs .vn-bs-cart:hover {
    background: #3D0A1E !important;
    color: #fff !important;
}

/* Buy Now — solid burgundy */
.vn-home-bs .vn-bs-buy {
    background: #3D0A1E !important;
    color: #fff !important;
    border: 1px solid #3D0A1E !important;
}
.vn-home-bs .vn-bs-buy:hover {
    background: #C9A96E !important;
    border-color: #C9A96E !important;
    color: #fff !important;
}

/* Category section — Shop Now button burgundy */
.vn-home-cats .vn-cat-btn {
    border-color: rgba(255,255,255,0.8) !important;
    color: #fff !important;
}
.vn-home-cats .vn-cat-item:hover .vn-cat-btn {
    background: #3D0A1E !important;
    color: #fff !important;
    border-color: #3D0A1E !important;
}
/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

/* Initial state — hidden */
.vn-home-cats,
.vn-home-bs {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Visible state — JS class lagayega */
.vn-home-cats.vn-visible,
.vn-home-bs.vn-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero — fade in on load */
.vn-hero-content {
    animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Hero full width — no side borders */
.vn-hero {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    max-width: 100vw !important;
}
/* Astra ast-container padding hatao homepage pe */
.home .ast-container,
.home #content .ast-container,
.home .site-content .ast-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
}

/* White space fix */
.home #content {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.home .ast-container > .elementor {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.vn-hero-eyebrow {
    font-size: 18px !important;
    letter-spacing: 2px !important;
    line-height: 1.6 !important;
    text-transform: none !important;
}
.vn-hero-heading {
    font-size: clamp(28px, 5vw, 52px) !important;
    color: #C9A96E !important;
    line-height: 1.3 !important;
}
/* Homepage body background — cream */
.home body,
body.home {
    background-color: #FAF7F2 !important;
}

/* Page content background */
.home #page,
.home .site,
.home #content,
.home .ast-container {
    background-color: #FAF7F2 !important;
}
.vn-home-bs {
    background: #FAF7F2 !important;
}
/* Hero heading — two lines styling */
.vn-hero-heading {
    font-size: clamp(28px, 5vw, 52px) !important;
    line-height: 1.2 !important;
    margin: 0 0 12px !important;
}

.vn-hero-heading strong,
.vn-hero-heading b {
    color: #C9A96E !important;
    font-weight: 700 !important;
    font-style: normal !important;
    display: block !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
}

.vn-hero-heading em {
    color: #F1E9DC !important;
    font-size: 0.65em !important;
    font-style: italic !important;
    letter-spacing: 3px !important;
    display: block !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
    font-weight: 400 !important;
}
/* Headings — Cinzel */
.vn-hero-heading,
.vn-home-cats-title,
.vn-home-bs-title,
.vn-bs-name,
.vn-cat-name {
    font-family: 'Cinzel', serif !important;
}

/* Body — Montserrat Light */
.vn-hero-sub,
.vn-hero-eyebrow,
.vn-section-label,
.vn-hero-btn,
.vn-cat-btn,
.vn-bs-btn,
.vn-bs-price,
.vn-bs-see-all {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
}
/* Fixed header ke liye body padding */
body {
    padding-top: 220px !important;
}

@media (max-width: 900px) {
    body {
        padding-top: 90px !important;
    }
}
/* Fixed header ke liye body padding */
body {
    padding-top: 135px !important;
}

@media (max-width: 900px) {
    body {
        padding-top: 80px !important;
    }
}
