/* Responsive Design - Mobile First */

/* Mobile (default - up to 767px) */
nav ul {
  font-size: 0.9rem;
}

h1 {
  font-size: 1.75rem;
}

h2 {
  font-size: 1.5rem;
}

.container {
  padding: 1rem;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
  nav ul {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    padding: 2rem 1.5rem;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  nav ul {
    gap: 2rem;
  }

  h1 {
    font-size: 3rem;
  }

  .container {
    padding: 2rem;
  }
}
