 :root {
      --primary: darkgreen;
      --secondary: #000000;
      --light: #f8f9fa;
    }

     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
     body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--light);
      background: var(--secondary);
    }

    a { text-decoration: none; color: inherit; }

 
 header {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary);
  box-shadow: 
    0 2px 10px rgba(0,0,0,0.1), /* your original subtle shadow */
    0 4px 8px var(--primary),    /* soft inner glow layer */
    0 8px 16px var(--primary),   /* medium glow layer */
    0 12px 24px var(--primary);  /* outer diffused glow layer */
}

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.7rem 20px 0.7rem 0px;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      
    }

    .nav-links a {
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--primary); }

    .logo{
      padding-left: 150px;
    }

    .mobile-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--primary);
      border: 1px var(--primary) dashed;
      border-radius: 5px;
      padding: 0px 7px;
    }

  .hero {
  padding: 50px 20px;
  background-image: url('./hero2.jpeg'); /* your current image */
  background-repeat: no-repeat;
  background-position: center center; /* keeps it centered */
  background-size: contain;            /* Key change: full image visible, max size without crop */
  background-color: #000;              /* Add a black fallback so no empty space feels weird */
  color: white;
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin-top: 60px;                    /* Keeps it below the sticky header */
}

.hero h1{
  font-size: 2rem;
}

.hero p{
  font-size: 1.3rem;
}

    .hero-floating-call-btn{
        border-radius: 2px;
        color: var(--primary);
        background-color: white;
        padding: 15px;
        position: relative;
        top: 40px;
    }
    .hero-floating-call-btn:hover{
        color: white;
        background-color: var(--primary);
    }

    

    .container h2 {
      text-align: center;
      font-size: 2rem;
    }

/* Equipment Carousel */
.equipment-carousel-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 12px;
}

#equipment-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.equipment-card {
    min-width: 100%;
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
    text-align: center;
}

/* Carousel Buttons */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 15px;
}

.carousel-btn {
    pointer-events: all;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: 3px solid darkgreen;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: darkgreen;
    transform: scale(1.1);
}

/* Equipment Carousel */
.workouts-carousel-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 12px;
}

#workouts-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.workouts-card {
    min-width: 100%;
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

/* Pricing Carousel */
.pricing-carousel-container {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 12px;
}

#pricing-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.pricing-card {
    min-width: 100%;
    background: #222;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.container{
  background-color: var(--secondary);
}
#equipment,#workouts,#pricing{
  margin: 50px 10px;
  background-color: var(--secondary);
  border-top: 2px var(--primary) solid;
}

#workouts,#pricing{
  margin-top: 100px;
}


footer {
            padding: 80px 20px 40px;
            color: #333;
            font-family: 'Georgia', serif; /* Elegant, artistic font for watercolor feel */
            position: relative;
            height: 200px;  
            
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: var(--secondary);
            border-top: 2px var(--primary) solid;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .branch {
            text-align: center;
        }

        .branch h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary); /* Deep purple accent */
        }

        .branch p {
            margin: 8px 0;
            font-size: 1rem;
            line-height: 1.6;
        }

        .branch a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .branch a:hover {
            color: var(--primary);
        }

.social-icons {
    display: flex;
    gap: 30px;
    margin: 30px auto 40px;
    justify-content: center;
    width: 100%;
    border-bottom: 2px var(--primary) solid;
}

.social-icons a {
    color: var(--primary);
    z-index: 1;
    font-size: 1.8rem; /* Larger icons */
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.1);
    opacity: 0.8;
}



        .copyright {
            text-align: center;
            font-size: 0.9rem;
            color: #555;
            position: relative;
            z-index: 1;
        }

       .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;  /* Official WhatsApp green */
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128C7E;  /* Darker green on hover */
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

    @media (max-width: 789px) {
      .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px var(--primary);
        display: none;
      }

      .nav-links.active {
        display: flex;
      }

      .mobile-toggle {
        display: block;
      }

      .logo{
      padding-left: 0;
    }

    .hero{
      position: relative;
    top: -180px;
    }

    #equipment{
  margin: -180px 10px 0px 10px;
}



    }

 /* Desktop: Switch to 3-column grid */
@media (min-width: 790px) {
    .equipment-carousel-container {
        max-width: none;
        overflow: visible;
    }

    #equipment-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        transition: none;
    }

    .equipment-card {
        min-width: auto;
    }

    .equipment-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 100, 0, 0.3);
    }

    /* Hide buttons on desktop */
    .carousel-controls {
        display: none;
    }

    .workouts-carousel-container {
        max-width: none;
        overflow: visible;
    }

    #workouts-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        transition: none;
    }

    .workouts-card {
        min-width: auto;
    }

    .workouts-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 100, 0, 0.3);
    }


    .pricing-carousel-container {
        max-width: none;
        overflow: visible;
    }

    #pricing-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        transition: none;
    }

    .pricing-card {
        min-width: auto;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 100, 0, 0.3);
    }

    
}