/*
 * Custom Styles for the 404 Error Page
 * These styles are specifically targeted to avoid conflicts with the main site's CSS.
 */

/* Main container for the 404 page content */
.error-page-container {
    display: flex;
    flex-direction: column; /* Ensure content stacks vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    text-align: center;
    padding: 100px 20px; /* Generous vertical padding */
    min-height: 40vh; /* Ensure it takes up a good portion of the screen */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    width: 100%; /* Ensure it takes full width */
    max-width: 1100px; /* Limit overall width */
    margin: 0 auto; /* Center the container itself */
}

/* Inner container for the message and button */
.error-page-container .error-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto; /* Ensure horizontal centering */
    text-align: center; /* Explicitly center text within this container */
}

/* "Oops! The page you're looking for doesn't exist." */
.error-page-container .error-message {
    font-size: 2.5rem; /* Large, prominent text */
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* "It might have been moved or deleted." */
.error-page-container .error-submessage {
    font-size: 1.1rem;
    color: #6c757d; /* Softer color for secondary text */
    margin-bottom: 2.5rem;
}

/* "Go Back Home" button */
.error-page-container .btn-go-home {
    display: inline-block;
    background-color: #007bff; /* A standard, vibrant blue */
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.error-page-container .btn-go-home:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}
