@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;400;500;700&display=swap");
/* Base */
:root {
  --clr-primary: #e5b800;
}
*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  min-height: 100vh;
  background: black;
  color: #fff;
  overflow-x: hidden;
}
.container {
  width: 80%;
  margin: 0 auto;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header,
.section {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;

}
.header::after,
.header::before,
.section::after,
.section::before {
  content: "";
  background-color: black;
  bottom: 0;
}
.header::after {
  left: -200px;
}
.header::before {
  right: -200px;
}
.mb {
  text-align: center;
  margin-bottom: 30px;
}
.mt {
  margin-top: 20px;
}
.section {
    background: black;
    position: relative;
    padding: 80px 0;

}
.section::after {
  left: -200px;
}
.section::before {
  width: 600px;
  right: -200px;
}
.section:nth-child(even) {
    background: black;

}
.section:nth-child(even)::after,
.section:nth-child(even)::before {
  display: none;
}
.primary {
  font-size: 35px;
  font-weight: 700;
}
.secondary {
  font-size: 25px;
  font-weight: 700;
}
.tertiary {
  font-size: 15px;
}
/* End Base */
/* Menu */
.menu {
  width: 100%;
  padding: 12px 0;
}
.menu .container {
  justify-content: space-between;
}
.mobile-btn {
  display: none;
}
.logo {
  cursor: pointer;
}
.logo img {
  width: 120px;
  height: auto;
}
.nav {
  list-style: none;
}
.nav-item {
  display: inline-block;
  margin-right: 30px;
  font-size: 18px;
  font-weight: 400;
}
.nav-item a {
  text-decoration: none;
  color: #fff;
}
.nav-item:hover a {
  color: #e5b800;
  transition: 0.3s linear;
}
.nav-item:last-of-type {
  margin-right: 0;
}
/* End Menu */
/* Buttons */
.btn {
  padding: 6px 28px;
  background: #e5b800;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: black;
  display: inline-block;
  transition: background 0.3s linear
}
.btn:hover {
  background: #d4a000;
}
.btn-2 {
  font-size: 35px;
  text-decoration: none;
  color: #ccc;
  transition: 0.3s linear;
}
.btn-2:hover {
  color: #d4a000;
}
/* End Buttons */
/* Header */
.text {
  width: 60%;
  text-align: center;
}

.visual img {
  width: 100%;
}
.header h1 {
  font-size: 70px;
  font-weight: 700;
  text-align: center;
}
.header h1 span {
  color: #e5b800;
}
/* End Header */
.section:nth-child(even) .visual {
  margin-right: 30px;
}
/* Trainer */
#trainer {
  text-align: center;
}
.trainer img {
  border-top-left-radius: 80px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 20px;
  margin-bottom: 10px;
  outline: 2px solid #fff;
  padding: 14px;
  height: 350px;
  width: auto;
}
.trainer .mb {
  margin-bottom: 10px;
}
/* End Trainer */
/* Testimonial */
#testimonial .visual img {
  width: 100%;
  display: block;
  margin-left: auto;
}
.client {
  background: #222;
  color: white;
  padding: 20px 10px;
  margin-right: 20px;
  text-align: center;
  border-radius: 20px;
  position: relative;
  margin-top: 20px;
}
.client img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: calc(50% - 40px);
}
.client h2 {
  margin: 20px 0 10px 0;
}


.explore-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.explore-img {
  border-radius: 40px;
  width: 30%; 
  height: auto; 
  margin: 20px; 

}

.explore-img1 {
  width: 30%; 
  border-radius: 40px;
}

.explore-img2 {
  width: 30%; 
  border-radius: 40px;
  margin: 20px;
}

.visual img {
  width: 105%; 
  height: auto; 
}
End Testimonial */
#discount {
  padding: 40px 0;
}
.footer {
  padding: 30px 0;
  border-top: 1px solid #fff;
  text-align: center;
}
@media (max-width: 1016px) {
  .flex {
    flex-direction: column;
    text-align: center;
  }
  .mobile-btn {
    display: block;
    font-size: 35px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 12px;
  }
  .menu.active .nav-item {
    display: block;
    margin: 30px 0;
  }
  .nav,
  .menu .btn {
    display: none;
  }
  .menu.active .nav,
  .menu.active .btn {
    display: block;
  }
  .menu.active {
    padding: 30px 0;
    width: 100%;
    transition: all 0.8s ease;
  }
  .text,
  .visual {
    width: 100%;
    margin-bottom: 20px;
  }
  .text h1 {
    font-size: 45px;
  }
  .primary {
    font-size: 28px;
  }
  .secondary {
    font-size: 22px;
  }
  .tertiary {
    font-size: 14px;
  }
  .trainer {
    margin-bottom: 20px;
  }
  .client {
    margin-bottom: 50px;
  }
  #discount .visual img {
    width: 70%;
    margin-bottom: 30px;
  }
}
@media (max-width: 530px) {
  .header::after,
  .header::before,
  .section::after,
  .section::before {
    display: none;
  }
  .primary {
    font-size: 25px;
  }
  .secondary {
    font-size: 20px;
  }
  .tertiary {
    font-size: 16px;
    text-align: center;
  }
  .text h1 {
    font-size: 34px;
  }
  .btn,
  .btn-2 {
    font-size: 16px;
  }
}

.primary.mb {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: bold;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px; 
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.contact-description {
  max-width: 45%;
  color: #fff;
}

.contact-description h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #e5b800; 
  text-align: center;
}

.contact-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  text-align: center;
}

.contact-form {
  width: 100%;
  max-width: 55%;
  padding: 30px;
  background-color: #1c1c1c;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 20px;
}

input, textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 6px;
  background-color: #2c2c2c;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: #999;
}

input:focus, textarea:focus {
  background-color: #333;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.btn-primary {
  width: 100%;
  padding: 10px;
  background-color: #e5b800;
  color: black;
  font-size: 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #d4a000;
}


span {
  color: rgb(0, 164, 0);
  font-weight: 800;
}


.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.contact-description {
  max-width: 45%;
}

.contact-form {
  width: 100%;
  max-width: 55%;
}

@media (max-width: 1016px) {
  .contact-container {
    flex-direction: column;
    gap: 20px; 
    padding: 20px; 
    width: 100%; 
  }

  .contact-description, .contact-form {
    max-width: 100%; 
  }

  .contact-form {
    padding: 40px; 
    border-radius: 12px;
    background-color: black; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); 
    width: 100%; 
    box-sizing: border-box; 
  }

  .form-group {
    margin-bottom: 20px; 
  }

  input, textarea {
    width: 100%;
    padding: 15px;
    font-size: 15px;
  }

  .btn-primary {
    font-size: 15px;
    padding: 17px;
  }

  
}

.kickboxing {
  max-width: 250px;
}

@media (min-width: 1016px) {
  .trainer img {
    margin: 30px;
  }

}
@media (min-width: 960px) {
.video-player {
  max-width: 900px;
  padding-top: 50px;
}

}

@media (max-width: 960px) {
  .video-player {
    max-width: 500px;
    border-radius: 50px;
  }
  
  }


  .language {
    text-decoration: none;
    height: 25px;
  }

  #language {
    border: 1px solid #e5b800;
    padding: 0; 
    display: inline-block;
    vertical-align: middle; 
}
  

@media (max-width: 1016px) {
  .language-selection {
    margin-bottom: 10px;
  }
}