/**
 * Archive Hero Sections
 * Styling for Wear and Ward archive hero banners
 */

.archive-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(2, 11, 19, 0.95) 0%, rgba(2, 11, 19, 0.85) 100%);
}

.archive-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(212, 175, 55, 0.03) 35px,
            rgba(212, 175, 55, 0.03) 70px
        ),
        linear-gradient(135deg, rgba(2, 11, 19, 0.2) 0%, rgba(2, 11, 19, 0) 100%);
}

.archive-hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.archive-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.archive-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.archive-hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sovereign, #D4AF37);
    margin-bottom: 1.5rem;
}

.archive-hero-eyebrow svg {
    width: 18px;
    height: 18px;
}

.archive-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 400;
    color: rgba(250, 247, 242, 0.98);
    margin: 0 0 1rem 0;
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.archive-hero-subtitle {
    font-size: 18px;
    color: rgba(250, 247, 242, 0.72);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Decorative elements */
.archive-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: translateX(-50%);
    z-index: 2;
}

.archive-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transform: translateX(-50%);
    z-index: 2;
}

/* Ward-specific styling */
.ward-hero {
    background: linear-gradient(135deg, rgba(2, 11, 19, 0.96) 0%, rgba(10, 10, 10, 0.9) 100%);
}

/* Wear-specific styling */
.wear-hero {
    background: linear-gradient(135deg, rgba(2, 11, 19, 0.94) 0%, rgba(2, 11, 19, 0.88) 100%);
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .archive-hero {
        min-height: 380px;
    }

    .archive-hero-title {
        font-size: clamp(28px, 6vw, 48px);
    }

    .archive-hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .archive-hero {
        min-height: 340px;
        padding: 2rem 1rem;
    }

    .archive-hero-eyebrow {
        margin-bottom: 1rem;
    }

    .archive-hero-title {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 0.75rem;
    }

    .archive-hero-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .archive-hero {
        min-height: 300px;
    }

    .archive-hero-eyebrow {
        font-size: 10px;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .archive-hero-eyebrow svg {
        width: 16px;
        height: 16px;
    }

    .archive-hero-title {
        font-size: clamp(20px, 4vw, 28px);
        margin-bottom: 0.5rem;
    }

    .archive-hero-subtitle {
        font-size: 13px;
        line-height: 1.5;
    }
}
