/* Header Styles - ElderWorldsStudio Templates */

.header {
    background: linear-gradient(135deg, #6a5acd 0%, #9370db 50%, #ba55d3 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(106, 90, 205, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.header-content {
    position: relative;
    z-index: 2;
}

.company-logo {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.report-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.meta-item {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

/* Responsive Header */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }
    
    .company-logo {
        font-size: 2em;
    }
    
    .report-title {
        font-size: 1.4em;
    }
}