.hr-eventz-slider-section {
    position: relative;
    width: 100%;
    height: 750px; 
    overflow: hidden;
    background-color: #000;
}

.hr-eventz-swiper {
    width: 100%;
    height: 100%;
}

.eventz-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end; 
    padding-bottom: 80px; 
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Base overlay for desktop (transparent) */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
}

.slide-content-container {
    position: relative;
    z-index: 2; 
}

.hero-banner-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-text-content {
    position: absolute;
    left: 0;
    max-width: 675px;
    z-index: 2;
    top: 45%;
}

.hr-sub-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
    display: inline-block;
}

.red-underline {
    position: relative;
    display: inline-block;
    font-family: var(--font-03);
    font-size: 18px;
}
.hero-text-content p {
    font-size: 18px;
}

.hr-title {
    font-family: var(--font-03);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0px;
    position: relative;
    padding-bottom: 20px;
}

.presale-chat {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 300;
    font-family: var(--font-03);
}

.hr-desc { font-size: 16px; opacity: 0.8; margin-bottom: 25px; }
.hr-btns-wrap { margin-bottom: 30px; }
.btn-main { background-color: var(--gold); color: #000; padding: 12px 25px; text-transform: uppercase; font-size: 12px; font-weight: 600; border-radius: 4px; display: inline-block; }

.eventz-swiper-pagination-fraction {
    position: absolute;
    bottom: 110px;
    right: 50px; 
    left: auto;
    width: auto;
    z-index: 10;
    color: #fff;
    display: flex;
    align-items: baseline;
    font-weight: 300;
    font-family: var(--font-03);
}

.eventz-swiper-pagination-fraction .swiper-pagination-current {
    font-size: 56px;
    line-height: 1;
    position: relative;
    margin-right: 25px;
}

.eventz-swiper-pagination-fraction .swiper-pagination-total {
    font-size: 24px;
    opacity: 0.7;
    margin-left: 10px;
}

.swiper-button-next.eventz-nav-btn { right: 15px; }
.swiper-button-prev.eventz-nav-btn { left: 20px; }
.eventz-nav-btn {
    background: var(--color-1);
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 50%;
}
.eventz-nav-btn:hover {
    color: var(--color-1) !important;
    background: #fff;
}
.eventz-nav-btn:after { font-size: 16px; }

/* Ensure the parent slide can contain the absolute image */
.swiper-slide.eventz-slide {
    position: relative;
    overflow: hidden;
}

/* Make the image act like a background */
.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    z-index: -1; 
    aspect-ratio: 16/9;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 991px) {
    .eventz-slide { padding-bottom: 60px; }
    .hr-title { font-size: 36px; }
    .hero-text-content { top: 35%; }
}

@media (max-width: 767px) {
    .hr-eventz-slider-section {
        height: 80vh; 
        min-height: 500px;
    }
    .eventz-slide {
        align-items: center; 
    }
    .hero-text-content {
        top: auto; 
        left: 50%;
        transform: translateX(-50%); 
        width: 90%; 
        text-align: center;
    }
    .hr-title {
        font-size: 32px;
        padding-bottom: 15px;
    }
    .hero-text-content p { font-size: 16px; }
    .hr-btns-wrap {
        display: flex;
        justify-content: center;
        margin-bottom: 0;
    }
    .eventz-swiper-pagination-fraction {
        bottom: 30px;
        right: 30px;
    }
    .eventz-swiper-pagination-fraction .swiper-pagination-current {
        font-size: 40px;
        margin-right: 15px;
    }
    .eventz-swiper-pagination-fraction .swiper-pagination-total { font-size: 18px; }
}

/* --- EXPERT MOBILE METHOD: SOLID SPLIT DESIGN --- */
@media (max-width: 576px) {
    .hr-eventz-slider-section {
        height: auto; /* Let it grow naturally with the content */
        min-height: auto;
    }
    
    .eventz-slide {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Stack from top to bottom */
        padding-bottom: 40px;
        background-color: #000000 !important; 
        background-image: none !important;
    }

    /* Convert image from absolute background to a relative block */
    .slide-bg-image {
        position: relative; 
        width: 100%;
        height: auto; /* Scales proportionally */
        max-height: 50vh; /* Keeps it contained on long screens */
        object-fit: contain; /* SHOWS THE FULL IMAGE WITHOUT CUTTING */
        aspect-ratio: auto; /* Override desktop aspect ratio */
        z-index: 1;
    }

    /* We no longer need the black overlay hack because the content is stacked */
    .slide-overlay {
        display: none !important;
    }

    .slide-content-container {
        position: relative;
        height: auto !important; 
        display: block;
        width: 100%;
        margin-top: 20px; /* Spacing below the image */
    }

    .hero-banner-content-wrapper {
        height: auto !important;
        width: 100%;
    }

    /* Text flows naturally into the black space below the image */
    .hero-text-content {
        position: relative;
        top: 0 !important; 
        left: 0;
        transform: none;
        width: 100%;
        padding: 0 15px;
        text-align: center;
        background: transparent !important;
    }

    .red-underline {
        font-size: 16px;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }

    .hr-title {
        font-size: 26px; 
        padding-bottom: 12px;
        line-height: 1.3;
        margin-bottom: 3px;
    }
    
    .hero-text-content p {
        font-size: 16px; /* slightly smaller for mobile readability */
        margin-bottom: 20px;
        color: #D6D6D6;
        line-height: 1.4;
    }

    .btn-sale.presale-chat {
        display: inline-block;
        width: auto;
        min-width: 180px;
        padding: 12px 25px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 4px;
    }

    .eventz-swiper-pagination-fraction { display: none; }

    /* Centers arrows perfectly over the image half */
    .swiper-button-next.eventz-nav-btn, 
    .swiper-button-prev.eventz-nav-btn {
        top: 25% !important; 
        width: 36px !important;
        height: 36px !important;
        margin-top: 0;
        transform: translateY(-50%);
    }
    .swiper-button-prev.eventz-nav-btn { left: 10px; }
    .swiper-button-next.eventz-nav-btn { right: 10px; }
}