/*=========================================================
    SANVI MASALE
    HOMEPAGE HERO BANNER
=========================================================*/


/*=========================================================
    HERO SECTION
=========================================================*/

.hero-section {

    position: relative;

    width: 100%;

    overflow: hidden;

    background: #160604;

}


/*=========================================================
    CAROUSEL
=========================================================*/

.hero-section .carousel,
.hero-section .carousel-inner {

    width: 100%;

}


.hero-section .carousel-item {

    width: 100%;

}


/*=========================================================
    HERO SLIDE
=========================================================*/

.hero-slide {

    position: relative;

    width: 100%;

    height: min(620px, 72vh);

    min-height: 500px;

    overflow: hidden;

}


/*=========================================================
    MAIN HERO IMAGE
=========================================================*/

.hero-banner-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transform: scale(1.02);

    transition:
        transform 7s ease;

}


.carousel-item.active
.hero-banner-image {

    transform: scale(1.07);

}


/*=========================================================
    MAIN IMAGE OVERLAY
=========================================================*/

.hero-image-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(20,4,2,0.72) 0%,
            rgba(20,4,2,0.42) 32%,
            rgba(20,4,2,0.05) 65%,
            rgba(20,4,2,0.10) 100%
        );

}


/*=========================================================
    CONTAINER
=========================================================*/

.hero-container {

    position: relative;

    z-index: 5;

    height: 100%;

    display: flex;

    align-items: center;

}


/*=========================================================
    HERO CONTENT
=========================================================*/

.hero-content {

    width: 100%;

    max-width: 650px;

    padding: 40px 0;

    color: #ffffff;

}


/*=========================================================
    HERO TAG
=========================================================*/

.hero-tag {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 18px;

    padding: 9px 16px;

    border: 1px solid
        rgba(255,193,7,0.50);

    border-radius: 30px;

    background:
        rgba(80,10,5,0.55);

    color: #FFC107;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.6px;

    backdrop-filter: blur(5px);

    animation:
        heroFadeUp 0.8s ease both;

}


/*=========================================================
    HERO HEADING
=========================================================*/

.hero-content h1 {

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 72px);

    font-weight: 900;

    line-height: 1.08;

    letter-spacing: -1.5px;

    text-shadow:
        0 5px 20px rgba(0,0,0,0.40);

    animation:
        heroFadeUp 0.9s ease 0.1s both;

}


.hero-content h1 span {

    display: block;

    color: #FFC107;

}


.hero-content p {

    max-width: 580px;

    margin: 0 0 28px;

    color:
        rgba(255,255,255,0.92);

    font-size: 16px;

    line-height: 1.8;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.35);

    animation:
        heroFadeUp 0.9s ease 0.2s both;

}


/*=========================================================
    HERO BUTTONS
=========================================================*/

.hero-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 30px;

    animation:
        heroFadeUp 0.9s ease 0.3s both;

}


.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 48px;

    padding: 0 23px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        all 0.35s ease;

}


.hero-btn i {

    transition:
        transform 0.3s ease;

}


.hero-btn:hover i {

    transform:
        translateX(5px);

}


/*=========================================================
    PRIMARY BUTTON
=========================================================*/

.hero-btn-primary {

    background: #C62828;

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,0.20);

}


.hero-btn-primary:hover {

    background: #A61919;

    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 14px 30px
        rgba(0,0,0,0.30);

}


/*=========================================================
    OUTLINE BUTTON
=========================================================*/

.hero-btn-outline {

    border:
        1px solid
        rgba(255,255,255,0.60);

    background:
        rgba(255,255,255,0.08);

    color: #ffffff;

    backdrop-filter:
        blur(5px);

}


.hero-btn-outline:hover {

    border-color: #ffffff;

    background: #ffffff;

    color: #C62828;

    transform:
        translateY(-3px);

}


/*=========================================================
    HERO FEATURES
=========================================================*/

.hero-features {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 22px;

    animation:
        heroFadeUp 0.9s ease 0.4s both;

}


.hero-feature {

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,0.88);

    font-size: 10px;

    font-weight: 600;

}


.hero-feature i {

    width: 27px;

    height: 27px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255,193,7,0.16);

    color: #FFC107;

    font-size: 11px;

}


/*=========================================================
    PRODUCT SLIDES
=========================================================*/

.hero-slide-product {

    background: #270807;

}


.hero-product-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 7s ease;

}


.carousel-item.active
.hero-product-image {

    transform: scale(1.05);

}


.hero-product-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(30,3,2,0.92),
            rgba(30,3,2,0.60) 40%,
            rgba(30,3,2,0.15) 75%,
            rgba(30,3,2,0.15)
        );

}


.hero-content-product {

    max-width: 620px;

}


.hero-content-product h2 {

    margin: 0 0 18px;

    color: #ffffff;

    font-size:
        clamp(38px,4.7vw,65px);

    font-weight: 900;

    line-height: 1.12;

    text-shadow:
        0 5px 20px rgba(0,0,0,0.40);

    animation:
        heroFadeUp 0.9s ease 0.1s both;

}


