/* Error Page Styles */

.error-page {
    padding: 100px 0 60px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.error-page:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 94, 20, 0.05);
    border-radius: 50%;
    transform: translate(100px, -150px);
    z-index: 0;
}

.error-page:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 94, 20, 0.05);
    border-radius: 50%;
    transform: translate(-100px, 100px);
    z-index: 0;
}

.error-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.error-image img {
    max-width: 100%;
    height: auto;
}

.error-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.error-number h1 {
    font-size: 120px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.error-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.error-content p {
    font-size: 18px;
    color: var(--paragraph-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.error-actions .btn-default {
    padding: 12px 25px;
}

.error-actions .btn-outline {
    padding: 12px 25px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.error-actions .btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.error-actions i {
    margin-right: 8px;
}

.error-help {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-help h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.error-help p {
    font-size: 16px;
    margin-bottom: 15px;
}

.help-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.help-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.help-link:hover {
    color: var(--heading-color);
}

.help-link:hover i {
    transform: translateX(5px);
}

/* Suggested Links Section */
.suggested-links {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.suggested-links-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 30px;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.suggested-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.suggested-link i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.suggested-link span {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    text-align: center;
    transition: all 0.3s ease;
}

.suggested-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
}

.suggested-link:hover i,
.suggested-link:hover span {
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .error-page {
        padding: 80px 0 50px;
    }
    
    .error-number h1 {
        font-size: 100px;
    }
    
    .error-content h2 {
        font-size: 30px;
    }
    
    .error-content p {
        font-size: 16px;
    }
    
    .suggested-links {
        padding: 50px 0 80px;
    }
    
    .suggested-link {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 767px) {
    .error-page {
        padding: 60px 0 40px;
    }
    
    .error-number h1 {
        font-size: 80px;
    }
    
    .error-content h2 {
        font-size: 24px;
    }
    
    .error-content {
        text-align: center;
    }
    
    .error-actions {
        justify-content: center;
    }
    
    .suggested-links {
        padding: 40px 0 60px;
    }
    
    .links-container {
        gap: 15px;
    }
    
    .suggested-link {
        width: 120px;
        height: 120px;
        padding: 15px;
    }
    
    .suggested-link i {
        font-size: 30px;
    }
    
    .suggested-link span {
        font-size: 14px;
    }
} 