/* ============================================
   VEGETABLES PAGE - HERO VIDEO BACKGROUND
   Prefix: sgn-veg-
   ============================================ */

/* Main hero wrapper */
.sgn-veg-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background video */
.sgn-veg-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for text readability */
.sgn-veg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    z-index: 2;
}

/* Content wrapper – sits above video & overlay */
.sgn-veg-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 10em 0;
}

/* Ensure heading stays white and readable */
.sgn-veg-hero-content .bread {
    font-weight: 800;
    color: #fff;
    font-size: 30px;
    font-family: "Poppins", Arial, sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .sgn-veg-hero {
        min-height: 50vh;
    }

    .sgn-veg-hero-content {
        padding: 7em 0;
    }
}

@media (max-width: 767.98px) {
    .sgn-veg-hero {
        min-height: 40vh;
    }

    .sgn-veg-hero-content {
        padding: 5em 0;
    }

    .sgn-veg-hero-content .bread {
        font-size: 24px;
        letter-spacing: 2px;
    }
}
