/* Page Header Styles - Shared across pages */

/* Page Header Base */
.page-header {
    padding-top: 10rem;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1d21 50%, #1f2428 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232,93,4,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,93,4,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(232, 93, 4, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--orange-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.page-header-label::before {
    content: '//';
    opacity: 0.5;
}

.page-header-label::after {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.page-header p {
    color: var(--silver);
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 1.8;
}

/* Floating Geometric Shapes */
.page-header-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.page-header-shape {
    position: absolute;
    border: 1px solid rgba(232, 93, 4, 0.15);
    border-radius: 4px;
}

.page-header-shape:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    transform: rotate(15deg);
    animation: float1 12s ease-in-out infinite;
}

.page-header-shape:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 25%;
    transform: rotate(-10deg);
    animation: float2 10s ease-in-out infinite;
    border-color: rgba(232, 93, 4, 0.1);
}

.page-header-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 35%;
    transform: rotate(45deg);
    animation: float3 14s ease-in-out infinite;
    background: rgba(232, 93, 4, 0.03);
}

.page-header-shape:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 8%;
    border-radius: 50%;
    animation: float1 8s ease-in-out infinite reverse;
    background: rgba(232, 93, 4, 0.05);
    border: none;
}

.page-header-shape:nth-child(5) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 45%;
    transform: rotate(-20deg);
    animation: float2 16s ease-in-out infinite;
    border-color: rgba(255, 255, 255, 0.03);
}

.page-header-shape:nth-child(6) {
    width: 8px;
    height: 8px;
    top: 40%;
    right: 15%;
    border-radius: 50%;
    background: var(--orange);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
    border: none;
}

.page-header-shape:nth-child(7) {
    width: 6px;
    height: 6px;
    top: 55%;
    right: 40%;
    border-radius: 50%;
    background: var(--orange-light);
    opacity: 0.4;
    animation: pulse 4s ease-in-out infinite 1s;
    border: none;
}

/* Animations */
@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(-20px) rotate(20deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(15px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-12px) rotate(50deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header-label::before {
        display: none;
    }

    .page-header-shapes {
        opacity: 0.5;
    }
}
