/* ================================
   Responsive Fixes for Mobile
   ================================ */

/* General Mobile Scaling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden; /* no horizontal scroll */
}

/* Tablet Screens */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  nav ul {
    flex-direction: column;
    text-align: center;
  }
  nav ul li {
    margin: 10px 0;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  p {
    font-size: 1rem;
  }
  .btn, button {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}
