* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background-color: white;
}

header {
  background-color: rgb(255, 193, 7);
}

.texthead {
  color: rgb(255, 193, 7);
}

.navbar-toggler {
  margin-left: auto;
  display: none; /* Hidden by default */
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.nav-links li {
  margin: 0 1rem;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.nav-links li:hover {
  background-color: rgb(255, 193, 7);
  border-radius: 3px;
  transform: scale(1.1);
}
.nav-links li:hover a {
  color: black;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

/* Logo styling */
#logoimg {
  width: 10%;
  border-radius: 20px;
  position: absolute;
  right: 0; /* Align the logo to the right */
  top: -2px;
  margin-bottom: 0;
}

.bottomnav {
  position: relative;
  padding: 10px;
}

#home_section {
  background-image: url("../css/backkkk.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
  padding: 50px;
  height: auto;
}
#home_section .row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#home_section h1 {
  font-size: 3.5rem;
  color: yellow;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 1.5s ease-out;
  margin: 60px;
}
#home_section p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}
#home_section .cta-button {
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: yellow;
  color: black;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
#home_section .cta-button:hover {
  transform: scale(1.05);
  background-color: #e0a800;
}

@keyframes fadeInDown {
  0% {
    transform: translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#ourGym_section {
  padding: 50px 0;
  background-color: white;
  margin-top: 5px;
}
#ourGym_section #uppergallery {
  text-align: center;
  margin-bottom: 50px;
}
#ourGym_section #uppergallery h3 {
  font-size: 3.5rem;
  color: rgb(255, 193, 7);
  margin: 20px;
  position: relative;
}
#ourGym_section #uppergallery h3::after {
  content: "";
  display: block;
  width: 25%;
  height: 3px;
  background-color: rgb(255, 193, 7);
  margin: 10px auto 0;
}
#ourGym_section img {
  max-height: 600px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.5s ease-in-out;
}
#ourGym_section img:hover {
  transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 60%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}
.carousel-control-prev span,
.carousel-control-next span {
  filter: invert(1);
}

#offers_section {
  text-align: center;
  padding: 40px 20px;
  color: #fff; /* Ensures readability */
}

#headeroffer {
  margin-bottom: 30px;
  font-size: 3rem;
  color: #ffde59; /* Golden color for the header */
  text-transform: uppercase;
  font-weight: bold;
  animation: fadeIn 2s ease-in-out;
}

.offers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers the cards horizontally */
  gap: 25px; /* Adds space between the cards */
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffde59; /* Highlighted border */
  padding: 20px;
  border-radius: 12px;
  background-color: #ffffff; /* Light background for contrast */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Prominent shadow */
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card h3 {
  color: #c20606; /* Vibrant red for titles */
  font-size: 2rem;
  margin-bottom: 10px;
}
.card p {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.card h2 {
  color: #38b000;
  font-size: 1.8rem;
  font-weight: bold;
}
.card:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 8px rgb(255, 193, 7);
}

#specialoffersectiontext {
  margin-bottom: 30px;
  font-size: 3rem;
  color: #ffde59;
  text-transform: uppercase;
  font-weight: bold;
  animation: fadeIn 3s ease-in-out;
}

.coaches-section {
  background-color: white;
  padding: 50px 20px;
  text-align: center;
}
.coaches-section .section-title {
  margin-bottom: 30px;
  font-size: 3rem;
  color: #ffde59;
  text-transform: uppercase;
  font-weight: bold;
  animation: fadeIn 2s ease-in-out;
}
.coaches-section .coach-card {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coaches-section .coach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 8px rgb(255, 193, 7);
}
.coaches-section .coach-image {
  width: 100%;
  height: 400px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.coaches-section .coach-name {
  font-size: 1.5rem;
  color: #c20606;
  margin: 10px 0;
  font-weight: 700;
}
.coaches-section .coach-major, .coaches-section .coach-experience {
  font-size: 1rem;
  color: #555;
  margin: 5px 0;
}
.coaches-section .coach-bio {
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
  line-height: 1.5;
}

.classes-section {
  text-align: center;
}
.classes-section .classes-title {
  margin-bottom: 30px;
  font-size: 3rem;
  color: #ffde59; /* Golden color for the header */
  text-transform: uppercase;
  font-weight: bold;
  animation: fadeIn 2s ease-in-out;
}
.classes-section .class-item {
  border: 1px solid rgb(230, 230, 230);
  margin: 20px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 2s ease-in-out;
}
.classes-section .class-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 5px rgb(255, 193, 7);
}
.classes-section .class-item .class-image-container img {
  width: 250px;
  height: 200px;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 5px solid #f1f1f1;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.classes-section .class-item .class-image-container img:hover {
  transform: scale(1.1); /* Scale animation */
  box-shadow: 0 2px 10px rgb(255, 193, 7);
}
.classes-section .class-item h3 {
  color: #c20606;
  font-size: 2.8rem;
  font-weight: 700;
}
.classes-section .class-item p:nth-of-type(1) {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
}
.classes-section .class-item p:nth-of-type(2) {
  color: rgb(255, 223, 0);
  font-size: 1.5rem;
  font-weight: 500;
}

#store_section {
  text-align: center;
  margin: 100px;
}
#store_section h2 {
  margin-bottom: 30px;
  font-size: 3rem;
  color: #ffde59; /* Golden color for the header */
  text-transform: uppercase;
  font-weight: bold;
  animation: fadeIn 2s ease-in-out;
}
#store_section .store-collection .card-store {
  border: 1px solid rgb(230, 230, 230);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#store_section .store-collection .card-store h3 {
  font-size: 1.6rem;
  color: #333;
  height: 100px;
}
#store_section .store-collection .card-store p {
  padding: 10px;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #38b000;
}
#store_section .store-collection .card-store:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgb(255, 193, 7);
}
#store_section .store-collection .card-store .store-image {
  display: flex;
  justify-items: center;
  border-bottom: #333 solid 1px;
  padding: 10px;
}
#store_section .store-collection .card-store .store-image img {
  max-width: 250px;
  height: 200px;
  border-radius: 8px;
  margin: 0 auto;
}
#store_section .store-collection .card-store button {
  padding: 20px;
  background-color: rgb(255, 223, 0);
  border-radius: 20px;
  border: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
