/* ===================================
   404.CSS - Стили страницы ошибки
   =================================== */

/* === 404 Page Specific === */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.error-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.error-code {
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 900;
    background: linear-gradient(135deg, #848e76 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.error-actions .btn {
    min-width: 200px;
}

/* === Mobile === */
@media (max-width: 768px) {
    .error-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .error-actions .btn {
        width: 100%;
    }
}
