/**
 * Gym Website Responsive Styling
 */

/* Desktop / Large Screens (>= 1200px) */
@media (min-width: 1200px) {
}

/* Notebooks / Medium Screens (992px to 1199px) */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 4.2rem;
  }
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .gym-nav .nav-links {
    gap: 16px;
  }
  .gym-nav .nav-links li a {
    font-size: 1.15rem;
  }
}

/* Tablets / Portrait Screens (768px to 991px) */
@media (max-width: 991px) {
  :root {
    --header-height: 80px;
  }

  body {
    padding-top: var(--header-height);
  }

  .gym-header,
  .gym-header.is-scrolled {
    height: var(--header-height) !important;
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .hero-section {
    padding: 40px 0 40px;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
  }

  .hero-section .container {
    width: 100%;
    position: relative;
    z-index: 3;
  }

  .hero-title {
    font-size: 2.6rem;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 auto 1.75rem;
    max-width: 480px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .about-preview-img {
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-experience-badge {
    right: 10px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-control-prev { left: -10px; }
  .carousel-control-next { right: -10px; }

  .process-step-arrow {
    display: none;
  }
}

/* Mobile Screens (576px to 767px) */
@media (max-width: 767px) {
  .section-title {
    font-size: 2.2rem;
  }

  .breadcrumb-title {
    font-size: 3rem;
  }

  .about-experience-badge {
    padding: 10px 20px;
  }

  .about-experience-badge h3 {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 35px 20px;
  }

  .pricing-price {
    font-size: 3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gym-lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
  }

  .gym-cta-banner .cta-title {
    font-size: 2.5rem;
  }

  .gym-timeline::before {
    left: 20px;
  }

  .gym-timeline-item {
    padding-left: 60px;
  }

  .gym-timeline-icon {
    left: 0;
    width: 38px;
    height: 38px;
  }

  .contact-wrapper {
    padding: 20px;
  }

  .map-container {
    min-height: 280px;
  }

  .social-strip-btn {
    padding: 12px 15px;
    font-size: 1.1rem;
  }
}

/* Small Mobile Screens (< 576px) */
@media (max-width: 575px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn-gym {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .breadcrumb-title {
    font-size: 2.5rem;
  }

  .stat-box h3 {
    font-size: 3rem;
  }

  .stat-box p {
    font-size: 1rem;
  }
  
  .process-strip-container {
    padding: 30px 10px;
  }
}
