/* ========================================
   HERO SECTION STYLES
   Full-screen carousel with text overlay
   ======================================== */

/* Hero Section Container */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Active slide */
.hero-slide.active {
    opacity: 1;
}

/* Background Images */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-lg);
}

/* Small Top Text */
.hero-subtitle {
    font-size: var(--text-lg);
    font-weight: var(--font-regular);
    color: var(--text-light);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
}

/* Main Hero Title */
.hero-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: var(--font-bold);
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
    opacity: 0;
    transform: translateY(30px);
}

/* CTA Button */
.hero-cta {
    opacity: 0;
    transform: translateY(40px);
}

.hero-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Button hover effect */
.hero-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(253, 52, 19, 0.3);
}

/* Button ripple effect on hover */
.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Carousel Dots/Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 4;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    width: 40px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Animation classes for GSAP */
.hero-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-lg);
    }
    
    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: var(--text-sm);
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
}