@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@400;500;600;700;800&family=Outfit:wght@200&display=swap");

html{
    scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Mukta", sans-serif;
  outline: none;
  color: #fff;
}

a {
  text-decoration: none;
}

:root {
  --prime: #00ff34;
  --background-color: #131b2b;
}

body {
  background: var(--background-color);
}

.navbar {
  width: 100%;
  display: flex;
  position: fixed;
  padding: 30px 120px;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: all 0.5s ease;
  align-items: center;
}

.scroll{
    width: 100%;
    display: flex;
    position: fixed;
    padding: 10px 120px;
    justify-content: space-between;
    background-color: #000;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: all 0.5s ease;
    align-items: center;
}

.nav.scroll .logo{
  width: 50px;
  height: 50px;
}

.logo {
  width: 70px;
  height: 70px;
}

.logo img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

b {
  color: var(--prime);
}

ol {
  display: flex;
  align-items: center;
  margin: auto 0;
}

ol li {
  list-style: none;
  padding: 0 20px;
  transition: all 0.5s ease;
}

ol li:hover{
    transform: scale(1.05);
}

ol li a {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.5s ease;
}

ol li:hover a {
  color: var(--prime);
}


.view {
  width: 100%;
  min-height: 80vh;
  position: relative;
}

.home {
  display: flex;
  min-height: 120vh;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 80% 95%, 0 100%);
}

