@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
    font-family: Dragon;
    src: url(fonts/Dragom2000-Regular.ttf);
    font-style: normal;
    font-weight: 100;
    text-decoration: none;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #ededed;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: #155c0c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    font-size: 25px;
    color: #ededed;
    text-decoration: none;
    font-weight: 600;
    font-family: Dragon;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #155c0c;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

.navbar a {
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;

}

.navbar a:hover,
.navbar a.active {
    color: #3de63d;
}

.home {
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0.95) 40%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.08) 65%, rgba(0, 0, 0, 0) 75%),
        url(img/img_spec.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    position: relative;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}


.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #3de63d;
}

.home-content p {
    font-size: 16px;
    margin: 20px 0 40px;
}

.home-content .btn-box {
    display: flex;
    justify-content: space-between;
    width: 470px;
    height: 50px;
}

.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 100%;
    background: #3de63d;
    border: 2px solid #3de63d;
    border-radius: 8px;
    font-size: 19px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:hover {
    color: #3de63d;
}

.btn-box a:nth-child(1),
.btn-box a:nth-child(2),
.btn-box a:nth-child(3) {
    background: transparent;
    color: #3de63d;
}

.btn-box a:nth-child(1):hover,
.btn-box a:nth-child(2):hover,
.btn-box a:nth-child(3):hover {
    color: #000;
}


.btn-box a:nth-child(1)::before,
.btn-box a:nth-child(2)::before,
.btn-box a:nth-child(3)::before {
    background: #3de63d;
}

.btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #000;
    z-index: -1;
    transition: .5s;
}

.btn-box a:hover::before {
    width: 100%;

}

.home-sci {
    position: absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #3de63d;
    border-radius: 50%;
    font-size: 20px;
    color: #3de63d;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.home-sci a:hover {
    color: #000;
}

.home-sci a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #3de63d;
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::before {
    width: 100%;
}


/* KEYFRAMES ANIMATION */
@keyframes showRight {
    100% {
        width: 0;
    }
}

/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ededed;
    font-size: 30px;
    cursor: pointer;
    z-index: 101;
}


/* =========================
   MOBILE MENU
========================= */

