/* Hero Widget Styles */
.hero-widget {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-widget--dark {
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    color: #fff;
}

.hero-widget--light {
    background: #f8f9fa;
    color: #0a0a0f;
}

.hero-widget--gradient {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #2d1b4e 100%);
    color: #fff;
}

.hero-widget__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-widget__headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-widget--dark .hero-widget__headline,
.hero-widget--gradient .hero-widget__headline {
    color: var(--color-accent-lime, #D6F08D);
}

.hero-widget__subheadline {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-widget__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-widget__headline {
        font-size: 2.5rem;
    }

    .hero-widget__subheadline {
        font-size: 1.25rem;
    }
}
