/* =============================
   HERO SECTION
   ============================= */
   .hero-section {
    background-image: url("/static/project/frontend/img/hero-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    padding: 4rem 0;
  }
  
  .hero-overlay {
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
  }
  
  .hero-container {
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
    max-width: 800px;
  }
  
  .hero-section h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .hero-section p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #f8f9fa;
  }
  
  /* ---------- ABOUT ---------- */
  #about h2 {
    font-size: 1.9rem;
    color: var(--fitness-black, #222);
  }
  #about p {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .about-img-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .about-image {
    width: 100%;
    max-width: 70%;
    transition: transform 0.3s ease;
  }
  .about-image:hover {
    transform: scale(1.02);
  }
  
  /* ---------- SERVICES ---------- */
  #services h2 {
    font-size: 1.9rem;
    color: var(--fitness-black, #222);
  }
  #services p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  .hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(255, 216, 77, 0.25);
  }
  
  /* ---------- CONTACT ---------- */
  #contact h2 {
    font-size: 1.8rem;
  }
  #contact p {
    font-size: 1.05rem;
    line-height: 1.6;
  }
  .hover-scale {
    transition: transform 0.3s ease;
  }
  .hover-scale:hover {
    transform: scale(1.05);
  }
  
  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 992px) {
    .hero-section {
      min-height: 40vh;
      padding: 3rem 0;
    }
    .hero-section h1 {
      font-size: 2rem;
    }
    .hero-section p {
      font-size: 1rem;
    }
    #about h2,
    #services h2,
    #contact h2 {
      font-size: 1.6rem;
    }
    #about p,
    #services p,
    #contact p {
      font-size: 0.95rem;
    }
    .about-image {
      max-width: 85%;
    }
  }
  