/* =========================================================================
   HERO SLIDER CSS
   ========================================================================= */

.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider-container {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Indicators */
.hero-slider-indicators {
    z-index: 20;
}

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

.hero-indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-indicator.active {
    background-color: #F7942E; /* highlight color */
    border-color: #fff;
    transform: scale(1.2);
}

/* Ensure content is clickable while hero container acts as background */
.pointer-events-none {
    pointer-events: none;
}
.pointer-events-auto {
    pointer-events: auto;
}
