.hero-section {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 910px;
    overflow: hidden;
    background-color: #000;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .slide img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(0.4) contrast(1.1);
    }

/* ================= TEXT OVERLAY ================= */
.hero-overlay-container {
    position: absolute !important;
    z-index: 10 !important;
    bottom: 12%;
    left: 8%;
    color: #ffffff;
    display: block;
    visibility: visible;
    width: 80% !important;
    max-width: 800px !important;
    pointer-events: none;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-display-title {
    font-size: clamp(3rem, 8vw, 5rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
    letter-spacing: -2px !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
}

.hero-subtext {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    margin-bottom: 35px !important;
    opacity: 0.95 !important;
    color: #ffffff !important;
    display: block !important;
}

.hero-schedule-row {
    display: flex;
    gap: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
}
/* Removed the extra } that was here */

.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.schedule-label {
    color: #f0d673;
}


/* ================= INDICATORS (DOTS) ================= */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

    .dot.active {
        background: #ffffff;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

/* Simple entry animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-display-title {
        font-size: 3rem;
    }

    .hero-schedule-row {
        gap: 20px;
        flex-direction: column;
    }

    .hero-overlay-container {
        bottom: 15%;
        left: 5%;
    }
}