@media screen and (max-width: 600px) {

    .header {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        background: #155c0c;

        padding: 20px 0;

        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;

        transition: 0.3s ease;
    }

    .navbar a {
        width: 100%;
        text-align: center;

        padding: 15px 0;

        margin: 0;

        font-size: 17px;
    }

    .navbar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 900px) {

    /* HEADER */

    .header {
        padding: 18px 5%;
    }

    .logo {
        font-size: 22px;
    }

    .navbar a {
        font-size: 16px;
        margin-left: 20px;
    }


    /* HOME */

    .home {
        min-height: 100vh;
        height: auto;
        padding: 140px 7% 80px;
        background-position: center;
    }

    .home-content {
        max-width: 550px;
    }

    .home-content h1 {
        font-size: 48px;
    }

    .home-content h3 {
        font-size: 28px;
    }


    /* TEAM */

    .team-section {
        margin-top: 50px;
        padding: 50px 5%;
    }

    .team-title h1 {
        margin-left: 0;
        font-size: 42px;
    }

    .team-cards {
        width: 100%;
        margin-left: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-card:nth-last-child(2),
    .team-card:last-child {
        grid-column: auto;
    }


    /* CAR SPECS */

    .specs {
        padding: 6em 5%;
    }

    .specs ul {
        width: 80vw;
        max-width: 700px;
    }


    /* CAR STATS */

    .stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stats > div {
        min-width: 140px;
    }


    /* CAR */

    .car {
        margin-top: 5em;
    }

    .car img {
        width: 75%;
        top: -40%;
    }


    /* SUCCESS PAGE */

    .success-page {
        padding-top: 120px;
    }

    .success-container {
        width: 90%;
    }

    .success-heading h1 {
        font-size: 48px;
    }

}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 600px) {

    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
    }


    /* =========================
       HEADER
    ========================= */

    .header {
        position: fixed;
        padding: 15px 5%;
        min-height: 65px;
    }

    .logo {
        font-size: 20px;
    }

    .navbar {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .navbar a {
        font-size: 13px;
        margin-left: 0;
    }


    /* =========================
       HOME
    ========================= */

    .home {
        min-height: 100vh;
        height: auto;
        padding: 130px 7% 100px;

        background-image:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.25) 0%,
                rgba(0, 0, 0, 0.75) 50%,
                rgba(0, 0, 0, 1) 100%
            ),
            url("img/img_spec.jpg");

        background-position: center;
        background-size: cover;

        align-items: flex-start;
    }

    .home-content {
        width: 100%;
        max-width: 100%;
    }

    .home-content h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .home-content h3 {
        font-size: 23px;
        line-height: 1.3;
    }

    .home-content p {
        font-size: 14px;
        line-height: 1.7;
        margin: 15px 0 30px;
    }


    /* =========================
       BUTTONS
    ========================= */

    .home-content .btn-box {
        width: 100%;
        max-width: 345px;
        height: 48px;
        gap: 10px;
    }

    .btn-box a {
        width: 50%;
        font-size: 15px;
    }


    /* =========================
       SOCIAL MEDIA
    ========================= */

    .home-sci {
        position: relative;
        bottom: auto;
        margin-top: 50px;
        width: 160px;
    }

    .home-sci a {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }


    /* =========================
       TEAM
    ========================= */

    .team-section {
        margin-top: 0;
        padding: 60px 5% 40px;
    }

    .team-title h1 {
        margin-left: 0;
        font-size: 34px;
        text-align: center;
    }

    .team-cards {
        width: 100%;
        margin-left: 0;

        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-card,
    .team-card:nth-last-child(2),
    .team-card:last-child {
        grid-column: auto;
        padding: 15px;
    }

    .team-detail p {
        font-size: 14px;
    }


    /* =========================
       GENERAL SECTIONS
    ========================= */

    section {
        padding: 2em 5%;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.6em;
    }

    p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* =========================
       INFO SECTION
    ========================= */

    .infos {
        flex-direction: column;
        gap: 35px;
        padding: 3em 1em;
    }

    .info {
        flex-direction: column;
        text-align: center;
    }

    .info img {
        max-width: 5em;
        margin: 0 0 1em 0;
    }

    .info p {
        max-width: 100%;
    }


    /* =========================
       SPECS
    ========================= */

    .specs {
        padding: 5em 5%;
        min-height: auto;

        background-position: center;
    }

    .specs h2,
    .about h2 {
        font-size: 1.5em;
        padding-left: 0.8em;
    }

    .specs ul {
        width: 100%;
        margin-top: 2em;
    }

    .specs li {
        padding: 12px 0;
        gap: 15px;
        font-size: 13px;
    }

    .specs li span:first-child {
        flex: 1;
    }

    .specs li span:last-child {
        text-align: right;
    }


    /* =========================
       CAR STATS
    ========================= */

    .car-stats {
        padding: 4em 5%;
    }

    .stats {
        flex-direction: column;
        gap: 35px;
    }

    .stats > div {
        width: 100%;
        min-width: 0;
    }

    .stats > div h1 {
        font-size: 3em;
    }


    /* =========================
       CAR IMAGE
    ========================= */

    .car {
        padding: 3em 0;
        margin-top: 4em;
    }

    .circle {
        width: 95%;
        aspect-ratio: 2 / 1;
    }

    .car img {
        width: 85%;
        top: -30%;
    }


    /* =========================
       SUCCESS PAGE
    ========================= */

    .success-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .success-container {
        width: 92%;
    }

    .success-heading {
        margin-bottom: 45px;
    }

    .success-heading span {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .success-heading h1 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: 1px;
    }

    .success-heading p {
        font-size: 13px;
        line-height: 1.7;
    }


    /* =========================
       SUCCESS STATS
    ========================= */

    .success-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 60px;
    }

    .success-stat {
        padding: 25px 15px;
    }

    .success-stat h2 {
        font-size: 38px;
    }


    /* =========================
       SUCCESS TIMELINE
    ========================= */

    .success-list::before {
        left: 8px;
    }

    .success-item,
    .success-item:nth-child(even),
    .success-item:nth-child(odd) {
        width: 100%;
        left: 0;
        padding: 15px 0 15px 30px;
        text-align: left;
    }

    .success-item::after,
    .success-item:nth-child(odd)::after,
    .success-item:nth-child(even)::after {
        left: 2px;
        right: auto;
        width: 12px;
        height: 12px;
    }


    /* =========================
       SUCCESS CARDS
    ========================= */

    .success-card {
        padding: 20px;
    }

    .success-card h2 {
        font-size: 21px;
    }

    .success-place {
        font-size: 16px;
    }

    .success-card p {
        font-size: 13px;
    }

    .success-badge {
        font-size: 10px;
    }

}


/* =========================
   VERY SMALL PHONES
========================= */

@media screen and (max-width: 400px) {

    .header {
        padding: 12px 4%;
    }

    .logo {
        font-size: 18px;
    }

    .navbar {
        gap: 8px;
    }

    .navbar a {
        font-size: 11px;
    }

    .home {
        padding-left: 6%;
        padding-right: 6%;
    }

    .home-content h1 {
        font-size: 32px;
    }

    .home-content h3 {
        font-size: 20px;
    }

    .btn-box a {
        font-size: 13px;
    }

    .team-title h1 {
        font-size: 30px;
    }

}

@media screen and (max-width: 400px) {

    .header {
        padding: 12px 4%;
    }

    .logo {
        font-size: 18px;
    }

    .navbar {
        gap: 8px;
    }

    .navbar a {
        font-size: 11px;
    }

    .home {
        padding-left: 6%;
        padding-right: 6%;
    }

    .home-content h1 {
        font-size: 32px;
    }

    .home-content h3 {
        font-size: 20px;
    }

    .btn-box a {
        font-size: 13px;
    }

    .team-title h1 {
        font-size: 30px;
    }

}

