/* #region LIGHT */

.hero-section-light {
    padding: 8rem 0 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-section-light h1 {
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.2;
}

.hero-section-light .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.hero-buttons-light .btn-primary {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    padding: 0.75rem 2rem;
    margin-top: 1rem;
}

.hero-buttons-light .btn-primary:hover {
    background-color: #0f1a2e;
    border-color: #0f1a2e;
}

.hero-buttons-light .btn-outline-primary {
    color: var(--primary-navy);
    border-color: var(--primary-navy);
    padding: 0.75rem 2rem;
    margin-top: 1rem;
}

.hero-buttons-light .btn-outline-primary:hover {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    color: white;
}

.hero-section-light img {

    width: 100%;
    height: 350px;
    object-fit: cover;
}

@media (max-width: 768px) {

    .hero-section-light img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
}

/* #endregion */



/* #region DARK */
.hero-section-dark {
    padding: 8rem 0 5rem 0;
    background: linear-gradient(135deg, #0f1a2e 0%, var(--primary-navy) 100%);
}

.hero-section-dark h1 {
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.hero-section-dark .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: white;
}

.hero-buttons-dark .btn-primary {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
    padding: 0.75rem 2rem;
    margin-top: 1rem;
}

.hero-buttons-dark .btn-primary:hover {
    background-color: #0f1a2e;
    border-color: #0f1a2e;
}

.hero-buttons-dark .btn-outline-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    padding: 0.75rem 2rem;
    color: white;
    margin-top: 1rem;
}

.hero-buttons-dark .btn-outline-primary:hover {
    background-color: #d97706;
    border-color: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
}

.hero-section-dark img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

@media (max-width: 768px) {

    .hero-section-dark img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
}

/* #endregion */
