
/* Responsive Design */
@media (max-width: 768px) {
  /* .logo-subtitle {
    display: none;
  } */

  .logo-text {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid .footer-brand {
    grid-column: 1;
  }
  
  .footer-bottom-content {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  /* .logo-subtitle {
    display: none;
  } */

  .logo-title {
    font-size: 1.25rem;
  }

}

@media (min-width: 640px) {
  .logo-subtitle {
    display: block;
  }

  .logo-text {
    display: block;
  }

  .hero-cta {
    flex-direction: row;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-bottom-content {
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
    gap: 3rem;
  }
  
  .footer-grid .footer-brand {
    grid-column: 1;
  }
  
  .footer-bottom-content {
    justify-content: center;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
}

