/* ==========================================================================
   RESPONSIVE.CSS - Media queries
   Sprint 2: breakpoints desktop / tablet / mobile
   ========================================================================== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero-text {
    padding: 48px 32px;
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {

  .nav-links,
  .btn-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: relative;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background-color: #fbfbfd;
    padding: 8px 24px 16px;
    gap: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  }

  .nav-links.is-open li {
    width: 100%;
  }

  .nav-links.is-open a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-links.is-open li:last-child a {
    border-bottom: none;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-text {
    padding: 32px 24px 40px;
    text-align: center;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-image {
    min-height: 320px;
  }

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

  .services-grid,
  .testimonials-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .playlist-embed {
    aspect-ratio: 16 / 12;
  }

  .clients-track {
    gap: 32px;
    animation-duration: 28s;
  }

  .client-logo {
    width: 100px;
    height: 56px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  h2,
  .press-subsection-title {
    font-size: 1.6rem;
  }

  .press-subsection + .press-subsection {
    margin-top: 48px;
    padding-top: 40px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
