*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: impact, sans-serif;
}

.navbar{
    background: black;
    height: 80px;
    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: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo{
    background-color: white;
    background-image: linear-gradient(to top, #43C6AC, #191654);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 3rem;
}

.navbar__menu{
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item{
    height: 80px;
}

.navbar__links{
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background-image: linear-gradient(to top, #43C6AC, #191654);
    color: white;
}

.button:hover{
    background: #43C6AC;
    transition: all 0.5s ease-in-out;
}

.navbar__links:hover{
    color: #43C6AC;
    transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 950px){
    .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-out;
        height: 50vh;
        z-index: -1;
    }
    .navbar__menu.active{
        background: black;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease-in-out;
        z-index: 99;
        height: 70vh;
        font-size: 1.6rem;
    }
    #navbar__logo{
        padding-left: 25px;
    }
    .navbar__toggle .bar{
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.5s ease-in-out;
        background: white;
    }
    .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-bottom: 2rem;
    }
    .button{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }
    .navbar__toggle .bar{
        display: block;
        cursor: pointer;
    }
    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }
    #mobile-menu.is-active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu.is-active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
}

.main{
    background-image: linear-gradient(rgba(0,0,0,0.5)50%, rgba(0,0,0,0.5)50%), url(gym.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 90vh;
}

.main__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content h1{
    font-size: 4rem;
    background-color: white ;
    background-image: linear-gradient(to top, #43C6AC, #191654);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content h2{
    font-size: 2rem;
    color: white
}

.main__content p{
    margin-top: 1rem;
    font-size: 1.5rem;
    color: white;
    font-family: sans-serif;
}

.main__btn{
    font-size: 1.2rem;
    background: white;
    background: linear-gradient(to top, #43C6AC, #191654);
    padding: 10px 20px;
    border: none;border-radius: 4px;
    color: white;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.5s;
    outline: none;
}

.main__btn a{
    position: relative;
    z-index: 2;
    color: white;
    text-decoration: none;
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #43C6AC;
    transition: all 0.5s;
    border-radius: 4px;
}

.main__btn:hover {
    color: white;
}

.main__btn:hover:after {
    width: 100%;
}

/* mobile */
@media screen and (max-width: 768px){
    .main__container{
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }
    .main__content{
        text-align: center;
        margin-bottom: 4rem;
    }
    .main__content h1{
        font-size: 3rem;
        margin-top: 2rem;
    }
    .main__content h2{
        font-size: 2.5rem;
        margin-top: 2rem;
    }
    .main__content p{
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .row{
        flex-direction: column;
    }
}

@media screen and (max-width: 480px){
    .main__content h1{
        font-size: 3rem;
        margin-top: 2rem;
    }
    .main__content h2{
        font-size: 2rem;
        margin-top: 3rem;
    }
    .main__content p{
        margin-top: 2rem;
        font-size: 1.5rem;
    }
    .main__btn{
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}

/* about */
.main2{
    padding: 5rem 3rem;
    background-color: black;
}

.main2__container{
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    margin: 0 auto;
    height: 90%;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main2__content h1{
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    background-color: white ;
    background-image: linear-gradient(to top, #43C6AC, #191654);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main2__content h2{
    width: 100%;
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    background-color: white ;
    background-image: linear-gradient(to top,#43C6AC, #191654);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-top: 1.5rem;
}

.main2__content p{
    font-family: sans-serif;
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
    color: white;
}

/* mobile about */
@media screen and (max-width: 1100px) {
    .main2__container{
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 90%;
        margin: 0 auto;
    }

    .main2__content{
        text-align: center;
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .main2__content p{
        text-align: center;
        padding: 0px 20px;
    }
}

/* price */
.price{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0rem 0;
    background-color: black;
}

.price2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: rem 0;
    background-color: black;
}

.price h2{
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    background-color: white;
    background-image: linear-gradient(to top, #43C6AC, #191654);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    margin-top: 1.5rem;
}

.price h3{
    font-family: sans-serif;
    text-align: center;
    font-size: 20px;
}
.price p{
    font-family: sans-serif;
    text-align: center;
    margin-top: 24px;
    font-size: 18px;
}
.price2 h3{
    font-family: sans-serif;
    text-align: center;
    font-size: 20px;
}
.price2 p{
    font-family: sans-serif;
    text-align: center;
    font-size: 18px;
    margin-top: 24px;
}

.price__wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    margin-top: 2rem;
}

.price__wrapper2{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
}

.price__card{
    margin: 10px;
    height: 200px;
    width: 200px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    background-image: linear-gradient(to right, #1f4037, #99f2c8);
    transition: all 0.5s ease-in-out;
}

.price__card:nth-child(2){
    background: #141E30;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #243B55, #141E30);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #243B55, #141E30); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.price__card:nth-child(3){
    background: #093028;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #237A57, #093028);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #237A57, #093028); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.price__card:nth-child(4){
    background: #0F2027;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #2C5364, #203A43, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.price__card:nth-child(5){
    background: #34e89e;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #0f3443, #34e89e);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #0f3443, #34e89e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.price__card:nth-child(6){
    background: #44A08D;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #093637, #44A08D);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #093637, #44A08D); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.price__card:nth-child(7){
    background: #2C3E50;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #4CA1AF, #2C3E50);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #4CA1AF, #2C3E50); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.price__card:nth-child(8){
    background: #00bf8f;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #001510, #00bf8f);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #001510, #00bf8f); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.price__btn{
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.price__card button{
    color: white;
    padding: 8px 24px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: black ;
    font-size: 1rem;
    font-family: sans-serif;
}

.price__card button:hover{
    cursor: pointer;
}

.price__card:hover{
    transform: scale(1.075);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

@media screen and (max-width: 900px){
    .price__wrapper{
        grid-template-columns: 1fr 1fr;
    }
    .price__wrapper2{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (max-width: 700px){
    .price__wrapper{
        grid-template-columns: 1fr 1fr;
    }
    .price__wrapper2{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .price__card{
        height: 170px;
        width: 150px;
    }
}

@media screen and (max-width: 450px){
    .price__wrapper{
        grid-template-columns: 1fr 1fr;
    }
    .price__wrapper2{
        grid-template-columns: 1fr;
    }
    .price__card{
        height: 150px;
        width: 130px;
    }
    .price h3{
    font-family: sans-serif;
    text-align: center;
    font-size: 17px;
    }
    .price p{
    font-family: sans-serif;
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    }
    .price2 h3{
    font-family: sans-serif;
    text-align: center;
    font-size: 17px;
    }
    .price2 p{
    font-family: sans-serif;
    text-align: center;
    font-size: 14px;
    margin-top: 24px;
    }
}


.hours{
    background-color: black;
    padding-bottom: 2rem;
}

.business-hours-alt {
    background-color: #111;
    color: #eee;
    max-width: 600px;
    margin: 0px auto;
    padding: 30px;
    border-radius: 14px;
    font-family: sans-serif;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.business-hours-alt h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    background-color: white;
    background-image: linear-gradient(to top, #43C6AC, #191654);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.business-hours-alt table {
    width: 100%;
    border-collapse: collapse;
}

.business-hours-alt td {
    padding: 12px 8px;
    border-bottom: 1px solid #333;
    font-size: 1.3rem;
    text-align: center;
}

.business-hours-alt tr.closed td {
    color: #43C6AC;
}

@media (max-width: 600px) {
    .business-hours-alt td {
    font-size: 1rem;
    padding: 10px 10px;
    text-align: center;
}
}

.service{
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.service h1{
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    background-color: white;
    background-image: linear-gradient(to top, #43C6AC, #191654);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    padding-top: 5rem;
}

.service p{
    color: white;
    text-align: center;
    font-family: sans-serif;
    font-size: 1.2rem;
}

.content-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;
}

.card{
    min-height: 220px;
    width: 320px;
    padding: 30px;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #111;
    margin: 10px 4px;
    transition: 0.5s ease-in;
}

.card i{
    margin: 20px;
    color: #191654;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
}

.card h2{
    margin-bottom: 12px;
    font-family: sans-serif;
    text-align: center;
}

.card p{
    color: #1f4037;
    font-family: sans-serif;
    text-align: center;
}

.card:nth-child(1):hover{
    background: linear-gradient(45deg, rgba(26, 64, 231, 0.5)0%, rgba(0,0,0,0.5)100%), url(gym1.jpg);
    background-size: cover;
}

.card:nth-child(2):hover{
    background: linear-gradient(45deg, rgba(26, 64, 231, 0.5)0%, rgba(0,0,0,0.5)100%), url(gym2.jpg);
    background-size: cover;
}

.card:nth-child(3):hover{
    background: linear-gradient(45deg, rgba(26, 64, 231, 0.5)0%, rgba(0,0,0,0.5)100%), url(gym3.jpg);
    background-size: cover;
}

.card:nth-child(4):hover{
    background: linear-gradient(45deg, rgba(26, 64, 231, 0.5)0%, rgba(0,0,0,0.5)100%), url(rebound.jpg);
    background-size: cover;
}

.card:nth-child(5):hover{
    background: linear-gradient(45deg, rgba(26, 64, 231, 0.5)0%, rgba(0,0,0,0.5)100%), url(fly2.jpg);
    background-size: cover;
}

.card:nth-child(6):hover{
    background: linear-gradient(45deg, rgba(26, 64, 231, 0.5)0%, rgba(0,0,0,0.5)100%), url(spin.jpg);
    background-size: cover;
}

.card:hover i{
    color: white;
}

@media  screen and (max-width: 1100px) {
    .service{
        padding: 25px;
    }
    .service h1{
        font-size: 2.5rem;
    }
    .content-box{
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }
    .card{
        min-width: 300px;
        margin: 10px auto;
    }
}

@media  screen and (max-width: 800px) {
    .service{
        padding: 25px;
    }
    .service h1{
        font-size: 2.5rem;
    }
    .content-box{
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .card{
        min-width: 100px;
        margin: 10px auto;
    }
}

.contact-section-dark {
    background-color: black;
    color: #f0f0f0;
    padding: 60px 20px;
    font-family: sans-serif;
    padding-top: 5rem;
}

.contact-container-dark {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 30px;
    font-family: sans-serif;
}

.contact-info {
    flex: 1 1 300px;
    font-family: sans-serif;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    background-color: white;
    background-image: linear-gradient(to top, #43C6AC, #191654);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 1rem;
    font-family: sans-serif;
}

.contact-form-dark {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: sans-serif;
}

.contact-form-dark input,
.contact-form-dark textarea {
    background-color: #222;
    color: #f0f0f0;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    font-family: sans-serif;
}

.contact-form-dark button {
    background-color: #191654;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-family: sans-serif;
}

.contact-form-dark button:hover {
background-color: #0f3443;
font-family: sans-serif;
}

@media (max-width: 768px) {
    .contact-container-dark {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}


.footer-dark {
    background-color: #0c0c0c;
    color: #f0f0f0;
    padding: 40px 20px 10px;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
}

.footer-about,
.footer-links,
.footer-socials {
    flex: 1 1 250px;
    font-family: sans-serif;
}

.footer-about p{
    font-family: sans-serif;
}

.footer-about h3 {
    margin-bottom: 10px;
    font-size: 2.5rem;
    background-color: white ;
    background-image: linear-gradient(to top, #43C6AC, #191654);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.footer-links h4,
.footer-socials h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: sans-serif;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    font-family: sans-serif;
}

.footer-links li {
    margin-bottom: 5px;
    font-family: sans-serif;
}

.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s;
    font-family: sans-serif;
}

.footer-links a:hover {
    color: #0f3443;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    font-size: 1.6rem;
    color: #f0f0f0;
    transition: color 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    color: #0f3443
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 20px;
    border-top: 1px solid #333;
}

@media (max-width: 300px) {
.footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-icons {
    justify-content: center;
}
}