/* ============================
   Responsive Styles
============================= */

/* Tablets (≥ 600px) */
@media (min-width: 600px) {
  .container {
    padding: 2rem;
  }

  .nav-menu {
    width: 60%;
    max-width: 400px;
  }

  .hero-text {
    font-size: 1.5rem;
  }

  .grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Small laptops (≥ 768px) */
@media (min-width: 768px) {
  .menu-toggle {
    display: none !important;
  }

  .desktop-nav {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
  }

  .hero-section {
    flex-direction: row;
    align-items: center;
  }

  .hero-image {
    max-width: 50%;
  }
}

/* Large screens (≥ 1024px) */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
