/* ========================================
   404 – Page Not Found
   ======================================== */

/* ---- Hero section ---- */
.not-found {
    position: relative;
    width: 100%;
    /* Full viewport height — header is fixed so it floats on top */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    /* Push content center down past the header bar */
    padding-top: 80px;
}

/* ---- Video background ---- */
.not-found__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.not-found__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Dark vignette overlay — matches the image which is darkened top & bottom */
.not-found__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0.70) 100%);
}

/* ---- Centred content ---- */
.not-found__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    gap: 1rem;
}

/* ---- Pill badge  "Page Not Found" ---- */
.not-found__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    font-family: 'Satoshi', 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-bottom: 0.5rem;
}

/* ---- Main heading ---- */
.not-found__title {
    font-family: 'Instrument Serif', 'Crimson Pro', Georgia, serif;
    font-size: 90px;
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin: 0;
}

/* ---- Sub-description ---- */
.not-found__desc {
    font-family: 'Satoshi', 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    font-weight: 500;
    margin: 0 auto 0.5rem;
}

/* ---- CTA Button ---- */
.not-found__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background-color: rgb(3, 25, 255);
    color: #fff;
    font-family: 'Satoshi', 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border-radius: 999px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(3, 25, 255, 0.45);
    margin-top: 0.5rem;
}

.not-found__btn:hover {
    background-color: rgb(30, 55, 255);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(3, 25, 255, 0.6);
    color: #fff;
    text-decoration: none;
}

.not-found__btn:active {
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 991px) {

    .not-found__title {
        font-size: 60px;
    }
}

@media (max-width: 768px) {

    .not-found__title {
        font-size: 45px;
    }

    .not-found__desc br {
        display: none;
    }

    .not-found__desc {
        font-size: 0.875rem;
    }


}

@media (max-width: 480px) {}