.banner {
  height: 100%;
  width: 100%;
  position: absolute;
  background: url("./Gym\ Stock\ Images/banner.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(40%);
}

.highlights {
  width: 70%;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlights h3 {
  display: inline;
  font-size: 2vw;
  padding: 5px 20px;
  font-weight: lighter;
  text-transform: capitalize;
  border-left: 3px solid var(--prime);
}

.highlights h1 {
  text-align: center;
  font-size: 9vw;
  font-weight: normal;
}

.highlights b{
    font-weight: 800;
    font-family: italic;
}

.highlights .tagline{
    color: #d7d7d7;
    font-size: 1.2vw;
    text-align: center;
    font-weight: normal;
}

.highlights .join{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 800;
    padding: 5px 20px;
    font-size: 1.5vw;
    cursor: pointer;
    margin-top: 1.2em;
    color: var(--prime);
    border: 2px solid var(--prime);
    border-radius: 50px;
    outline: none;
    background: transparent;
    text-transform: uppercase;
    transition: all 0.5s ease;
}

.highlights .join:hover{
    transform: translateY(-5%);
    color:  #fff;
    letter-spacing: 1.5px;
    background: var(--prime);
}

.main{
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

span{
    color: var(--prime);
}

.main h2{
    font-size: 2vw;
    position: relative;
    text-align: center;
    padding-top: 100px;
    display: inline-block;
}

.main h2:before{
    position: absolute;
    content: '';
    background: var(--prime);
    height: 3px;
    width: 100%;
    right: -1px;
    bottom: 0;
    border-radius: 50px;
}

.main h6{
    margin-top: 10px;
    font-size: 13px;
    font-family: sans-serif;
    font-weight: lighter;
}

.content{
    position: relative;
    display: flex;
    width: 100%;
    padding: 0 30px;
    justify-content: center;
}

.about .content .cols{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px 70px;
}

.about .content .cols p b{
    font-size: 20px;
    margin-right: 2px;
}

.about .content .cols a{
    position: relative;
    top:20px;
    background: var(--prime);
    padding: 5px 20px;
    text-transform: uppercase;
    border-radius: 5px;
}

.about .content .cols a:hover{
    color: var(--prime);
    background: transparent;
    border: 1px solid var(--prime);
}

.about .content .cols .box{
    position: relative;
    height: 550px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

.about .content .cols .box img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.workout .content{
    flex-wrap: wrap;
}

.workout .content .frame{
    position: relative;
    width: 350px;
    padding:20px;
    margin: 10px;
    background-color: #222;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5)
}


.workout .content .frame .box{
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.workout .content .frame .box img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
    transition: all 0.5s ease;
}


.workout .content .frame .box:hover img{
    filter: brightness(100%);
    transform: scale(1.08);
}

.workout .content .frame .title {
    padding: 10px 0;
    color: var(--prime);
}

.workout .content .frame p{
    font-size: 0.8em;
}

.trainers .content{
  flex-wrap: wrap;
}

.trainers .content .frame{
  position: relative;
  width: 500px;
  padding: 30px 30px 40px 30px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  margin: 10px;
  background-color: #222;
}

.trainers .content .frame .box{
  position: relative;
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.trainers .content .frame .box img{
  position: absolute;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  object-fit: cover;
  transition: all 0.5s ease;
  cursor: pointer;
}


.trainers .content .frame .box:hover img{
  filter: grayscale(0);
  transform: scale(1.08);
}


.trainers .content .frame .headline{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}


.trainers .content .frame .headline i{
  height: 22px;
  width: 22px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 12px;
  margin-right: 5px;
  text-align: center;
  line-height: 22px;
  transition: all 0.5s ease;
}

.trainers .content .frame .headline i:hover{
  border: 1px solid var(--prime);
  background: #000;
}

.trainers .content .frame .headline .title{
  color: var(--prime);
  font-size: 1.2em;
}

.trainers .content .frame p{
  font-size: 0.8em;
  margin-bottom: 5px;
}


.trainers .content .frame .explore{
  top: 20px;
  color: var(--prime);
  background: transparent;
  padding: 5px 20px;
  border: 1px solid var(--prime);
  border-radius: 5px;
  position: relative;
  text-transform: capitalize;
  transition: all 0.5s ease;
}

.trainers .content .frame .explore:hover{
  color: #fff;
  background: #000;
}

.diet .content{
  flex-direction: column;
}

.diet .content .row{
  display: flex;
  position: relative;
  width: 100%;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
}


.diet .content .row:nth-child(odd) .a{
  order: 2;
}

.diet .content .row .cols{
  position: relative;
  width: 600px;
  padding: 20px 50px;
}

.diet .content .row .cols .heading{
  font-size: 2em;
  color: #ff8502;
  text-transform: capitalize;
}

.diet .content .row:nth-child(odd) .cols .heading{
  color: #02a3ff;
}

.diet .content .row .cols .boxes{
  position: relative;
  width: 100%;
  height: 350px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.diet .content .row .cols .boxes img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact .content{
  min-height: 100vh;
}

.contact .content form{
  margin: auto 0;
  width: 400px;
  height: 500px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
}

.contact .content form input{
  color: #222;
  width: 100%;
  height: 50px;
  padding: 0 10px;
  font-size: 18px;
  border: 1px solid #878787;
  border-radius: 4px;
  margin: 15px 0;
  background: transparent;
}

.contact .content form textarea{
  color: #222;
  width: 100%;
  padding:10px;
  font-size: 18px;
  border: 1px solid #878787;
  border-radius: 4px;
  margin: 15px 0;
  background: transparent;
}

.contact .content form input:focus,
.contact .content form textarea:focus{
  border: 2px solid var(--prime);
  transition: all 0.5s ease;
}

.contact .content form .btn{
  letter-spacing: 1px;
  width: 100%;
  display: inline-block;
  cursor: pointer;
  color: var(--prime);
  border-color: var(--prime);
  background: #222;
  transition: all 0.2s ease;
}

.contact .content form .btn:hover{
  background: #000;
  color: #fff;
}


.contact .content .bgimg{
  background-image: url('./Gym\ Stock\ Images/bgimg.jpg');
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  filter: brightness(20%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.copyright{
  background: #222;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  text-align: center;
  font-size: 18px;
}

.copyright span{
  color: var(--prime);
  font-weight: bold  ;
}

/* Responsiveness */
@media screen and (max-width: 900px){
     .nav{
       padding: 10px 60px;
     }
     .nav ol{
       display: none;
     }

     .nav ol.active{
       position: fixed;
       top: 80px;
       left: 0;
       width: 100%;
       display: flex;
       align-items: center;
       justify-content: center;
       flex-direction: column;
       background-color: rgba(0, 0, 0, 0.9);
       height: calc(100% + 60px);
     }

     .nav ol.active li{
       margin: 8px;
     }

     .nav ol.active li a{
       font-size: 25px;
     }

     .nav .toggle{
       height: 25px;
       width: 25px;
       margin: auto 0;
       cursor: pointer;
       background: url('./Gym\ Stock\ Images/menubar.jpg');
       background-size: 25px;
       background-position: center;
       filter: invert(1);
       background-repeat: no-repeat;
     }
     .nav .toggle.active{
       background: url('./Gym\ Stock\ Images/close.png');
       background-size: 40px;
       background-position: center;
       filter: invert(1);
       background-repeat: no-repeat;
     }

     .highlights h3{
       font-size: 3vw;
       padding: 5px 10px;
       border-left: 3px solid #eee;
       color: var(--prime);
     }
     .highlights h1{
       font-size: 16vw;
     }

     .highlights .join{
       font-size: 1.8vw;
       border: 1px solid var(--prime);
     }
     .main h2{
       font-size: 1.5rem;
     }
     .main h6{
       font-size: 10px;
     }

     .about .content{
       flex-direction: column;
     }

     .workout .content .frame{
       width: 260px;
       padding: 18px;
     }

     .trainers .content .frame{
       width: 350px;
       padding: 15px 15px 40px 15px;
       margin: 10px 5px; 
     }

     .trainers .content .frame .box{
       height: 200px;
     }
     .trainers .content .frame a{
       /* border: 1.5px solid var(--prime); */
       padding: 3px 5px;
     }
     .diet .content .row{
       flex-direction: column;
     }
     .diet .content .row .cols{
       width: 100%;
     }
     .diet .content .row:nth-child(odd) .a{
      order: 0;
    }
    .diet .content .row .cols .heading{
      font-size: 2em;
    }
    .diet .content .row .cols p{
      font-size: 13px;
    }
    .diet .content .row .cols .boxes{
      width: 90%;
      margin: auto;      
    }
}