/* Slider / Hero Styles */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: var(--header-height, 80px);
    /* Fallback */
}

/* Responsive Height */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 10;
    pointer-events: none;
}

.hero-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #e2e8f0;
}

.hero-buttons .btn {
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}