/* COMMON HERO-STYLE SECTION HEADER */
@import './global.css';

.section-header {
    min-height: calc(100vh - 150px);
    /* Full screen height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background-color: #f9f9f9;
    border: 1px solid var(--border-light) solid !important;
}

.section-header h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header h2 span {
    position: relative;
    display: inline-block;
    color: var(--accent-pink);
}

.section-header .subtitle {
    font-size: 1.1rem;
    margin: 0 auto;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    background-color: var(--accent-pink);
    width: 100%;
    height: 4px;
    opacity: 0.1;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }
}