/* Error Page Styles */
body {
    padding-top: 76px; /* Account for fixed navbar */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-section {
    flex: 1;
    padding: 4rem 0;
    text-align: center;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
}

.error-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1;
}

.error-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.error-message {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

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

.error-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.error-button:hover {
    background-color: #e61918;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-code {
        font-size: 6rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-message {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .error-buttons {
        flex-direction: column;
        align-items: center;
    }

    .error-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
} 