/* ============================
   A&S HEALTH CLUB — RESPONSIVE
   Mobile-first breakpoints added
   without changing desktop design
   ============================ */

/* ============================
   HAMBURGER MENU (mobile nav)
   ============================ */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
    z-index: 1100;
    position: relative;
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 100px 40px 40px;
    border-left: 1px solid rgba(200, 16, 46, 0.3);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    margin-left: 0;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 20px;
    clip-path: none !important;
    padding: 12px 24px !important;
    text-align: center;
    display: block;
    width: 100%;
    font-size: 0.8rem !important;
  }
}

/* ============================
   HERO — TABLET (768–900px)
   ============================ */
@media (max-width: 900px) {
  #hero {
    padding: 130px 6% 80px;
    min-height: 100svh;
    align-items: flex-end;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-overlay-left {
    background: linear-gradient(
      to right,
      rgba(30, 34, 41, 0.97) 50%,
      rgba(30, 34, 41, 0.6) 100%
    );
  }
}

/* ============================
   HERO — MOBILE (< 600px)
   ============================ */
@media (max-width: 600px) {
  #hero {
    padding: 110px 5% 60px;
    align-items: flex-end;
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 0.95;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .hero-desc {
    font-size: 0.88rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-overlay-left {
    background: linear-gradient(
      to top,
      rgba(30, 34, 41, 0.98) 40%,
      rgba(30, 34, 41, 0.5) 100%
    );
  }
}

/* ============================
   SERVICES TICKER
   ============================ */
@media (max-width: 600px) {
  .ticker-item {
    font-size: 1rem;
    gap: 8px;
  }
  .ticker-inner {
    gap: 30px;
  }
}

/* ============================
   ABOUT SECTION
   ============================ */
@media (max-width: 900px) {
  #about {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 5%;
  }

  .about-visual {
    height: 380px;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 600px) {
  #about {
    gap: 36px;
    padding: 60px 5%;
  }

  .about-visual {
    height: 300px;
  }

  .about-badge {
    top: -12px;
    left: -8px;
    padding: 14px;
  }
  .about-badge .num {
    font-size: 1.8rem;
  }
  .about-badge .label {
    font-size: 0.55rem;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .about-feature {
    font-size: 0.8rem;
  }

  .about-content > div[style*="margin-top:36px"],
  .about-content > div[style*="margin-top: 36px"] {
    flex-direction: column;
    gap: 12px;
  }

  .about-content .btn {
    text-align: center;
    justify-content: center;
  }
}

/* ============================
   SERVICES GRID
   ============================ */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .services-grid .large {
    grid-column: span 2;
  }
  .service-card {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .services-grid .large {
    grid-column: span 1;
  }
  .service-card {
    height: 240px;
  }
  .service-card h3 {
    font-size: 1.5rem;
  }
}

/* ============================
   GALLERY GRID
   ============================ */
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item:nth-child(2) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item:nth-child(2) {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 10px;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }
  .gallery-item:nth-child(2) {
    grid-column: span 2;
  }
}

/* ============================
   TESTIMONIALS
   ============================ */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 28px 24px;
  }
  .testimonial-text {
    font-size: 0.85rem;
  }
}

/* ============================
   CTA BAND
   ============================ */
@media (max-width: 600px) {
  .cta-band {
    padding: 60px 6%;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}

/* ============================
   FOOTER
   ============================ */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 50px 5% 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-brand iframe {
    width: 100%;
    height: 160px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ============================
   SECTION PADDING — MOBILE
   ============================ */
@media (max-width: 900px) {
  section {
    padding: 70px 5%;
  }
  .section-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 600px) {
  section {
    padding: 55px 5%;
  }
  .section-header {
    margin-bottom: 36px;
  }
}

/* ============================
   NAVBAR HEIGHT ON MOBILE
   ============================ */
@media (max-width: 600px) {
  :root {
    --nav-h: 72px;
  }
  #navbar {
    padding: 0 5%;
  }
}


