/* Patriotic Hero - Red/Black Gradient */

.hero-modern {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Deep Red to Black Gradient overlay on Image */
    background:
        linear-gradient(to bottom, rgba(139, 0, 0, 0.7), rgba(10, 10, 10, 0.9)),
        url('https://images.unsplash.com/photo-1572252009286-268acec5ca0a?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.hero-content-modern {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
    padding: 0 20px;
}

/* Gold Badge */
.hero-badge {
    display: inline-block;
    background: var(--brand-accent);
    /* Gold */
    color: #000;
    padding: 8px 25px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 25px;
    border-radius: 2px;
    /* Less rounded, more firm */
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #f0f0f0;
    max-width: 750px;
    margin: 0 auto 40px;
    font-weight: 400;
    opacity: 0.9;
}

/* Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-hero-primary {
    background: var(--brand-primary);
    /* Deep Red */
    color: #fff;
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid var(--brand-primary);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.btn-hero-primary:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--brand-accent);
    /* Gold Text */
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid var(--brand-accent);
    border-radius: 4px;
}

.btn-hero-secondary:hover {
    background: var(--brand-accent);
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
}