@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: black;
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.header {
  background-image: url(bg.jpeg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #040404;
  border-bottom: 1px solid #ffffff29;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  z-index: 1000;
}

.logo img {
  max-width: 150px;
  height: auto;
  display: block;
}

/* Optional: for small screens */
@media (max-width: 768px) {
  .logo img {
    max-width: 100px;
  }
}

.menu .navbar ul {
  display: flex;
  gap: 20px;
}

.menu .navbar ul li a {
  font-size: 18px;
  color: white;
  padding: 10px;
  display: block;
}

.menu .navbar ul li a:hover {
  color: #E1160D;
}

#menu {
  display: none;
}

.menu-icono {
  width: 25px;
  cursor: pointer;
}

.menu label {
  display: none;
}

/* HEADER INFO */
.header-info h1 {
  color: #E1160D;
  text-transform: uppercase;
  font-size: 70px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.header-info p {
  color: white;
  font-size: 22px;
  margin-bottom: 35px;
}

.btn-1, .btn-2 {
  display: inline-block;
  padding: 10px 35px;
  border-radius: 10px;
  background-color: #E1160D;
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn-1:hover, .btn-2:hover {
  background-color: #A70A15;
}

/* GYM SECTIONS */
.gym {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 100px 0;
  flex-wrap: wrap;
}

.gym-1 {
  width: 48%;
}

.gym-1 h2 {
  font-size: 40px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gym-1 h2 span {
  color: #A70A15;
}

.gym-1 p {
  font-size: 16px;
  color: #818181;
  margin-bottom: 25px;
}

.gym-2 {
  width: 48%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.img-1 {
  width: calc(50% - 10px);
  object-fit: cover;
}

/* FOOTER */
.footer {
  border-top: 1px solid #ffffff29;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #040404;
  text-align: center;
}

.footer h3 {
  color: #cdcecd;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 15px;
}

.links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.links ul li a {
  color: white;
  transition: color 0.3s ease;
}

.links ul li a:hover {
  color: #E1160D;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .menu {
    flex-wrap: wrap;
  }

  .menu label {
    display: block;
  }

  .menu .navbar {
    display: none;
    width: 100%;
    background-color: #303030;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 20px 0;
  }

  .menu .navbar ul {
    flex-direction: column;
    text-align: center;
  }

  #menu:checked + label + .navbar {
    display: block;
  }

  .header-info h1 {
    font-size: 45px;
  }

  .gym {
    flex-direction: column;
    padding: 50px 20px;
  }

  .gym-1,
  .gym-2 {
    width: 100%;
    text-align: center;
  }

  .gym-2 {
    justify-content: center;
  }

  .img-1 {
    width: 80%;
    max-width: 300px;
  }

  .footer {
    flex-direction: column;
    gap: 20px;
  }
}
