/* =============================================
   Saola Farm — 404 Page Styles
   Location: saola-farm-module/assets/css/404.css
   ============================================= */

.sfm-404-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    font-family: 'Montserrat', sans-serif !important;
}

.sfm-404-inner {
    max-width: 600px;
    width: 100%;
}

/* Số 404 lớn */
.sfm-404-code {
    font-size: clamp(100px, 15vw, 180px);
    font-weight: 900;
    color: #117552;
    line-height: 0.8;
    margin: 0;
    letter-spacing: -5px;
    text-shadow: 10px 10px 0px rgba(0,0,0,0.03);
}

/* Tiêu đề */
.sfm-404-title {
    font-size: clamp(20px, 5vw, 28px);
    color: #333;
    margin: 20px 0 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Đoạn văn mô tả */
.sfm-404-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Nút bấm quay về trang chủ */
.sfm-404-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: #117552;
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(17, 117, 82, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sfm-404-home-btn:hover {
    background-color: #0b4f37; /* Màu hover tối hơn một chút */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(17, 117, 82, 0.4);
}

/* Responsive cho Mobile nhỏ */
@media (max-width: 480px) {
    .sfm-404-wrapper {
        padding: 60px 15px;
        min-height: 60vh;
    }
    .sfm-404-desc {
        font-size: 14px;
    }
}
