/* Hero Carousel Styles */
.hero-carousel-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 400px;
    overflow: hidden;
}

/* Container Mode - same width as content */
.hero-carousel-container.container-mode {
    width: calc(100% - 40px);
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 100%;
    max-width: 900px;
    padding: 20px;
    padding-bottom: 60px;
    text-align: center;
}

.hero-content h1,
.hero-content h2,
.hero-content .hero-title {
    color: white !important;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.hero-content p {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

/* Navigation Buttons */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    padding: 10px 12px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    opacity: 0.6;
}

.hero-nav:hover {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: 15px;
}

.hero-next {
    right: 15px;
}

/* Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {

    .hero-content h1,
    .hero-content h2,
    .hero-content .hero-title {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-nav {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }
}