*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

*::-webkit-scrollbar {
    width: 1em;
    height: 1em;
  }
      
*::-webkit-scrollbar-thumb {
    background-color: #252525;
    border-radius: 8px;
}

*::-webkit-scrollbar-track{
    background-color: #111111;
}

html{
    scroll-behavior: smooth;
}

/* HEADER */

.navbar{
    background: #111111;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container{
    display: flex;
    justify-content: space-between;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo{
    background-color: #FFF945;
    background-image: linear-gradient(to top, #FFF945 0%, #fffdb4, 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.links__container{
    background-color: #111111;
    width: 300px;
    height: 205px;
    transform: translate(0,-10px);
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    opacity: 0;
    pointer-events: none;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
}

.links__item{
    display: flex;
    font-weight: 400;
    margin: 10px;
    font-size: 1rem;
    padding: 10px;
    width: calc(100% - 20px);
    min-width: 280px;
    white-space: pre-line;
    border: none;
    outline: none;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    background-color: #131313;
}

.links__button {
    flex-direction: column;
    padding: 5px;
    align-items: center;
    display: flex;
    margin: 10px 0;
    background-color: #fff945;
    border: none;
    border-radius: 4px;
    color: #131313;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    outline: none;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
}

.links__button:hover{
    transform: scale(1.03);
    transition: transform 0.2s ease;
}

.links__button i {
    font-size: 16px;
  }

.links__description {
    flex-direction: column;
    padding: 5px 5px 26px 10px;
    font-size: 1rem;
    margin: 0;
    flex-grow: 1;
    text-align: left;
    display: flex;
    height: 100%;
    color: white;
}

#navbar__links.expand + .links__container{
    transform: translate(0, 0);
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    opacity: 1;
    pointer-events: all;
}

.navbar__img{
    max-width: 100px;
    padding: 10px 0;
}

.fa-gem{
    margin-right: 0.5rem;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item{
    height: 80px;
}

.navbar__links{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

#navbar__links{
    width: fit-content;
    margin: 0 auto;
}

#navbar__links:hover{
    cursor: pointer;
}

.navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.navbar__btn a{
    color: #131313;
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #FFF945;
    color: #fff;
    transition: transform 0.2s ease;
}

.button:hover{
    transform: scale(1.03);
    transition: transform 0.2s ease;
}

.navbar__links:hover{
    color: #FFF945;
    transition: all 0.3s ease;
}

.navbar__toggle .material-symbols-outlined{
    color: #131313;
}

.navbar__toggle{
    top: -1000px;
    z-index: -1;
    position: absolute;
}

@media screen and (max-width: 900px) {
    .navbar__container{
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu{
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease-in;
        height: 50vh;
        min-height: 300px;
        z-index: -1;
        background: #111111;
    }

    .navbar__menu.active{
        background: #111111;
        top: 100%;
        opacity: 1;
        transition: top 0.5s ease-out;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo{
        padding-left: 25px;
    }

    .navbar__toggle .material-symbols-outlined{
        width: 26px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        font-variation-settings:
            'FILL' 0,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24;
        color: #fff;
    }

    .navbar__toggle .material-symbols-outlined:hover{
        font-variation-settings: 
            'FILL' 0,
            'wght' 700,
            'GRAD' 0,
            'opsz' 24;
        transition: all 0.3s ease;
    }

    .navbar__item{
        width: 100%;
    }

    .navbar__links{
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu{
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn{
        padding: 2rem 0;
        position: relative;
        z-index: -1;
    }

    .button{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .material-symbols-outlined{
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .material-symbols-outlined{
        color: #FFF945;
    }

    #navbar__links.expand + .links__container{
        z-index: 3;
        pointer-events: all;
    }

    .links__container{
        margin: 0 auto;
        z-index: -1;
        width: 100%;
        pointer-events: none;
    }
}

/* HIGHLIGHTS */
.main{
    background-color: #131313;
}

.main__tagline h1{
    font-size: 4rem;
    background-color: #fff;
    background-image: linear-gradient(to right, #fb4848 0%, #ff8a3c 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding: 40px 20px 40px 20px;
    letter-spacing: 0.5em;
}

.main__logo__container{
    text-align: center;
}

#logo__img{
    height: 460px;
    width: 460px;
    border-radius: 1000px;
}

.main__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #131313;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
    height: fit-content;
}

.main__content p{
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

#pt__description{
    font-size: 1rem;
    font-weight: 400;
    padding: 0 50px 10px 0;
    text-align: justify;
}

.main__btn{
    font-size: 1rem;
    background-color: #fff945;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    outline: none;
}

.main__btn a{
    position: relative;
    z-index: 2;
    color: #131313;
    text-decoration: none;
}

.main__btn p{
    font-size: 1.2rem;
    color: #131313;
    position: relative;
    z-index: 10;
    margin: auto;
}

.main__btn:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    background-color: #fff;
    background-image: linear-gradient(to right, #fb4848 0%, #ff8a3c 100%);
    transition: all 0.3s;
    border-radius: 4px;
}

.main__btn:hover{
    color: #fff;
}

.main__btn:hover:after{
    z-index: 1;
    width: 100%;
}

.main__img__container{
    text-align: center;
}

#main__img{
    height: 100%;
    width: 100%;
    border-radius: 4px;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 900px) {
    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
    }

    #pt__description{
        text-align: justify;
        padding: 0 10px;
    }

    .main__tagline h1{
        letter-spacing: normal;
        text-align: center;
        font-size: 3.5rem;
    }

    .main__content{
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1{
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2{
        font-size: 3rem;
    }

    .main__content .main__content__bio{
        margin-top: 1rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .main__tagline h1{
        letter-spacing: normal;
    }

    .main__content h1{
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2{
        font-size: 2rem;
    }

    .main__content .main__content__bio{
        margin-top: 2rem;
        font-size: 1.5rem;
    }

    .links__container form button{
        color: #131313;
    }
}

/* SERVICES */
.services{
    background: #131313;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services h1{
    background-image: linear-gradient(to right, #fb4848 0%, #ff8a3c 100%);
    background-size: 100%;
    margin: 80px auto;
    font-size: 2.5rem;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services__card__infobtn .material-symbols-outlined{
    width: 26px;
    height: 3px;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: all 0.3s ease-in-out;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
    color: #fff;
    font-size: 1.5rem;
}

.services__card__infobtn .material-symbols-outlined:hover{
    cursor: pointer;
}

.services__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: fit-content;
}

.services__card{
    margin: 1rem;
    height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 50%), url('/images/woman-deadlift.jpg');
    background-size: cover;
    position: relative;
    color: #fff;
    overflow: hidden;
    transition: all 0.2s ease;
}

.services__card:nth-child(2){
    background-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 50%), url('/images/man-row.jpg');
    background-size: cover;
}

.services__card .services__card__info{
    position: absolute;
    font-weight: 400;
    top: -340px;
    left: 30px;
    right: 30px;
    text-align: justify;
    transition: all 0.3s ease;
}

.services__card h2{
    position: absolute;
    top: 350px;
    left: 30px;
    transition: all 0.25s ease;
}

.services__card .services__card__tagline{
    position: absolute;
    top: 400px;
    left: 30px;
    transition: all 0.3s ease;
}

.services__card button{
    font-size: 1rem;
    background-color: #fff945;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    color: #131313;
    margin-top: 2rem;
    cursor: pointer;
    position: absolute;
    top: 420px;
    left: 30px;
    transition: all 0.35s ease;
    outline: none;
}

.services__card button:hover{
    transform: scale(1.03);
    transition: all 0.2s ease;
}

.services__card button a{
    position: relative;
    z-index: 2;
    color: #131313;
    text-decoration: none;
}

.services__card:hover{
    transform: scale(1.05);
    transition: 0.2s ease;
}

.services__card.is-active .services__card__info{
    transform: translate(0, 400px);
    transition: all 0.3s ease;
}

.services__card.is-active h2{
    transform: translate(0, 300px);
    transition: all 0.35s ease;
}

.services__card.is-active .services__card__tagline{
    transform: translate(0, 300px);
    transition: all 0.3s ease;
}

.services__card.is-active button{
    transform: translate(0, 300px);
    transition: all 0.25s ease;
}

@media screen and (max-width: 900px) {
    .services h1{
        font-size: 2rem;
    }

    .services__card{
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .services__card{
        width: 300px;
    }

    .services__card__info{
        font-size: 0.9rem;
        top: -600px;
        opacity: 0;
    }

    .services__card.is-active .services__card__info{
        transform: translate(0, 400px);
        opacity: 1;
    }
}

/* TESTIMONAILS */

.testimonials{
    background-color: #131313;
    padding: 50px 0;
}

.testimonials__container{
    display: flex;
    overflow-x: scroll;
    height: fit-content;
    -ms-overflow-style: none;
    list-style-type: none;
    margin: 0 10px;
    scroll-behavior: smooth;
}

.testimonials__card{
    display: flex;
    flex-direction: column;
    flex: none;
    position: relative;
    height: 380px;
    background-color: #181818;
    margin: 0 10px 10px 10px;
    padding: 10px 10px;
    border-radius: 4px;
    width: 400px;
}

.testimonials h1{
    background-color: #fff;
    background-image: linear-gradient(to right, #fb4848 35%, #ff8a3c 65%);
    background-size: 100%;
    text-align: center;
    margin: 0 auto 80px auto;
    font-size: 2.5rem;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials__card h2{
    color: #fff;
    margin-bottom: 20px;
    font-size: 2rem;
}

.testimonials__card p{
    color: #fff;
    font-weight: 400;
    display: inline-block;
    font-size: 1.3rem;
}

#testimonials__stars{
    color: #FFF945;
    font-size: 2rem;
    text-align: center;
    letter-spacing: 1rem;
    margin-top: auto;
    margin-bottom: 20px;
}

@media screen and (max-width: 900px) {
    .testimonials h1{
        font-size: 2rem;
    }
}

/* FOOTER */

.footer__container{
    background-color: #131313;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* SOCIALS */

.social__icon__link{
    color: #fff;
    font-size: 24px;
}

.social__media{
    width: 100%;
}

.social__media__wrap{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 40px auto 0 auto;
}

.footer__item{
    color: #fff;
    margin: 20px 40px;
}

.footer__item img{
    width: 128px;
    height: 128px;
    border-radius: 100px;
}

@media screen and (max-width: 820px) {
    .footer__links{
        padding-top: 2rem;
    }

    #footer__logo{
        margin-bottom: 2rem;
    }

    .website__rights{
        margin-bottom: 2rem;
    }

    .footer__link__wrapper{
        flex-direction: column;
    }

    .social__media__wrap{
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .footer__link__items{
        margin: 0;
        padding: 10px;
        width: 100%;
    }
}