@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Montserrat:wght@500&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Lexend", sans-serif;
    min-height: 100vh;
    background-color: #FDFDFF;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5% 15px 5%;
    z-index: 998;
    background-color: #FDFDFF;
}

.nav-logo {
    height: 50px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    color: #393D3F;
    transition: all 0.3s ease 0s;
}

.nav-logo a:hover {
    color: #6f8af4;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.navbar ul li {
    height: 50px;
    list-style: none;
    display: inline-block;
}

.navbar ul li:last-child {
    display: none;
}

.navbar ul li a{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    color: #393D3F;
    transition: all 0.3s ease 0s;
}

.profile {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 200px;
}

.profile img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.profile h1 {
    align-self: center;
}

.social-media-links {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1em;
    margin-top: 50px;
}

.social-media-links a{
    text-decoration: none;
    text-align: center;
    padding: 9px 25px;
    color: #FDFDFF;
    background-color: rgba(111, 138, 244, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    width: 800px;
    transition: all 0.3s ease 0s;
}

.navsidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #FDFDFF;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.navsidebar ul{
    margin-top: 10%;
}

.navsidebar ul li {
    height: 50px;
    width: 100%;
    list-style: none;
    transition: all 0.3s ease 0s;
}

.navsidebar ul li:first-child {
    width: 50px;
    height: 50px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    color: #393D3F;
}

.navsidebar ul li a {
    width: 100%;
    height: 100%;
    list-style: none;
    text-decoration: none;
    padding-left: 10px;
    display: flex;
    align-items: center;
    color: #393D3F;
}

.products-section {
    padding-top: 5em;
    padding-bottom: 5em;
}

.products {
    display: grid;
    grid-template-rows: repeat(2, 400px);
    grid-template-columns: repeat(2, 300px);
    gap: 3em;
    justify-content: center;
}

.products a {
    text-decoration: none;
    color: black;
}

.box {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease 0s;
}

.picture-workout-plan {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-align: center;
}

.price-workout-plan {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgb(0, 0, 0);
    color: black;
}

.picture-coaching {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-align: center;
}

.price-coaching {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgb(0, 0, 0);
    color: black;
}

.amazon {
    background-color: #e7c819;
}

.picture-pullup-tower {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-align: center;
}

.picture-pullup-tower img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.price-pullup-tower {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgb(0, 0, 0);
    color: black;
}

.picture-parallettes {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    text-align: center;
}

.picture-parallettes img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.price-parallettes {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgb(0, 0, 0);
    color: black;
}

.paralletes {
    grid-column: 2;
}

@media (min-width: 850px) {
    .navsidebar {
        display: none !important;
    }
}

@media (max-width: 850px) {
    .social-media-links a {
        width: 80%;
    }
    .navbar ul li:last-child {
        display: flex;
        height: 50px;
        align-items: center;
    }
    .hideOnMobile {
        display: none !important;
    }
}

@media (max-width: 700px) {
    .profile {
        flex-direction: column;
        align-items: center;
    }
    .products {
    display: grid;
    grid-template-rows: 400px 400px 400px;
    grid-template-columns: 300px ;
    gap: 5em;
    justify-content: center;
}
}

/* @media (max-width: 400px) {
    .navsidebar {
        width: 100%;
    }
    
} */

.navbar ul li a:hover, .navbar ul li a:active{
    color: #6f8af4;
}

.social-media-links a:hover, .social-media-links a:active{
    background-color: rgba(111, 138, 244, 0.8);
}

.navsidebar ul li:hover, .navsidebar ul li:active {
    background-color: rgba(111, 138, 244, 0.2);
}

.navsidebar ul li:first-child:hover, .navsidebar ul li:first-child:active {
    background-color: #FDFDFF;
}

.box:hover, .box:active {
    background-color: rgba(111, 138, 244, 0.8);
}