/* Hero Section Styles */
.hero {
    min-height: 100vh;
    background-color: var(--color-background-dark);
    position: relative;
    padding: var(--space-xl) 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section {
    padding: var(--section-spacing-y) 0;
}

.hero-content {
    max-width: 540px;
    position: relative;
    z-index: 3;
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

.hero-headline {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--element-spacing-y);
    line-height: 1.2;
    color: var(--color-text-light);
    text-align: center;
}

.hero-subheading {
    font-size: var(--font-size-base);
    margin-bottom: var(--content-spacing-y);
    line-height: 1.6;
    opacity: 0.9;
    color: var(--color-text-light);
    text-align: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.hero-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(9, 18, 47, 0.8) 0%,
        rgba(9, 18, 47, 0.7) 100%
    );
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: var(--button-spacing);
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    transition: transform 0.2s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--color-text-light);
    color: var(--color-text-light);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--color-text-light);
    color: var(--color-background-dark);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-headline {
        font-size: calc(var(--font-size-h1) * 0.8);
    }
}
