/* Reset & Base Setup */
.hr-desktop-slider { display: block; }
.hr-tablet-slider { display: none; }
.hr-mobile-slider { display: none; }

.h-100 { height: 100%; }

.hr-hero-banner.main-slider {
    height: 80vh; /* Responsive height based on screen size */
    min-height: 600px;
    max-height: 900px;
    position: relative;
    z-index: 2;
    padding: 0; /* Removed padding to let flexbox center properly */
}

.hr-hero-banner .swiper-container {
    height: 100%;
}

.hr-hero-swiper .swiper-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

/* Dark Warm Overlay over the image */
.hr-hero-swiper .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 15, 10, 0.65); /* Warm, dark overlay matching your image */
    z-index: 1;
}

/* Centered Content Wrapper */
.hero-banner-inner {
    position: relative;
    z-index: 2; /* Brings text above the dark overlay */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-banner-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

/* Typography Matching the Image */
.main-title {
    color: #ffffff;
    font-size: 52px;
    font-family: var(--font-01);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
    padding: 20px 0;
    margin: 0 0 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    width: 100%;
}

.sub-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 45px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Button Matching the Image */
.btn-solid-gold {
    background-color: #dfb13b; /* Gold color from the image */
    color: #ffffff;
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-solid-gold:hover {
    background-color: #c59828; /* Darker gold on hover */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Swiper Navigation Arrows */
.hr-hero-banner .swiper-button-prev, 
.hr-hero-banner .swiper-button-next {
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    transition: 0.3s ease;
}
.hr-hero-banner .swiper-button-prev:hover, 
.hr-hero-banner .swiper-button-next:hover {
    background: #dfb13b;
    color: #ffffff;
}
.hr-hero-banner .swiper-slide {
  transition: opacity 1.2s ease-in-out;
}
.custom-hero-pagination {
    position: absolute;
    bottom: 30px !important; /* Adjust distance from bottom */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.custom-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.5;
    margin: 0 6px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth expanding animation */
    cursor: pointer;
}

/* Hover effect for inactive dots */
.custom-hero-pagination .swiper-pagination-bullet:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Active Dot - Expands into a Pill */
.custom-hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    width: 35px; /* Expands to pill shape */
    border-radius: 10px;
    background: var(--color-1); /* Use your theme's brand color here (Orange/Gold) */
}
/* =========================================
   Responsive Design
   ========================================= */

@media screen and (max-width: 1024px) {
    .hr-desktop-slider { display: none; }
    .hr-tablet-slider { display: block; }
    .hr-mobile-slider { display: none; }
    
    .hr-hero-banner.main-slider {
        height: 60vh;
        min-height: 500px;
    }
    .main-title {
        font-size: 42px;
    }
    .sub-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 32px;
        padding: 15px 0;
    }
    .sub-title {
        font-size: 16px;
        margin-bottom: 35px;
    }
    .btn-solid-gold {
        padding: 14px 35px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .hr-desktop-slider { display: none; }
    .hr-tablet-slider { display: none; }
    .hr-mobile-slider { display: block; }

    .hr-hero-banner.main-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .main-title {
        font-size: 24px;
        line-height: 1.4;
        padding: 12px 0;
        border-width: 1px; /* Thinner borders on mobile */
    }
    .sub-title {
        font-size: 15px;
        line-height: 1.5;
    }
    .btn-solid-gold {
        padding: 12px 30px;
        width: 100%; /* Full width button on small mobile devices */
        text-align: center;
    }
}