/*
 * Hero Section Styles
 */

.hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(201, 137, 0, 0.18) 0%, #050409 70%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 191, 31, 0.14);
    border: 1px solid rgba(255, 191, 31, 0.35);
    color: var(--accent-cyan);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffe08a, var(--accent-cyan), var(--accent-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(180deg, #ffd24e 0%, var(--accent-cyan) 52%, var(--accent-violet) 100%);
    color: #120c00;
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.hero-cta:hover {
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
}
