/* Breakpoints based on standard Tailwind values */

/* Extra Small (xs: < 640px) */
@media (max-width: 639px) {
  .hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  .partnership-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

/* Small Screens (sm: 640px and up) */
@media (min-width: 640px) {
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .logo-img {
    height: 44px;
    width: 44px;
  }

  .logo-text {
    font-size: 9px;
  }

  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

/* Medium Screens / Tablets (md: 768px and up) */
@media (min-width: 768px) {
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-desktop {
    display: flex;
  }

  .hamburger-container {
    display: none;
  }

  .mobile-menu-drawer {
    display: none !important;
  }

  .hero-buttons, .cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }

  .hero-buttons .btn-primary, .hero-buttons .btn-secondary,
  .cta-buttons .btn-primary, .cta-buttons .btn-secondary {
    width: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Large Screens / Desktops (lg: 1024px and up) */
@media (min-width: 1024px) {
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-cols-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg-col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg-col-span-7 {
    grid-column: span 7 / span 7;
  }

  .items-center-lg {
    align-items: center;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .footer-col-2 {
    padding-left: 2rem;
  }

  .footer-col-3 {
    padding-left: 4rem;
  }
}
