/* ===================================
   HDS Theme - 404 Page Styles
   =================================== */

.error-404 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: var(--space-20);
    padding-bottom: var(--space-20);
    text-align: center; /* Ensure text is centered */
}

.error-404 .section-label {
    color: var(--color-accent);
}

.error-404 .section-title {
    font-size: clamp(4rem, 15vw, 10rem); /* Large, responsive 404 */
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-6);
    text-shadow: var(--shadow-lg);
}

.error-404 .section-description {
    font-size: var(--text-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-gray-700);
}

.error-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-10) !important; /* Override inline style */
}



@media (max-width: 640px) {
    .error-404 .section-title {
        font-size: clamp(3rem, 12vw, 6rem);
    }
}