/* ========================================
   HERO CAROUSEL STYLES
   ======================================== */

.hero-carousel-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-carousel-item {
    height: 85vh;
    min-height: 600px;
    background-color: #000;
    position: relative;
}

.hero-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8; /* Slight darken for text readability */
    transition: transform 6s ease;
}

/* Zoom Effect support */
.carousel-item.active .hero-carousel-img {
    transform: scale(1.05);
}

/* Overlay Gradient */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Caption Styling */
.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 900px;
    z-index: 2;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Button Group */
.hero-btns {
    animation: fadeInUp 1s ease-out 0.6s both;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffd700 0%, #e5ad3d 100%);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(229, 173, 61, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(229, 173, 61, 0.4);
    background: linear-gradient(135deg, #ffe033 0%, #f0c05a 100%);
    color: #000;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-carousel-item {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.1rem;
    }
    .hero-carousel-item {
        height: 85vh; /* Taller on mobile to fit content */
    }
    .hero-btns {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        width: auto;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}
