@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: rgb(11, 11, 11);
  position: relative;
  padding: 80px 0;
}
.section::after {
  left: -200px;
}
.section::before {
  width: 600px;
  right: -200px;
}
.section:nth-child(even) {
  background: #141615;
}
.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: 90%;
  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%; /* Adjust size as needed */
  height: auto; /* Maintain aspect ratio */
  margin: 20px; /* Space between images */

}

.explore-img1 {
  width: 30%; /* Slightly larger size for the middle image */
  border-radius: 40px;
}

.explore-img2 {
  width: 30%; /* Same size as the first image */
  border-radius: 40px;
  margin: 20px;
}

.visual img {
  width: 105%; /* Consistent sizing */
  height: auto; /* Maintain aspect ratio */
}
End Testimonial */
/* Discount */
#discount {
  padding: 40px 0;
}
/* End  Discount */
/* Footer */
.footer {
  padding: 30px 0;
  border-top: 1px solid #fff;
  text-align: center;
}
/* End Footer */
/* Responsive */
@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;
  }
}
/* Menu and Navbar */
.menu {
    background-color: black; 
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.menu .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Form Container */
.form-container {
    background-color: #1e1e1e; 
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    margin: 40px auto;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #fff;
}

input,
select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #333; 
    color: #fff; 
}

button {
    padding: 10px;
    background-color: #e5b800;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #d4a000;
}

/* Responsive Design */
@media (max-width: 1016px) {
    .nav {
        display: none; 
    }

    .mobile-btn {
        display: block;
        color: white;
    }
}


.h2-spacing {
    padding-bottom: 15px;
}

@media (max-width: 1050px) {
  .form-container {
    background-color: black;
  }
}


.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;
  }
}
