/* ================= THEME 10 – IRON CORE FITNESS ================= */

:root {
  --theme10-charcoal: #2E2E2E;
  --theme10-orange: #FF6B00;
  --theme10-grey: #B0B0B0;
  --theme10-dark: #121212;
  --theme10-light-bg: linear-gradient(180deg, #f4f4f4, #e6e6e6);
}


/* ================= HERO ================= */

.theme10-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.theme10-hero .bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme10-hero .video-overlay {
  position: absolute;
  inset: 0;

  /* ORANGE GYM OVERLAY */
  background: linear-gradient(
    to bottom,
    rgba(255,107,0,0.55),
    rgba(0,0,0,0.85)
  );

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-content {
  color: #ffffff;
  max-width: 900px;
}

.hero-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 35px;
  color: #dddddd;
}


/* ================= CONTACT CARDS ================= */

.contact-cards-theme10 {
  background: var(--theme10-light-bg);
}


/* ================= POSTER ================= */

.theme10-poster {
  background: linear-gradient(
    135deg,
    var(--theme10-charcoal),
    var(--theme10-dark)
  );

  padding: 70px 80px;
}

.poster-content {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 60px;
}

.poster-left {
  flex: 1;
}

.poster-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.poster-right img {
  max-width: 420px;
  width: 100%;
}

.poster-name {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  color: var(--theme10-orange);
  margin-bottom: 20px;
}

.poster-location-heading {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  color: var(--theme10-orange);
  margin-top: 40px;
  margin-bottom: 15px;
}

.poster-contact {
  font-size: 1.4rem;
  margin: 12px 0;
  display: flex;
  gap: 10px;
}

.poster-contact i,
.poster-contact a {
  color: #ffffff;
}

.poster-location p {
  font-size: 1.2rem;
  color: #cccccc;
}


/* ================= BUTTON ================= */

.btn-Know-theme10 {
  background: var(--theme10-orange);
  color: #ffffff;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-Know-theme10:hover {
  background: #cc5500;
  transform: translateY(-3px);
}


/* ================= SERVICES ================= */

.theme10-services {
  padding: 80px 20px;
  background: #f4f4f4;
  text-align: center;
}

.theme10-services .section-title {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--theme10-charcoal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.services-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.services-grid img:hover {
  transform: scale(1.05);
}

.services-save {
  margin-top: 50px;
}


/* ================= MAP ================= */

.theme10-map {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.map-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}


/* ================= PAYMENT ================= */

.theme10-payment {
  padding: 80px 20px;
  background: var(--theme10-light-bg);
  text-align: center;
}

.upi-id {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--theme10-charcoal);
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.payment-icons img {
  width: 90px;
  padding: 15px;
  background: #ffffff;
  border-radius: 20px;
}


/* ================= FOLLOW SECTION (FULL FIX) ================= */

.contact-social-section-theme10 {
  padding: 70px 20px;
  background: var(--theme10-light-bg);
  text-align: center;
}

.contact-social-section-theme10 .section-title {
  margin-bottom: 40px;
  color: var(--theme10-charcoal);
}

/* Force override global styles */

.contact-social-section-theme10 .social-cards {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 40px !important;
  flex-wrap: wrap !important;
}

.contact-social-section-theme10 .social-card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Critical Fix */

.contact-social-section-theme10 .social-card img {
  width: 65px !important;
  height: auto !important;
  max-width: 65px !important;
  transition: 0.3s;
}

.contact-social-section-theme10 .social-card img:hover {
  transform: translateY(-6px) scale(1.08);
}


/* ================= SLIDER ================= */

.slide-bg {
  height: 85vh;
  min-height: 500px;

  background-size: cover;
  background-position: center;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  /* ORANGE GYM OVERLAY */
  background: linear-gradient(
    to bottom,
    rgba(255,107,0,0.45),
    rgba(0,0,0,0.85)
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.slide-content h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  color: var(--theme10-orange);
}

.slide-content p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 25px;
}


/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .poster-content {
    flex-direction: column;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media(max-width:576px){

  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid img {
    height: 200px;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* Mobile Follow Fix */

  .contact-social-section-theme10 .social-card img {
    width: 45px !important;
  }

}
