/* ==========================================================================
   ANITS COLONY - RESPONSIVE CSS STYLESHEET
   Mobile, Tablet, and Desktop Breakpoints
   ========================================================================== */

/* Laptop / Small Desktop (max 1024px) */
@media (max-width: 1024px) {
  .quick-shortcuts-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .main-three-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-three-col-grid > .section-card:nth-child(3) {
    grid-column: span 2;
  }

  .members-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .social-widgets-grid {
    grid-template-columns: 1fr;
  }

  .values-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet View (max 768px) */
@media (max-width: 768px) {
  .top-header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .header-right-actions {
    justify-content: space-between;
  }

  .header-search-form {
    max-width: 100%;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-tabs {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }

  .nav-tabs.show {
    display: flex;
  }

  .nav-tab-item {
    width: 100%;
    border-radius: 4px;
    padding: 12px 16px;
  }

  .hero-section {
    height: 380px;
  }

  .hero-overlay {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-right-quote-card {
    display: none; /* Hide quote card on mobile to save vertical space */
  }

  .quick-shortcuts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .main-three-col-grid {
    grid-template-columns: 1fr;
  }

  .main-three-col-grid > .section-card:nth-child(3) {
    grid-column: span 1;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* Mobile View (max 480px) */
@media (max-width: 480px) {
  .hero-section {
    height: 320px;
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle-small {
    font-size: 18px;
  }

  .hero-bullets {
    font-size: 12px;
  }

  .quick-shortcuts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-cards-grid {
    grid-template-columns: 1fr;
  }

  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-banner {
    grid-template-columns: 1fr;
  }

  .brand-text-container h1 {
    font-size: 20px;
  }

  .tagline-links {
    display: none;
  }
}
