/* ------- */
/* CONTENT */
/* ------- */

section {
    min-height: calc(100vh - 10rem);

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16rem;

    margin-top: 16rem;
    scroll-margin-top: 10rem;
}



/* ------------ */
/* HERO SECTION */
/* ------------ */

.hero-section {
    margin-top: 0;
    position: relative;
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content {
    display: flex;
    align-items: center; /* flex-start for top alignment .. center for centered alignment*/
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.hero-text {
    padding-right: 4rem;
    height: 100%;
}

.intro {
    font-size: 5.4rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.intro span {
    background: linear-gradient(to right, var(--color-one), var(--color-two));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
}

.spiel {
    font-weight: 500;
    color: var(--light-color);
    line-height: 1.5;
    max-width: 66ch;
    font-size: 1.2rem;
    
    margin-bottom: 3.2rem;
}

.cta-button {
    text-decoration: none;
    color: var(--bg-color);
    font-size: 1.6rem;
    font-weight: 500;

    padding: 1rem 2rem;
    background-color: var(--dark-color);
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #1a1a1a;
}

.hero-image {
    flex-shrink: 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    width: 32rem;
    border: 2px solid var(--dark-color);
    display: block;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
}

.arrow {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);

    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(1rem);
    }
}



/* ---------------- */
/* Section Elements */
/* ---------------- */

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 4rem;
    width: 100%;
}

section h3 {
    font-size: 3rem;
    font-weight: 700;
}

.section-title {
    background: linear-gradient(to right, var(--color-one), var(--color-two));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section h4 {
    font-size: 1.8rem;
    font-weight: 600;
}

section p {
    /* text-indent: 4ch; */
    max-width: 66ch;

    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
}

.description {
    align-self: center;  /* flex-start for left alignment*/
}

.description p {
    margin: 1rem 0 0 1rem;
    border-left: 2px solid var(--lighter-color);
    padding-left: 2rem;
    transition: border-color 0.2s ease;
}

.description p:hover {
    border-left-color: var(--accent-color);
}



/* ------------------ */
/* Personal Statement */
/* ------------------ */

.about {
    margin-top: 8rem;
}


/* ----------- */
/* Motorcycles */
/* ----------- */

.bikes {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 2rem;
}

.motorcycles img {
    max-width: 100%;
    height: auto;
    width: 32rem;
    border: 2px solid var(--dark-color);
    transition: transform 0.3s ease;
}

.motorcycles img:hover {
    transform: scale(1.03);
}



/* ------------- */
/* MEDIA QUERIES */
/* ------------- */

@media (max-width: 1697px) {
    
    /* ------- */
    /* CONTENT */
    /* ------- */

    section {
        min-height: calc(100vh - 10rem);
        padding: 0 clamp(1.5rem, 13vw, 16rem);

        margin-top: 12rem;
        scroll-margin-top: 10rem;
    }

    /* ------------ */
    /* HERO SECTION */
    /* ------------ */

    .hero-content {
        gap: 1rem;
    }

    .hero-text {
        padding-right: 2rem;
    }

    .intro {
        font-size: 5rem;
        margin-bottom: 0;
    }

    .tagline {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .spiel {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1.5rem;
    }

    .hero-image img {
        width: 28rem;
    }

    /* ----------- */
    /* Motorcycles */
    /* ----------- */

    .motorcycles img {
        width: 28rem;
    }

}

@media (max-width: 1520px) {
    /* ------- */
    /* CONTENT */
    /* ------- */

    section {
        min-height: calc(100vh - 10rem);
        padding: 0 clamp(1.5rem, 13vw, 16rem);

        margin-top: 12rem;
        scroll-margin-top: 10rem;
    }

    /* ------------ */
    /* HERO SECTION */
    /* ------------ */

    .hero-content {
        gap: 1rem;
    }

    .hero-text {
        padding-right: 2rem;
    }

    .intro {
        font-size: 4rem;
        margin-bottom: 0;
    }

    .tagline {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .spiel {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1.2rem;
    }

    .hero-image img {
        width: 22rem;
    }

    /* ---------------- */
    /* Section Elements */
    /* ---------------- */

    .section-content {
        gap: 2rem;
    }

    section h3 {
        font-size: 3rem;
    }

    section h4 {
        font-size: 1.8rem;
    }

    section p {
        font-size: 1.2rem;
    }

    .description p {
        margin: 1rem 0 0 1rem;
        padding-left: 2rem;
    }

    /* ----------- */
    /* Motorcycles */
    /* ----------- */

    .motorcycles img {
        width: 24rem;
    }
}

@media (max-width: 1200px) {
    /* ------- */
    /* CONTENT */
    /* ------- */

    section {
        min-height: calc(100vh - 10rem);
        padding: 0 clamp(1.5rem, 13vw, 16rem);

        margin-top: 12rem;
        scroll-margin-top: 10rem;
    }



    /* ------------ */
    /* HERO SECTION */
    /* ------------ */

    .hero-content {
        gap: 1rem;
    }

    .hero-text {
        padding-right: 2rem;
    }

    .intro {
        font-size: 3.2rem;
        margin-bottom: 0.4rem;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .spiel {
        font-size: 0.8rem;
        margin-bottom: 2.6rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .hero-image img {
        width: 20rem;
    }



    /* ---------------- */
    /* Section Elements */
    /* ---------------- */

    .section-content {
        gap: 3rem;
    }

    section p {
        font-size: 1rem;
    }



    /* ----------- */
    /* Motorcycles */
    /* ----------- */

    .bikes {
        gap: 1.6rem;
    }

    .motorcycles img {
        width: 20rem;
    }

}