/* responsive.css */
/* Mobile/Small Screen Responsiveness */
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #111;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    display: none;
    z-index: 999;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  .brand {
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  }

  .section {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    padding: 2rem 0.8rem;
  }

  .onepage-pagination {
    display: none;
  }
} 

@media screen and (max-width: 576px) {
  .navbar {
    padding: 0.6rem 0.5rem;
  }

  .logo {
    height: 40px;
  }

  .brand {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
  }
}