/* ==========================================================================
   PlaySprint - Responsive Layouts & Breakpoints
   ========================================================================== */

/* Laptop & Medium Screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet Screens (max-width: 768px) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 34px;
  }

  .section-title {
    font-size: 26px;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .section {
    padding: 3rem 0;
  }

  /* Navigation Collapse */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-secondary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-actions {
    flex-direction: column;
  }
  
  .filter-actions select {
    width: 100%;
  }
}

/* Mobile Screens (max-width: 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-section {
    padding: 3.5rem 0 3rem;
  }

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

  .hero-cta .btn {
    width: 100%;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .legal-content {
    padding: 1.5rem;
  }

  .contact-info-card, .contact-form-card {
    padding: 1.5rem;
  }

  .error-code {
    font-size: 5.5rem;
  }
}
