/* ==========================================
   HERO SECTION
   Hero Styles and Carousel
   ========================================== */

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
    /* Blue background (no image) - images added via admin panel */
    background: var(--primary-blue);
}

/* Hero carousel backgrounds */
.hero-carousel-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

/* Ensure hero content appears above carousel */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Hero Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.15);
}

/* Responsive hero dots */
@media (max-width: 768px) {
    .hero-dots {
        bottom: 1rem;
        right: 1rem;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero h2 {
        font-size: 2rem;
    }
}
