/* 404 Error Page Styles */

.error-hero {
    width: 100%;
    background: #621c6e url('../image/ribena-texture-bg.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 150px 0;
    min-height: 80vh;
    z-index: 1;
}

.error-container {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.error-hero__oops {
    font-family: "Gazpacho", serif;
    font-size: 100px;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 10px;
    color: #ffffff !important;
    text-transform: uppercase;
}

.error-hero__title {
    font-family: "Gazpacho", serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 20px;
}

.error-hero__description {
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 18px;
    color: #ffffff !important;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
}

.error-hero__btn {
    display: inline-block;
    background-color: #ffffff;
    color: #e3061b !important;
    padding: 12px 45px;
    border-radius: 50px;
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.error-hero__btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    color: #e3061b !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .error-hero__oops {
        font-size: 80px;
    }
    
    .error-hero__title {
        font-size: 36px;
    }
    
    .error-hero {
        padding: 100px 20px;
    }
}

@media (max-width: 576px) {
    .error-hero__oops {
        font-size: 60px;
    }
    
    .error-hero__title {
        font-size: 28px;
    }
    
    .error-hero__description {
        font-size: 18px;
    }
    
    .error-hero__btn {
        padding: 12px 35px;
        font-size: 16px;
    }
}
