* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
}

@font-face {
    font-family: 'College-Team';
    src: url('fmcollegeteam-ayjm-webfont.woff2') format('woff2'),
        url('fmcollegeteam-ayjm-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'College-Block';
    src: url('college_block_2.0_d-webfont.woff2') format('woff2'),
        url('college_block_2.0_d-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Piedmont';
    src: url('bnpiedmont-webfont.woff2') format('woff2'),
        url('bnpiedmont-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000E54;
    font-family: Piedmont;
    font-size: 30pt;
    overflow-x: hidden;
    color: #F76900;
}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #000E54;
}

.logo {
    display: block;
    max-width: 250px;
    width: 100%;
}

.menu {
    position: sticky;
    display: flex;
    top: 0;
    z-index: 1001;
    background-color: #000E54;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
}

.menu a {
    text-decoration: none;
    color: #F76900;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: white;
}

.social-left,
.social-right {
    display: flex;
    align-items: center;
}

.social-left a img,
.social-right a img {
    width: 40px;
    transition: filter 0.3s ease;
}

.social-left a:hover img,
.social-right a:hover img {
    filter: brightness(0) invert(1);
}

.image-container {
    background-color: whitesmoke;
    width: 100%;
    display: flex;
    justify-content: center;
    position: sticky;
    z-index: -1;
    height: 82vh;
    background-attachment: fixed;
}

.image-container::before {
    background-color: black;
    width: 100%;
    display: flex;
    justify-content: center;
    content: '';
    position: absolute;
    z-index: 2;
    height: 82vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.athlete-photo {
    position: sticky;
    width: 100vw;
    height: auto;
    display: block;
    position: absolute;
    left: 0;
    top: -100px;
}

.image-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 40px;
    font-family: Piedmont;
    text-align: center;
    align-items: center;
    z-index: 2;
}

.image-text p {
    color: #F76900;
}

.shop-section {
    display: flex;
    flex-direction: column;
    background-color: white;
    text-align: center;
    justify-content: space-evenly;
    color: black;
    width: 100%;
    height: 120vh;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.contact-section {
    display: flex;
    flex-direction: column;
    background-color: #000E54;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #F76900;
    width: 100%;
    height: 120vh;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.contact-form-section {
    width: 100%;
    padding-top: 100px;
    box-sizing: border-box;
    overflow-y: auto;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
button {
    padding: 20px;
    margin: 10px 0;
    border: 1px solid transparent;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Piedmont', sans-serif;
    font-size: 20pt;
    height: 70px;
}

textarea {
    resize: none;
    overflow-y: hidden;
    box-sizing: border-box;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    box-shadow: none;
}

input,
textarea,
select {
    text-transform: uppercase;
}

button {
    padding: 10px;
    color: white;
    background-color: #F76900;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    height: 70px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
textarea {
    border-radius: 0;
}

#shop-section,
#contact-section {
    background-color: white;
    padding: 50px 20px;
    min-height: 100vh;
}

@media screen and (max-width: 700px) {
    .menu {
        padding: 5px 10px;
        font-size: 40px;
    }

    .menu a {
        padding: 5px 10px;
        font-size: 20px;
    }

    .logo {
        max-width: 80px;
    }

    .image-text {
        font-size: 5vw;
        bottom: 5%;
    }

    .image-container {
        height: 115vh;
        width: 100%;
        overflow: hidden;
        position: relative;
        top: -40%;
        margin-bottom: -420px;
        z-index: 5;
    }

    .image-container::before {
        height: 128vh;
    }

    .athlete-photo {
        width: 100vw;
        height: auto;
        position: absolute;
        object-fit: cover;
        object-position: top;
        top: 55%;
        left: 40%;
        transform: translate(-50%) scale(3);
    }

    .shop-section,
    .contact-section {
        padding: 30px 15px;
    }
}