.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;
    left: 0;
    max-width: 675px;
    z-index: 2;
    top: 45%;
}

/* 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: 18px;
}
.hero-text-content p {
    font-size: 18px;
}

/* Main Heading Title */
.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 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 */

.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; }

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

/* Large Tablets / Small Desktops */
@media (max-width: 991px) {
    .eventz-slide { padding-bottom: 60px; }
    .hr-title { font-size: 36px; }
    .hero-text-content { top: 35%; }
    .hero-logo-wrap { top: 20px; }
}

/* Tablets / Phablets */
@media (max-width: 767px) {
    .hr-eventz-slider-section {
        height: 80vh; 
        min-height: 500px;
    }
    .eventz-slide {
        padding-bottom: 40px;
        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; }
}
@media (max-width: 576px) {
    .hr-eventz-slider-section {
        height: 85vh; /* Gives the slider enough room on phones */
        min-height: 600px;
    }
    
    .eventz-slide {
        background-size: contain !important; /* Ensure image fits */
        background-position: top center !important; /* Pin image to top */
        background-color: #050505 !important; /* Dark background for text area */
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Push content to bottom */
        padding-bottom: 25px;
    }

    /* Remove gradient overlay so image colors are bright */
    .eventz-slide::before {
        display: none !important;
    }

    /* Force the container to ONLY take the bottom half of the screen */
    .eventz-slide > .container {
        height: 55% !important; /* Top 45% is left completely empty for the image */
        display: flex;
        align-items: center; /* Vertically center the text in the bottom half */
    }

    .hero-banner-content-wrapper {
        height: auto !important;
        width: 100%;
    }

    /* Release absolute positioning so text stacks normally */
    .hero-text-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        padding: 0 10px;
        text-align: center;
    }

    .red-underline {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .hr-title {
        font-size: 24px; 
        padding-bottom: 10px;
        line-height: 1.3;
    }
    
    .hero-text-content p {
        font-size: 18px; 
        margin-bottom: 20px;
        color: #E0E0E0;
    }

    /* Full width tap-friendly button */
    .btn-sale.presale-chat {
        display: block;
        width: 100%;
        padding: 15px 0;
        font-size: 15px;
        font-weight: 600;
    }

    /* Hide large slide numbers to save space */
    .eventz-swiper-pagination-fraction { display: none; }

    /* Move navigation arrows UP so they hover over the image, not the text */
    .swiper-button-next.eventz-nav-btn, 
    .swiper-button-prev.eventz-nav-btn {
        top: 25%; /* Centers arrows in the top half of the screen */
        width: 35px !important;
        height: 35px !important;
    }
    .swiper-button-prev.eventz-nav-btn { left: 10px; }
    .swiper-button-next.eventz-nav-btn { right: 10px; }
}