/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-white);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 0.1em;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .subheadline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--color-pink);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content .subheadline {
        font-size: 1.2rem;
    }
}