:root {
  --cta: #d15e11;
  --bg-dark: #0a0a0a;
  --text: #fff;
  --text-secondary: #c4c4c4;
  --border: #1a1a1a;
  --font-heading: "Oswald", sans-serif;
  --font-body: "Muli", sans-serif;
}

html,
body {
  height: 100%;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  background: var(--bg-dark);
}

p {
  font: 400 0.875rem/1.7 var(--font-body);
  color: #a9a9a9;
  margin: 0 0 1rem;
}
a:hover {
  text-decoration: none;
  outline: none;
  color: var(--text);
}

.section-header p {
  font-size: 1rem;
  color: var(--cta);
  text-transform: uppercase;
  font-weight: 700;
}
.section-header h2 {
  color: var(--text);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.hero-background {
  background-image: url("./images/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-padding {
  padding: 6.25rem 0;
}

.btn-cta {
  display: inline-block;
  font: 700 1.5rem var(--font-body);
  color: var(--text);
  background: var(--cta);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-cta:hover {
  background-color: #ff6600b8;
}
/* Header */
.site-header {
  background: #0b0b0bd3;
  backdrop-filter: blur(10px);
  inset: 0 0 auto;
  z-index: 99;
}

.main-nav ul li a {
  color: var(--text);
  font: 500 1.4rem var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  text-decoration: none;
}
.main-nav ul li a:hover {
  color: var(--cta);
}

.header-social a,
#footer-social a {
  color: var(--text);
  font-size: 1.2rem;
}
.header-social a:hover,
#footer-social a:hover {
  color: var(--cta);
}

/* Mobile menu */
.menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text);
  padding-top: 0.5rem;
}

#mobileMenu {
  width: 100%;
  background: var(--bg-dark);
}
#mobileMenu ul a {
  color: var(--text);
  font: 500 1.5rem var(--font-heading);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}
#mobileMenu ul a:hover {
  color: var(--cta);
}
#mobileMenu .social-links a {
  color: var(--text);
  font-size: 1.25rem;
}

.mobile-nav-credit {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  text-align: center;
  font: 400 0.9rem/1.4 var(--font-body);
  padding: 0 1rem;
}
.mobile-nav-credit a {
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--text) 25%, transparent);
}
.mobile-nav-credit a:hover {
  color: var(--cta);
  border-bottom-color: var(--cta);
}

.hero-text {
  margin-top: -5rem;
}
.hero-text h1 {
  color: var(--text);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 10rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-text h1 strong {
  color: var(--cta);
}

/* Features */
.features {
  background: var(--bg-dark);
}

.feature-card h4 {
  color: var(--text);
  margin: 1.5rem 0 1rem;
}
/* Card Container */
.feature-card {
  padding: 20px;
  background: #151515; /* Or #151515 for a dark theme */
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}

/* Image Spacing */
.feature-card img {
  margin-bottom: 25px;
  border-radius: 4px;
}

/* The Title (h4) */
.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #fff; /* Change to #fff for dark theme */
  position: relative;
}

/* Optional: cta line under title */
.feature-card h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #f36103; /* A bright fitness orange/red */
  margin: 10px auto 0;
}

/* The Description (p) */
.feature-card p {
  font-size: 0.95rem;
  color: #d6d6d6;
  line-height: 1.6;
  margin-bottom: 0;
}
/* Services */
.services {
  background: #151515;
}
.service-card {
  background: var(--bg-dark);
  padding: 0.625rem 1.875rem 1.625rem;
}
.service-card span {
  color: var(--cta);
  font-size: 0.75rem;
}
.service-toggle {
  width: 2.875rem;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.1);
  right: 1rem;
  top: 1rem;
  transition: transform 0.3s;
}
.service-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
}

/* Contact */
.contact-item iconify-icon {
  font-size: 1.25rem;
  color: var(--cta);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 1rem;
  font-size: 1.5rem;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-weight: 500;
  animation: pulse-shadow 2s infinite;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-float:hover {
    background-color: #20ba5a;
    transform: translateY(-5px);
    color: white;
  }
}
@keyframes pulse-shadow {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 1200px){
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    border-radius: 50%;
    width: 58px !important;
    height: 58px !important;
    justify-content: center;
  }
  .whatsapp-float span {
    display: none;
  }
}