/* ========================================
   HEADER CSS
   ======================================== */

.header-block {
    text-align: center;
    padding: 15px 0 10px;
    width: 100%;
}

.header-title {
    max-width: 450px;
    width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: -12px;
}

.sword {
    width: 70px;
    height: auto;
    opacity: 0.9;
}

.sword-left {
    transform: scaleX(-1);
}

.oldengland-text {
    font-family: var(--font-oldengland);
    font-size: 2.8rem;
    color: var(--red-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.header-subnav {
    margin-top: 4px;
}

.subnav-link {
    font-family: var(--font-oldengland);
    font-size: 1.6rem;
    color: var(--red-accent);
    text-decoration: underline;
    transition: color 0.2s;
}

.subnav-link:hover {
    color: #ff4444;
}

.subnav-diamond {
    color: var(--red-accent);
    font-size: 1.1rem;
    margin: 0 10px;
}

/* ---- Landing Page Header (No nav) ---- */
.header-landing .oldengland-text {
    font-size: 3.2rem;
}

.header-landing .header-title {
    max-width: 520px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .oldengland-text {
        font-size: 2rem;
    }

    .sword {
        width: 50px;
    }

    .header-title {
        max-width: 300px;
    }

    .subnav-link {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-block {
        padding: 10px 0 8px;
    }

    .oldengland-text {
        font-size: 1.5rem;
    }

    .sword {
        width: 38px;
    }

    .header-title {
        max-width: 220px;
        width: 90%;
    }

    .header-subtitle {
        margin-top: -8px;
        gap: 6px;
    }

    .subnav-link {
        font-size: 0.95rem;
    }

    .subnav-diamond {
        font-size: 0.8rem;
        margin: 0 6px;
    }

    .header-landing .oldengland-text {
        font-size: 1.8rem;
    }

    .header-landing .header-title {
        max-width: 260px;
    }
}