.hero-content-product h2 span {

    display: block;

    color: #FFC107;

}


.hero-content-product p {

    margin-bottom: 28px;

}


/*=========================================================
    CAROUSEL INDICATORS
=========================================================*/

.hero-section .carousel-indicators {

    z-index: 20;

    bottom: 24px;

    margin-bottom: 0;

    gap: 7px;

}


.hero-section .carousel-indicators button {

    width: 26px;

    height: 4px;

    margin: 0;

    border: 0;

    border-radius: 10px;

    opacity: 0.45;

    background: #ffffff;

    transition:
        all 0.35s ease;

}


.hero-section .carousel-indicators button.active {

    width: 45px;

    opacity: 1;

    background: #FFC107;

}


/*=========================================================
    SLIDER ARROWS
=========================================================*/

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {

    z-index: 20;

    width: 65px;

    opacity: 1;

}


.hero-slider-arrow {

    width: 45px;

    height: 45px;

    display: flex;

    justify-content: center;

    align-items: center;

    border:
        1px solid
        rgba(255,255,255,0.35);

    border-radius: 50%;

    background:
        rgba(0,0,0,0.22);

    color: #ffffff;

    backdrop-filter:
        blur(5px);

    transition:
        all 0.35s ease;

}


.hero-section
.carousel-control-prev:hover
.hero-slider-arrow,

.hero-section
.carousel-control-next:hover
.hero-slider-arrow {

    border-color: #FFC107;

    background: #C62828;

    color: #ffffff;

    transform:
        scale(1.08);

}


/*=========================================================
    SCROLL INDICATOR
=========================================================*/

.hero-scroll-indicator {

    position: absolute;

    right: 35px;

    bottom: 24px;

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,0.75);

    font-size: 9px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.hero-scroll-indicator i {

    color: #FFC107;

    animation:
        heroBounce 1.5s infinite;

}


/*=========================================================
    ANIMATIONS
=========================================================*/

@keyframes heroFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes heroBounce {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(5px);

    }

}


/*=========================================================
    TABLET
=========================================================*/

@media (max-width: 1199px) {

    .hero-slide {

        height: 560px;

    }


    .hero-content {

        max-width: 560px;

    }


    .hero-content h1 {

        font-size: 55px;

    }

}


/*=========================================================
    TABLET
=========================================================*/

@media (max-width: 991px) {

    .hero-slide {

        height: 520px;

        min-height: 480px;

    }


    .hero-image-overlay,
    .hero-product-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(25,3,2,0.85),
                rgba(25,3,2,0.48),
                rgba(25,3,2,0.22)
            );

    }


    .hero-content {

        max-width: 520px;

    }


    .hero-content h1 {

        font-size: 48px;

    }


    .hero-content p {

        font-size: 14px;

    }


    .hero-scroll-indicator {

        display: none;

    }

}


/*=========================================================
    MOBILE
=========================================================*/

@media (max-width: 767px) {

    .hero-slide {

        height: 570px;

        min-height: 570px;

    }


    .hero-banner-image,
    .hero-product-image {

        object-position:
            65% center;

    }


    .hero-image-overlay,
    .hero-product-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(20,3,2,0.88),
                rgba(20,3,2,0.62)
            );

    }


    .hero-container {

        align-items: center;

    }


    .hero-content {

        max-width: 100%;

        padding:
            30px 20px 50px;

        text-align: left;

    }


    .hero-tag {

        margin-bottom: 14px;

        font-size: 10px;

    }


    .hero-content h1 {

        font-size: 40px;

        letter-spacing: -0.8px;

    }


    .hero-content p {

        max-width: 430px;

        font-size: 13px;

        line-height: 1.7;

    }


    .hero-buttons {

        margin-bottom: 22px;

    }


    .hero-btn {

        min-height: 45px;

        padding:
            0 18px;

        font-size: 11px;

    }


    .hero-features {

        gap: 12px;

    }


    .hero-feature {

        font-size: 9px;

    }


    .hero-feature i {

        width: 24px;

        height: 24px;

    }


    .hero-content-product h2 {

        font-size: 37px;

    }


    .hero-section
    .carousel-control-prev,
    .hero-section
    .carousel-control-next {

        width: 48px;

    }


    .hero-slider-arrow {

        width: 36px;

        height: 36px;

        font-size: 12px;

    }


    .hero-section .carousel-indicators {

        bottom: 18px;

    }

}


/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 480px) {

    .hero-slide {

        height: 560px;

        min-height: 560px;

    }


    .hero-content {

        padding:
            25px 15px 45px;

    }


    .hero-content h1 {

        font-size: 34px;

    }


    .hero-content p {

        font-size: 12px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-btn {

        width: 100%;

    }


    .hero-features {

        display: grid;

        grid-template-columns:
            repeat(2,1fr);

    }


    .hero-feature {

        font-size: 8px;

    }


    .hero-content-product h2 {

        font-size: 31px;

    }

}