/*====================================================*/
/*===                404 Page Styles              ==*/
/*====================================================*/

.section-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 200px); /* Full viewport height minus header/footer estimate */
    background-color: #f8f9fa;
    padding: 40px 20px;
}

.container-404 {
    max-width: 600px;
}

.text-404 {
    font-size: 10rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
    text-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.section-404 h1 {
    font-size: 2.5rem;
    color: #343a40;
    margin-top: 0;
    margin-bottom: 1rem;
}

.section-404 p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.btn-home {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.btn-home:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
