.hr-eventz-slider-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    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; /* Push content to bottom by default */
    padding-bottom: 80px; /* Space from bottom edge */
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Wrapper to hold top-left, bottom-left and bottom-right elements */
.hero-banner-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* --- 2. Main Text Content Positioning (Bottom Left) --- */
.hero-text-content {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 600px;
    z-index: 2;
}

/* Subtitle "EXCLUSIVE CELEBRATIONS" */
.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: 14px;
}

/* Main Heading Title */
.hr-title {
    font-family: var(--font-03); /* Must use serif */
    font-size: 48px;
    font-weight: 400; /* Regular weight usually for elegant serif headings */
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px; /* Space for the underline */
}

/* Presale Chat Text at the very bottom */
.presale-chat {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 300;
    font-family: var(--font-03);
}

/* Original items styled just in case they are used */
.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; }

/* --- 3. Swiper Slide Number Styling (Bottom Right) --- */
.eventz-swiper-pagination-fraction {
    position: absolute;
    bottom: 110px; /* Distance from bottom */
    right: 50px; /* Within container boundaries */
    left: auto;
    width: auto;
    z-index: 10;
    color: #fff;
    display: flex;
    align-items: baseline;
    font-weight: 300;
    font-family: var(--font-03);
}

/* "Current" slide number (the "02" part) */
.eventz-swiper-pagination-fraction .swiper-pagination-current {
    font-size: 56px;
    line-height: 1;
    position: relative;
    margin-right: 25px;
}

/* Slash part */
/*.eventz-swiper-pagination-fraction::after {
    content: "/";
    font-size: 24px;
    margin-left: 5px;
    margin-right: 10px;
    opacity: 0.5;
}*/

/* "Total" slide number part (the "03" part) */
.eventz-swiper-pagination-fraction .swiper-pagination-total {
    font-size: 24px;
    opacity: 0.7;
    margin-left: 10px;
}

/* Custom Nav buttons, placed top right usually in minimalist design */
.eventz-nav-btn {
    top: 40px;
    right: 15px;
    color: #fff;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.swiper-button-next.eventz-nav-btn { right: 15px; }
.swiper-button-prev.eventz-nav-btn { right: 65px; left: auto; }
.eventz-nav-btn:after { font-size: 16px; }

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large Tablets / Small Desktops */
@media (max-width: 991px) {
    .eventz-slide {
        padding-bottom: 60px;
    }
    .hr-title {
        font-size: 36px;
    }
    .hero-logo-wrap {
        top: 20px;
    }
}

/* Tablets / Phablets */
@media (max-width: 767px) {
    .eventz-slide {
        height: auto;
        min-height: 700px;
        padding-top: 100px;
        align-items: center; /* Center content on smaller screens */
    }
    .hero-text-content {
        max-width: 90%;
        text-align: center;
    }
    .eventz-swiper-pagination-fraction {
        bottom: 20px;
        font-size: 14px;
    }
    .eventz-swiper-pagination-fraction .swiper-pagination-current {
        font-size: 36px;
    }
}