/* Error Page Component Styles */
.error-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-image {
    margin-bottom: 40px;
}

.error-illustration {
    max-width: 400px;
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.error-title {
    color: var(--primary-color);
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--montserrat-font), Arial, sans-serif;
}

.error-message {
    color: var(--text-color);
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--poppins-font), Arial, sans-serif;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--montserrat-font), Arial, sans-serif;
}

.error-btn i {
    font-size: 1.1em;
}

.error-btn-primary {
    background-color: var(--primary-color);
    color: var(--light-gray);
}

.error-btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

.error-btn-secondary {
    background-color: var(--secondary-color);
    color: var(--light-gray);
}

.error-btn-secondary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .error-title {
        font-size: 2.5em;
    }

    .error-message {
        font-size: 1.1em;
    }

    .error-illustration {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .error-page {
        padding: 40px 16px;
    }

    .error-title {
        font-size: 2em;
    }

    .error-message {
        font-size: 1em;
    }

    .error-illustration {
        max-width: 250px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-btn {
        width: 100%;
        justify-content: center;
    }
} /* 404 Page Specific Styles */

/* Page Layout */
.error-404-page {
    /* Estilos específicos de la página 404 */
}

/* Custom 404 styling */
.error-404-page .error-title {
    /* Personalización específica del título 404 si es necesaria */
}

/* 404-specific animations or effects */
.error-404-page .error-illustration {
    /* Efectos específicos para la ilustración 404 */
}

/* Additional 404 page customizations can be added here */ 