/* ===== HEADER STYLES - EXTRACTED FROM STYLE.CSS ===== */
/* All header-section and tagline related styles */

/* Page Header */
.page-header {
    position: relative;
    z-index: 1000;
    background: transparent;
    padding: 0;
    margin: 0;
}

/* Small-screen header spacing tweaks */
@media (max-width: 768px) {
    .header-section { 
        padding: clamp(0.3rem, 1vh, 0.6rem) clamp(0.4rem, 2vw, 1rem); 
    }

    /* Mobile Header Section - Modern Design */
    .header-section {
        padding: 2rem 1.5rem 1rem 1.5rem;
        text-align: center;
        background:
            radial-gradient(circle at 20% 80%, rgba(139, 90, 92, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(107, 138, 170, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(122, 132, 113, 0.02) 0%, transparent 70%),
            rgba(230, 250, 230, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 0;
    }

    .tagline {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 1rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
}

/* Desktop tagline styles */
.tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* === ACCESSIBILITY: REDUCED MOTION SUPPORT === */
@media (prefers-reduced-motion: reduce) {
    .tagline {
        animation: none;
        background: #334155;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}
