/* ========================================
   RESPONSIVE — URBAN CAT CAFÉ
   ======================================== */

/* --- Tablet (1024px and below) --- */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 80px;
    --container-padding: 24px;
  }

  .header-inner {
    height: 72px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-float-top,
  .hero-float-bottom {
    display: none;
  }

  .hero-image-wrapper img {
    height: 400px;
  }

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

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

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-image-secondary {
    right: 20px;
    bottom: -20px;
    width: 160px;
    height: 160px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .menu-items-list {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-inner {
    padding: 60px 40px;
  }

  .testimonial-card {
    min-width: 320px;
  }
}

/* --- Mobile (640px and below) --- */
@media (max-width: 640px) {
  :root {
    --section-spacing: 60px;
    --container-padding: 16px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-image-wrapper img {
    height: 300px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

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

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

  .about-image-main img {
    height: 320px;
  }

  .about-image-secondary {
    width: 120px;
    height: 120px;
    right: 12px;
    bottom: -12px;
  }

  .testimonial-card {
    min-width: 280px;
    max-width: 100%;
    padding: 24px;
  }

  .cta-inner {
    padding: 48px 24px;
  }

  .cta-inner h2 {
    font-size: 1.6rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

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

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

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .adoption-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .menu-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-item-image {
    width: 100%;
    height: 160px;
  }
}

/* --- Small Mobile (380px and below) --- */
@media (max-width: 380px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}