/* ==========================================================================
   DEZKO - Responsive Breakpoints
   ========================================================================== */

/* ── Tablet (max-width: 900px) ── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Mobile (max-width: 768px) ── */
@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile) 0;
  }

  #impact {
    background-attachment: scroll;
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    background: var(--navy-900);
    transition: right 0.4s;
    justify-content: center;
    gap: 30px;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .burger {
    display: block;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

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