#store_section .store-collection .card-store button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgb(255, 193, 7);
}

#contact_section .container-fluid {
  border-bottom: 1px solid black;
}
#contact_section .contact-header {
  height: 100px;
  width: 100%;
  background-color: rgb(0, 0, 0);
  padding: 25px;
}
#contact_section .contact-header h2 {
  font-weight: 600;
  font-size: 2.2rem;
  color: rgb(255, 193, 7);
  text-align: center;
  text-transform: uppercase;
}
#contact_section .fotter {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: rgb(255, 193, 7);
  padding: 50px 30px;
}
#contact_section .fotter .logofotter img {
  width: 140px;
  margin: 0 auto;
  display: block;
  border: 5px solid rgb(0, 0, 0);
  border-radius: 50%;
  padding: 10px;
}
#contact_section .fotter .footer-content {
  text-align: left;
}
#contact_section .fotter .footer-content h2 {
  font-weight: 700;
  font-size: 1.8rem;
  color: rgb(0, 0, 0);
  margin-top: 100px;
}
#contact_section .fotter .footer-content #locationtext {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin-top: 50px;
  margin-bottom: 50px;
}
#contact_section .fotter .footer-content #locationtext a {
  text-decoration: none;
  font-weight: 600;
}
#contact_section .fotter .footer-content .social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
#contact_section .fotter .footer-content .social-icons a {
  font-size: 1.8rem;
  color: rgb(0, 0, 0);
}
#contact_section .fotter .footer-content .social-icons a:hover {
  color: blue;
}
#contact_section .fotter .footer-content #contactvariable {
  margin-top: 30px;
}
#contact_section .fotter .footer-content #contactvariable h3 {
  color: rgb(0, 0, 0);
  font-weight: 500;
  font-size: 1.5rem;
}
#contact_section .fotter .footer-content #contactvariable h3 a {
  text-decoration: none;
  color: rgb(0, 0, 0);
}
#contact_section .fotter .footer-content #contactvariable h3 a:hover {
  color: red;
}
#contact_section .fotter .footer-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background-color: rgb(0, 0, 0);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
#contact_section .fotter .footer-form form label {
  font-size: 1.5rem;
  color: rgb(255, 193, 7);
  font-weight: 600;
}
#contact_section .fotter .footer-form form input,
#contact_section .fotter .footer-form form textarea {
  padding: 15px;
  border-radius: 10px;
  border: none;
  background-color: #f7f7f7;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}
#contact_section .fotter .footer-form form input:focus,
#contact_section .fotter .footer-form form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px rgb(255, 193, 7);
}
#contact_section .fotter .footer-form form button {
  align-self: center;
  padding: 10px 25px;
  font-size: 1.2rem;
  background-color: rgb(255, 193, 7);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
}
#contact_section .fotter .footer-form form button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

@media (min-width: 0) and (max-width: 786px) {
  html {
    font-size: 14px;
  }
  .footer-content {
    text-align: center;
  }
  .carousel-control-next-icon, .carousel-control-prev-icon {
    position: absolute;
    top: -50px;
  }
  #home_section {
    background-size: cover;
    max-height: 100vh;
    min-height: auto;
    padding: 40px 20px;
  }
  #home_section p {
    font-size: 1.5rem;
  }
  #home_section h3 {
    font-size: 2rem;
  }
  #home_section .cta-button {
    padding: 10px 10px;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: yellow;
    color: black;
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  .navbar-toggler {
    display: block; /* Show the toggler button */
    margin-left: auto;
  }
  .nav-links {
    display: none; /* Hide the nav links initially */
    flex-direction: column; /* Arrange links vertically */
    background-color: #343a40; /* Same as the navbar background */
    padding: 1rem;
    position: absolute;
    top: -60px; /* Adjust based on the height of your navbar */
    left: 10px;
    width: 100%;
    z-index: 10;
  }
  .nav-links.active {
    display: flex; /* Show the nav links when active */
  }
  .nav-links li {
    margin: 0.5rem 0;
  }
  #logoimg {
    position: relative;
    top: 0; /* Adjust logo position for small screens */
    width: 10%; /* Adjust size for better fit */
  }
  .contact-header {
    font-size: 1rem;
  }
  .coaches-section .coach-image {
    width: 70%;
    height: 150px;
  }
  .coaches-section .coach-name {
    font-size: 2.5rem;
    font-weight: 500;
    color: red;
  }
  #store_section .store-collection .card-store .store-image img {
    max-width: 250px;
    width: 80%;
    height: 200px;
    border-radius: 8px;
    margin: 0 auto;
  }
  #store_section .store-collection .card-store h3 {
    font-size: 1.5rem;
  }
  #store_section .store-collection .card-store .store-image {
    padding: 30px;
  }
  container-store {
    --bs-gutter-x: 0;
  }
  .store-image {
    margin-bottom: 7px;
  }
  .store-image img {
    height: 200px;
    width: 200px;
  }
  #store_section {
    text-align: center;
    margin: 50px;
  }
}
/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 60%;
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 10px;
}

.modal-content p {
  margin-bottom: 20px;
}

.coach-images img {
  width: 100px;
  margin: 5px;
  border-radius: 5px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}/*# sourceMappingURL=style.css.map */