/*
    404 Page
    Porsche 911 Carrera S Cabriolet
*/

/* HERO */

.notfound-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.notfound-background {
    position: absolute;
    inset: 0;
    background-image: url("../img/hero/404.webp");
    background-size: cover;
    background-position: center;
}

.notfound-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, .95), rgba(5, 5, 5, .55), rgba(5, 5, 5, .25));
}

.notfound-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-top: 100px;
}

.notfound-content p:not(.accent) {
    max-width: 650px;
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

/* 404 */
.error-number {
    font-size: clamp(6rem, 14vw, 12rem);
    line-height: .9;
    font-weight: 800;
    color: var(--color-gold);
    margin: 25px 0;
}

/* INFO CARD */
.glass {
    padding: 50px;
}

.glass h2 {
    margin-top: 25px;
}

.glass p {
    max-width: 700px;
}

/* MOBILE */
@media (max-width:900px) {
    .notfound-background {
        background-position: 65% center;
    }

    .notfound-overlay {
        background: linear-gradient(180deg, rgba(5, 5, 5, .35), rgba(5, 5, 5, .95));
    }
}

@media (max-width:768px) {
    .glass {
        padding: 25px;
    }

    .notfound-content .button {
        width: 100%;
    }
}