@media screen and (max-width: 600px) {

    html {
        font-size: 14px;
    }

    body {
        overflow-x: hidden;
    }


    /* =========================
       HEADER
    ========================= */

    .header {
        position: fixed;
        padding: 15px 5%;
        min-height: 65px;
    }

    .logo {
        font-size: 20px;
    }

    .navbar {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .navbar a {
        font-size: 13px;
        margin-left: 0;
    }
}

@media screen and (max-width: 900px) {

    /* HEADER */

    .header {
        padding: 18px 5%;
    }

    .logo {
        font-size: 22px;
    }

    .navbar a {
        font-size: 16px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 600px) {
    html {
        font-size: 14px;
    }
}

/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ededed;
    font-size: 30px;
    cursor: pointer;
    z-index: 101;
}


/* =========================
   MOBILE MENU
========================= */

@media screen and (max-width: 600px) {

    .header {
        position: fixed;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        background: #155c0c;

        padding: 20px 0;

        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;

        transition: 0.3s ease;
    }

    .navbar a {
        width: 100%;
        text-align: center;

        padding: 15px 0;

        margin: 0;

        font-size: 17px;
    }

    .navbar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #050505;
    border-top: 1px solid #222;
    padding: 50px 10% 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: inline-block;
    color: #ededed;
    font-family: Dragon;
    font-size: 30px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-links a,
.footer-social a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #3de63d;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-content p {
    max-width: none;
    margin: 0;
    color: #555;
    font-size: 12px;
}

.footer-sponsors {
    margin: 25px 0;
    color: #888;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-sponsors span {
    color: #3de63d;
}


/* =========================
   FOOTER MOBILE
========================= */

@media screen and (max-width: 600px) {

    .footer {
        padding: 40px 5% 25px;
    }

    .footer-logo {
        font-size: 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social {
        gap: 20px;
    }

}

.privacy-page {
    min-height: 100vh;
    background: #050505;
    padding: 150px 5% 80px;
}

.privacy-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-label {
    display: block;
    color: #3de63d;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.privacy-container > h1 {
    font-size: 55px;
    color: #ededed;
    margin-bottom: 60px;
}

.privacy-section {
    margin-bottom: 45px;
}

.privacy-section h2 {
    color: #3de63d;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 18px;
}

.privacy-section p {
    color: #aaa;
    max-width: 900px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 15px 0 20px;
    padding-left: 25px;
    list-style: disc;
}

.privacy-section li {
    color: #aaa;
    margin-bottom: 8px;
}

.privacy-section a {
    color: #3de63d;
    text-decoration: none;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-date {
    color: #555 !important;
    font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media screen and (max-width: 600px) {

    .privacy-page {
        padding: 110px 5% 60px;
    }

    .privacy-container {
        width: 100%;
    }

    .privacy-container > h1 {
        font-size: 36px;
        line-height: 1.15;
        margin-bottom: 40px;
    }

    .privacy-section {
        margin-bottom: 35px;
    }

    .privacy-section h2 {
        font-size: 21px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================================================
   IMPRESSUM & DATENSCHUTZ
   RESPONSIVE DESIGN
========================================================= */

.privacy-page {
    min-height: 100vh;
    background: #050505;
    color: #ededed;
    padding: 150px 5% 80px;
}

.privacy-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-label {
    display: block;
    color: #3de63d;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.privacy-container > h1 {
    color: #ededed;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 60px;
}

.privacy-section {
    margin-bottom: 45px;
}

.privacy-section h2 {
    color: #3de63d;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 18px;
}

.privacy-section p {
    color: #aaa;
    max-width: 900px;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 16px;
}

.privacy-section strong {
    color: #ededed;
}

.privacy-section ul {
    margin: 15px 0 20px;
    padding-left: 25px;
    list-style: disc;
}

.privacy-section li {
    color: #aaa;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.privacy-section a {
    color: #3de63d;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.privacy-section a:hover {
    text-decoration: underline;
}

.privacy-date {
    color: #555 !important;
    font-size: 12px !important;
}


/* =========================================================
   TABLET
========================================================= */

@media screen and (max-width: 900px) {

    .privacy-page {
        padding: 130px 6% 70px;
    }

    .privacy-container {
        max-width: 850px;
    }

    .privacy-container > h1 {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .privacy-section {
        margin-bottom: 40px;
    }

    .privacy-section h2 {
        font-size: 23px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 600px) {

    .privacy-page {
        min-height: 100vh;
        padding: 105px 6% 50px;
    }

    .privacy-container {
        width: 100%;
    }

    .privacy-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .privacy-container > h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 40px;
    }

    .privacy-section {
        margin-bottom: 35px;
    }

    .privacy-section h2 {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .privacy-section p {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .privacy-section ul {
        padding-left: 20px;
        margin: 12px 0 18px;
    }

    .privacy-section li {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 6px;
    }

    .privacy-date {
        font-size: 11px !important;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media screen and (max-width: 400px) {

    .privacy-page {
        padding: 95px 5% 45px;
    }

    .privacy-container > h1 {
        font-size: 30px;
    }

    .privacy-section h2 {
        font-size: 19px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 13px;
    }

}