/* banner.css - Main banner and carousel styles */

/* =============================================
   MAIN BANNER
   ============================================= */
.main-banner .item {
    background-repeat: no-repeat;
    padding: 220px 20% 320px 20%;
    margin-top: 0px;
    height: 700px;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.main-banner .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.main-banner .item .header-text {
    position: relative;
    z-index: 2;
}

.main-banner .item-1 {
    background-image: url(../images/banner-01.jpg);
}

.main-banner .item-2 {
    background-image: url(../images/banner-02.jpg);
}

.main-banner .item-3 {
    background-image: url(../images/banner-03.jpg);
}

.main-banner .item span.category {
    background-color: #fff;
    color: #1e1e1e;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 6px 15px;
    display: inline-block;
    margin-bottom: 30px;
}

.main-banner .item span.category em {
    font-style: normal;
    color: #f35525;
}

.main-banner .item h2 {
    font-size: 62px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 72px;
    width: 50%;
    margin-bottom: 0px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* =============================================
   BANNER NAVIGATION
   ============================================= */
.main-banner .owl-dots {
    position: absolute;
    bottom: 60px;
    left: 20%;
    z-index: 2;
}

.main-banner .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all .5s;
}

.main-banner .owl-dots .active {
    background-color: #f35525;
}

.main-banner .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50px);
    z-index: 2;
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    display: inline-block;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 1;
    transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
    position: absolute;
    left: 45px;
}

.main-banner .owl-nav .owl-next i {
    position: absolute;
    right: 45px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 992px) {
    .main-banner .item {
        height: 550px;
        padding: 150px 10% 200px 10%;
    }

    .main-banner .item h2 {
        font-size: 48px;
        line-height: 56px;
        width: 70%;
    }

    .main-banner .owl-dots {
        left: 10%;
        bottom: 40px;
    }

    .main-banner .owl-nav .owl-prev i {
        left: 30px;
    }

    .main-banner .owl-nav .owl-next i {
        right: 30px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
    .main-banner .item {
        height: 450px;
        padding: 120px 20px 150px 20px;
        background-position: center center;
    }

    /* Darken overlay more on mobile for better text visibility */
    .main-banner .item::before {
        background: rgba(0, 0, 0, 0.35);
    }

    .main-banner .item h2 {
        font-size: 36px;
        line-height: 44px;
        width: 100%;
        /* Enhanced text shadow for mobile */
        text-shadow:
            3px 3px 6px rgba(0, 0, 0, 0.9),
            -2px -2px 4px rgba(0, 0, 0, 0.7),
            2px 2px 4px rgba(0, 0, 0, 0.7),
            0 0 10px rgba(0, 0, 0, 0.5);
    }

    .main-banner .item span.category {
        font-size: 14px;
        padding: 5px 12px;
        margin-bottom: 20px;
    }

    .main-banner .owl-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 30px;
    }

    .main-banner .owl-dots .owl-dot {
        width: 8px;
        height: 8px;
        margin-right: 8px;
    }

    /* Hide navigation arrows on mobile - dots are enough */
    .main-banner .owl-nav {
        display: none;
    }
}

/* =============================================
   RESPONSIVE - SMALL MOBILE
   ============================================= */
@media (max-width: 576px) {
    .main-banner .item {
        height: 400px;
        padding: 100px 15px 120px 15px;
    }

    .main-banner .item h2 {
        font-size: 28px;
        line-height: 36px;
        /* Extra strong shadow for small screens */
        text-shadow:
            3px 3px 8px rgba(0, 0, 0, 1),
            -2px -2px 6px rgba(0, 0, 0, 0.8),
            2px 2px 6px rgba(0, 0, 0, 0.8),
            0 0 15px rgba(0, 0, 0, 0.6);
    }

    .main-banner .owl-dots {
        bottom: 20px;
    }
}

/* =============================================
   ALTERNATIVE: TEXT STROKE EFFECT
   Use this if you prefer outlined text instead of shadow
   Uncomment the section below and comment out the text-shadow above
   ============================================= */
/*
@media (max-width: 768px) {
    .main-banner .item h2 {
        -webkit-text-stroke: 2px rgba(0, 0, 0, 0.8);
        text-stroke: 2px rgba(0, 0, 0, 0.8);
        paint-order: stroke fill;
    }
}

@media (max-width: 576px) {
    .main-banner .item h2 {
        -webkit-text-stroke: 3px rgba(0, 0, 0, 0.9);
        text-stroke: 3px rgba(0, 0, 0, 0.9);
    }
}
*/
