/* ===== SECTION TITLES - THEME COLORS ===== */


/* ALL section headers - grid layout */

.section-header {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 auto 3rem auto !important;
    width: 100% !important;
    max-width: 1200px !important;
    position: relative !important;
    z-index: 100 !important;
}


/* ALL section titles - theme colors */

.section-title {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: 1px !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3) !important;
}


/* ALL section title spans - gradient theme colors */

.section-title span {
    background: linear-gradient(135deg, #ff6b6b, #feca57, #5f27cd) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline !important;
    position: relative !important;
}

.section-title span::after {
    content: '' !important;
    position: absolute !important;
    bottom: -5px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #ff6b6b, #feca57) !important;
    border-radius: 2px !important;
}


/* ALL section subtitles - theme colors */

.section-subtitle {
    font-size: 1.1rem !important;
    color: #c4b5d8 !important;
    font-weight: 400 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
}

.section-subtitle::before {
    content: '✦' !important;
    display: block !important;
    margin-bottom: 10px !important;
    color: #feca57 !important;
    font-size: 1.2rem !important;
}


/* Theme-colored decorations */

.section-header::before {
    content: '' !important;
    position: absolute !important;
    top: -20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100px !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #ff6b6b, #feca57, #5f27cd, transparent) !important;
    border-radius: 2px !important;
}


/* Responsive - Tablet */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem !important;
    }
}


/* Responsive - Mobile */

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem !important;
    }
    .section-subtitle {
        font-size: 0.95rem !important;
    }
    .section-title span::after {
        width: 40px !important;
    }
}