/* 404 Error Page Styles */
.error-404-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-standard) 0;
}

.error-404-wrapper .error-404-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 30vh 20px 0;
}

.error-404-wrapper .error-404-title {
    font-size: 40px;
    line-height: 60px;
    color: var(--color-white);
    font-weight: 400;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    text-align: center;
}

.error-404-wrapper .error-404-title strong {
    font-weight: 600;
}

.error-404-wrapper .error-404-buttons {
    justify-content: center;
    margin-top: 40px;
}

.error-404-wrapper .error-404-button.yellow-button .wp-block-button__link {
    background-color: var(--color-yellow);
    color: var(--color-nav-gray);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid var(--color-yellow);
    text-decoration: none;
    display: inline-block;
    font-size: var(--font-size-button-primary, 1.8rem);
    line-height: var(--font-lh-button-primary, 2.2rem);
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-404-wrapper .error-404-button.yellow-button .wp-block-button__link:hover {
    background-color: var(--color-nav-gray);
    color: var(--color-yellow);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .error-404-wrapper .error-404-title {
        font-size: 32px;
        line-height: 48px;
        margin: 0 0 30px 0;
    }
    
    .error-404-wrapper .error-404-container {
        padding: 30px 15px;
    }
    
    .error-404-wrapper .error-404-buttons {
        margin-top: 30px;
    }
}

@media screen and (max-width: 480px) {
    .error-404-wrapper .error-404-title {
        font-size: 28px;
        line-height: 42px;
    }
    
    .error-404-wrapper .error-404-button.yellow-button .wp-block-button__link {
        padding: 10px 24px;
        font-size: 1.6rem;
    }
} 