/* =====================================================
   GFC – IMPRINT PAGE
   Global Fighter Competition
===================================================== */


/* =====================================================
   HERO
===================================================== */

.imprint-hero {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .92)
        ),
        radial-gradient(
            circle at center,
            rgba(214, 28, 36, .16),
            transparent 55%
        ),
        #050505;
}


.imprint-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .9),
            transparent 50%,
            rgba(0, 0, 0, .9)
        );

    pointer-events: none;
}


.imprint-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 28, 36, .10),
            transparent 50%
        );
}


.imprint-hero-content {

    position: relative;

    z-index: 2;

    width: 90%;

    max-width: 1100px;
}


.imprint-hero-content h5 {

    margin-bottom: 25px;

    color: #D61C24;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 5px;
}


.imprint-hero-content h1 {

    margin: 0 0 25px;

    color: #fff;

    font-size: 72px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: -2px;
}


.imprint-hero-content p {

    color: #aaa;

    font-size: 18px;
}


/* =====================================================
   MAIN
===================================================== */

.imprint-section {

    padding: 120px 0 140px;

    background: #050505;
}


.imprint-container {

    width: 90%;

    max-width: 1100px;

    margin: 0 auto;
}


/* =====================================================
   INTRO
===================================================== */

.imprint-intro {

    margin-bottom: 70px;

    padding-bottom: 40px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}


.imprint-intro span {

    display: block;

    margin-bottom: 15px;

    color: #D61C24;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;
}


.imprint-intro h2 {

    margin: 0 0 15px;

    color: #fff;

    font-size: 42px;

    font-weight: 800;
}


.imprint-intro p {

    margin: 0;

    color: #777;

    font-size: 14px;
}


/* =====================================================
   CARDS
===================================================== */

.imprint-card {

    position: relative;

    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 35px;

    margin-bottom: 25px;

    padding: 42px;

    background:
        linear-gradient(
            145deg,
            #131313,
            #0c0c0c
        );

    border: 1px solid rgba(255, 255, 255, .07);

    border-radius: 24px;

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.imprint-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 3px;

    height: 100%;

    background: #D61C24;

    opacity: .75;
}


.imprint-card:hover {

    transform: translateY(-3px);

    border-color: rgba(214, 28, 36, .45);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .35);
}


/* =====================================================
   NUMBER
===================================================== */

.imprint-number {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #080808;

    border: 2px solid #D61C24;

    color: #D61C24;

    font-size: 17px;

    font-weight: 900;

    box-shadow:
        0 0 0 7px rgba(214, 28, 36, .04);
}


/* =====================================================
   CONTENT
===================================================== */

.imprint-content {

    min-width: 0;
}


.imprint-content h2 {

    margin: 4px 0 25px;

    color: #fff;

    font-size: 29px;

    font-weight: 800;

    line-height: 1.2;
}


.imprint-content p {

    margin: 0 0 18px;

    color: #b5b5b5;

    font-size: 16px;

    line-height: 1.85;
}


.imprint-content p:last-child {

    margin-bottom: 0;
}


/* =====================================================
   COMPANY
===================================================== */

.imprint-company {

    padding: 28px;

    background: #080808;

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 16px;
}


.imprint-company strong {

    color: #fff;

    font-size: 17px;
}


.imprint-company p {

    margin-top: 12px;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-details {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}


.contact-details p {

    margin: 0;

    padding: 25px;

    background: #080808;

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 16px;
}


.contact-details strong {

    color: #fff;

    font-size: 14px;
}


.contact-details a {

    display: inline-block;

    margin-top: 8px;

    color: #aaa;

    text-decoration: none;

    transition: .3s;
}


.contact-details a:hover {

    color: #D61C24;
}


/* =====================================================
   NOTICE
===================================================== */

.imprint-notice {

    padding: 22px 25px;

    color: #D61C24;

    background: #080808;

    border: 1px solid rgba(214, 28, 36, .25);

    border-radius: 15px;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   FINAL
===================================================== */

.imprint-final {

    margin-top: 80px;

    padding: 70px 40px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(214, 28, 36, .12),
            transparent 60%
        ),
        #090909;

    border: 1px solid rgba(214, 28, 36, .25);

    border-radius: 28px;
}


.imprint-final span {

    display: block;

    margin-bottom: 15px;

    color: #D61C24;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;
}


.imprint-final h2 {

    margin: 0 0 30px;

    color: #fff;

    font-size: 28px;
}


/* =====================================================
   FOOTER
===================================================== */

.imprint-section + .footer {

    border-top: 1px solid rgba(255, 255, 255, .05);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .imprint-hero-content h1 {

        font-size: 60px;
    }


    .imprint-container {

        width: 92%;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .imprint-hero {

        min-height: 430px;
    }


    .imprint-hero-content h5 {

        font-size: 11px;

        letter-spacing: 3px;
    }


    .imprint-hero-content h1 {

        font-size: 46px;

        line-height: 1.05;

        letter-spacing: -1px;
    }


    .imprint-hero-content p {

        font-size: 15px;
    }


    .imprint-section {

        padding: 80px 0 100px;
    }


    .imprint-intro {

        margin-bottom: 45px;
    }


    .imprint-intro h2 {

        font-size: 32px;
    }


    .imprint-card {

        grid-template-columns: 1fr;

        gap: 25px;

        padding: 30px 24px;

        border-radius: 20px;
    }


    .imprint-number {

        width: 52px;

        height: 52px;

        font-size: 14px;
    }


    .imprint-content h2 {

        font-size: 25px;
    }


    .imprint-content p {

        font-size: 15px;

        line-height: 1.8;
    }


    .contact-details {

        grid-template-columns: 1fr;
    }


    .contact-details p {

        padding: 20px;
    }


    .imprint-final {

        margin-top: 50px;

        padding: 50px 25px;

        border-radius: 20px;
    }


    .imprint-final h2 {

        font-size: 23px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .imprint-hero-content h1 {

        font-size: 38px;
    }


    .imprint-intro h2 {

        font-size: 28px;
    }


    .imprint-card {

        padding: 25px 20px;
    }


    .imprint-content h2 {

        font-size: 22px;
    }


    .imprint-final span {

        font-size: 10px;

        letter-spacing: 2px;
    }

}