/* General Layout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #121212;
  color: #eaeaea;
}

/* Header */
header {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;
}
header .logo {
  width: 120px;
  display: block;
  margin: 0 auto 10px;
}
header h1 {
  margin: 10px 0;
  font-size: 2em;
}

/* Navigation */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
}
nav a {
  margin: 0 10px;
  color: #eaeaea;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover { color: #4CAF50; }

/* Personal Training Button */
nav .cta-button {
  margin-left: auto;            /* Pushes button to the right */
  background: #800000;          /* Maroon */
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
nav .cta-button:hover {
  background: #a00000;
  transform: scale(1.05);
}

/* Hero */
.hero {
  text-align: center;
  padding: 35px 20px;
  background: #800000; /* Maroon */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  max-width: 900px;
  margin: 30px auto;
  color: #fff;
}
.hero h2 { font-size: 1.8em; margin-bottom: 8px; }
.hero p { font-size: 1.1em; color: #f0f0f0; }

/* About */
.about {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px 20px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  text-align: left;
  line-height: 1.7em;
}
.about h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.8em;
  text-align: center;
}
.about p {
  margin-bottom: 20px;
  color: #ccc;
  font-size: 1.05em;
}
.about-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 0;
}
.about-list li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 1.05em;
  color: #ccc;
}
.about-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-size: 1.2em;
}

/* Gallery */
.gallery {
  padding: 40px 20px;
  text-align: center;
}
.gallery-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  background: #181818;
  border-radius: 8px;
}
.gallery-container {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.gallery-container img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* Gallery Buttons */
.gallery-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2em;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  display: none;
}
.gallery-btn:hover { background: rgba(0,0,0,0.8); }
.gallery-btn.prev { left: 10px; }
.gallery-btn.next { right: 10px; }

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}
.gallery-dots button {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: none;
  background: #555;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.gallery-dots button.active {
  background: #4CAF50;
  transform: scale(1.2);
}
.gallery-dots button:hover { background: #888; }

/* Desktop */
@media (min-width: 768px) {
  .gallery-btn { display: block; }
  .gallery-container img {
    max-height: 620px;
    object-fit: contain;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .gallery-container img {
    max-height: 320px;
    object-fit: cover;
    border-radius: 6px;
  }
  .gallery-dots button {
    width: 18px; height: 18px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .gallery-container img {
    max-height: 240px;
    object-fit: cover;
  }
  .gallery-dots button {
    width: 20px; height: 20px;
  }
}

/* Sponsors Section */
.sponsors {
  padding: 40px 20px;
  background: #181818;
  text-align: center;
}
.sponsors h2 { 
  font-size: 1.8em; 
  margin-bottom: 25px; 
  color: #800000;
}
.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sponsor-card {
  background: #222;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}
.sponsor-card a {
  display: inline-block;
  transition: transform 0.3s, filter 0.3s;
  cursor: pointer;
}
.sponsor-card a:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 0 10px #800000);
}
.sponsor-card img {
  max-width: 200px;
  max-height: 100px;
  object-fit: contain;
  display: block;
}

/* Contact Section */
.contact {
  background: #1a1a1a;
  padding: 40px 20px;
  text-align: center;
}
.contact h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #800000;
}
.contact form {
  max-width: 500px;
  margin: 0 auto;
  background: #222;
  padding: 20px;
  border-radius: 10px;
}
.contact label { display: block; margin-top: 15px; text-align: left; }
.contact input, .contact textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  background: #333;
  border: 1px solid #555;
  border-radius: 5px;
  color: #fff;
}
.contact button {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: #4CAF50;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}
.contact button:hover { background: #45a049; }

/* WhatsApp & Email Buttons */
.direct-contact { margin-top: 30px; text-align: center; }
.direct-contact h3 { margin-bottom: 20px; font-size: 1.2em; color: #fff; }
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.contact-link {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 24px;
  width: 100%; max-width: 300px;
  background: #1f1f1f;
  border-radius: 8px;
  color: #eaeaea; text-decoration: none; font-weight: bold;
  font-size: 1em; box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  transition: all 0.3s ease; border: 2px solid transparent;
}
.contact-link img { width: 28px; height: 28px; }
.contact-link[href*="wa.me"] { border-color: #25D366; }
.contact-link[href^="mailto:"] { border-color: #1DA1F2; }
.contact-link:hover {
  background: #2a2a2a; transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}
@media (min-width: 768px) {
  .contact-buttons { flex-direction: row; }
  .contact-link { max-width: 250px; }
}

/* Socials */
.social-heading { margin-top: 40px; font-size: 1.1em; font-weight: bold; color: #ccc; text-align: center; }
.social-links {
  margin-top: 20px; display: flex; justify-content: center; gap: 20px;
}
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 55px; height: 55px; background: #1f1f1f;
  border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  transition: transform 0.3s, background 0.3s, border 0.3s;
  border: 2px solid transparent;
}
.social-links a img { width: 28px; height: 28px; }

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  font-size: 0.9em;
}

/* Thank You Page */
.thankyou-page {
  background: #121212;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}
.thankyou-container {
  text-align: center;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
  max-width: 500px;
  width: 90%;
}
.thankyou-container h1 {
  color: #4CAF50;
  margin-bottom: 20px;
}
.thankyou-container p {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 30px;
}
.thankyou-container .button {
  display: inline-block;
  padding: 12px 24px;
  background: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}
.thankyou-container .button:hover {
  background: #45a049;
  transform: scale(1.05);
}