/* ===============================
   VEDANUT HOME HERO (Suvria Style)
================================ */

.hero {
    width: 100%;
    padding: 90px 0 120px;
    background: #f3e8d4; /* section background */
    position: relative;
    overflow: hidden;
}

/* Background texture */
.hero-bg {
    background: url('/assets/img/rice-texture.png');
    opacity: 0.18; /* softened texture */
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-repeat: repeat;
}

.hero-inner {
    width: 88%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT TEXT AREA */
.hero-left {
    width: 48%;
    padding-right: 20px;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 700;
    color: #1f3a24;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #3b5a45;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 35px;
}

/* BUTTONS (NOW MATCH GLOBAL) */
.hero-actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.hero-actions a {
    text-decoration: none;
}

/* RIGHT PRODUCT VISUAL AREA */
.hero-right {
    width: 48%;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-product-frame {
    position: relative;
    width: fit-content;
}

/* POUCH */
.hero-pouch {
    width: 360px;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0px 6px 18px rgba(0,0,0,0.15));
}

/* JAR */
.hero-jar {
    width: 240px;
    position: absolute;
    right: -65px;
    bottom: -25px;
    opacity: 0.92;
    z-index: 2;
    filter: drop-shadow(0px 4px 16px rgba(0,0,0,0.12));
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {

    .hero {
        padding: 70px 0 100px;
    }

    .hero-inner {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-product-frame {
        justify-content: center;
        width: 100%;
        display: flex;
    }

    .hero-pouch {
        width: 290px;
    }

    .hero-jar {
        width: 200px;
        right: -40px;
        bottom: -15px;
    }
}

@media (max-width: 600px) {

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        max-width: 90%;
    }

    .hero-pouch {
        width: 230px;
    }

    .hero-jar {
        width: 160px;
        right: -30px;
        bottom: -10px;
    }
}
