/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}

/* ========== HERO SECTION ========== */
.hero {
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),  url('images/wild beast view.JPG'); /* ✅ Replace with your image */
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 20px;
}

/* ====== NAVIGATION LINKS ====== */
.links {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
}

.links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.links a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.links a:hover {
  background-color: rgba(255, 60, 0, 0.9);
  color: #fff;
}

/* ====== CONTENT ====== */
.hero .container {
  text-align: center;
  z-index: 2;
  margin: auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin: 20px 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* ====== BUTTON ====== */
.btn {
  display: inline-block;
  background-color: #ff3c00;
  padding: 14px 30px;
  color: white;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn:hover {
  background-color: black;
  transform: scale(1.05);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .links ul {
    gap: 15px;
  }

  .btn {
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .links ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}



/* ========== ABOUT SECTION ========== */
.about {
  background-color: #111; /* Dark background for gym vibe */
  color: #fff;
  padding: 80px 20px;
}

.about .container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #ff3c00; /* Wild Beast brand color */
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ff3c00;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: justify;
  text-justify: inter-word;
  padding: 0 10px;
  animation: fadeInUp 1s ease-in-out;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .about h2 {
    font-size: 2.2rem;
  }

  .about p {
    font-size: 1rem;
  }
}


/* ========== GALLERY SECTION ========== */
.gallery {
  background-color: #0a0a0a;
  color: white;
  padding: 80px 20px;
}

.gallery .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white; /* ✅ White heading */
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
}

.gallery h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ff3c00;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Video Gallery */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.video-item video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 60, 0, 0.4);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.video-item video:hover {
  transform: scale(1.03);
}

/* Image Gallery */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 60, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 60, 0, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .video-gallery,
  .image-gallery {
    grid-template-columns: 1fr;
  }
}


/* Gym Promo Section Styles */
#promo {
  background: linear-gradient(to right, #1f1f1f, #2b2b2b);
  color: #ffffff;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

#promo .container {
  max-width: 800px;
  margin: 0 auto;
}

#promo h2 {
  font-size: 36px;
  color: #ff4d00;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

#promo p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

#promo strong {
  color: #ffcc00;
}

#promo a {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background-color: #ff4d00;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

#promo a:hover {
  background-color: #e04300;
}

/* === Mobile Responsive Styles === */
@media (max-width: 600px) {
  #promo {
    padding: 40px 15px;
  }

  #promo h2 {
    font-size: 28px;
  }

  #promo p {
    font-size: 16px;
  }

  #promo a {
    font-size: 14px;
    padding: 10px 24px;
  }
}





/* Membership Section Styles */
.membership {
  background: linear-gradient(to bottom, #111, #1c1c1c);
  color: #ffffff;
  padding: 60px 20px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.membership .container {
  max-width: 1100px;
  margin: 0 auto;
}

.membership h2 {
  font-size: 36px;
  color: #ffcc00;
  margin-bottom: 15px;
}

.membership p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

.membership-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.plan {
  background-color: #2a2a2a;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(255, 76, 0, 0.5);
}

.plan h3 {
  font-size: 24px;
  color: #ff4d00;
  margin-bottom: 15px;
}

.plan p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #ffffff;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff4d00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e04300;
}

/* Testimonials Section */
.testimonials {
  background: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.testimonials h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ff4d00;
}

/* Slider container */
.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: auto;
  min-height: 140px;
}

/* Each testimonial */
.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: fadeSlide 8s infinite;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial:nth-child(1) {
  animation-delay: 0s;
}

.testimonial:nth-child(2) {
  animation-delay: 4s;
}

/* Animation keyframes */
@keyframes fadeSlide {
  0%, 100% { opacity: 0; }
  10%, 45% { opacity: 1; }
  55%, 100% { opacity: 0; }
}

/* Testimonial box styling */
.testimonial p {
  font-size: 18px;
  line-height: 1.6;
  background: #1f1f1f;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 600px) {
  .testimonials h2 {
    font-size: 24px;
  }

  .testimonial p {
    font-size: 16px;
    padding: 15px;
  }
}




.site-footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.site-footer .footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.site-footer a {
  color: #ff4d00;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .footer-icons {
  margin-top: 20px;
}

.site-footer .footer-icons .icon {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 14px;
  border: 2px solid #ff4d00;
  border-radius: 50%;
  color: #ff4d00;
  font-weight: bold;
  transition: all 0.3s ease;
}

.site-footer .footer-icons .icon:hover {
  background-color: #ff4d00;
  color: #000;
  transform: scale(1.1) rotate(5deg);
}

.site-footer .opening-hours h4 {
  margin-top: 20px;
  font-size: 18px;
  color: #ffcc00;
}

.site-footer .opening-hours p,
.site-footer .contact-info p {
  margin: 5px 0;
  font-size: 15px;
}

.site-footer .copyright {
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}




/* Base styles */
.hero {
  position: relative;
  background-color: #000; /* Adjust based on your theme */
  padding: 10px 20px;
}

.links ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  gap: 20px;
}

.links ul li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .links {
    display: none;
    width: 100%;
    background-color: #111;
  }

  .links ul {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  .links.active {
    display: block;
  }
}

