/* ==========================================================================
   responsive.css — breakpoint overrides for the BGS UI foundation classes
   (style.css / animation.css). Bootstrap 5's own grid breakpoints are left
   untouched; these rules only adjust the new component/utility classes.

   Breakpoints used:
     Large Desktop   : > 1400px
     Desktop         : 1200px – 1399px
     Laptop          : 992px – 1199px
     Tablet          : 768px – 991px
     Large Mobile    : 576px – 767px
     Small Mobile    : < 576px
   ========================================================================== */

/* --------------------------------------------------------------------------
   Large Desktop (> 1400px)
   -------------------------------------------------------------------------- */
@media (min-width: 1400px) {
  .container-xl {
    max-width: var(--container-xl-width);
  }

  .hero-title {
    font-size: 4rem;
  }
}

/* --------------------------------------------------------------------------
   Desktop (1200px – 1399px)
   -------------------------------------------------------------------------- */
@media (max-width: 1399px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

/* --------------------------------------------------------------------------
   Laptop (992px – 1199px)
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .section-padding {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .hero-title {
    font-size: 3rem;
  }

  .gallery-item {
    width: 50%;
  }
}

/* --------------------------------------------------------------------------
   Tablet (768px – 991px)
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .logo-img {
    height: 45px;
  }

  .navbar-toggler {
    border: none;
    color: var(--primary);
    padding: 5px;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .ticker-heading {
    padding: 0 10px;
    font-size: 11px;
  }

  .marquee-content a {
    font-size: 13px;
  }

  .nav-item.dropdown .dropdown-menu {
    border-left: 2px solid var(--primary);
    margin-left: 10px;
    background-color: var(--surface-alt);
  }

  .dropdown-item {
    padding: 12px 20px;
  }

  .page-title {
    font-size: 2.4rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-desc {
    font-size: 1.2rem;
  }

  .cards {
    padding: 30px 20px;
  }
}

/* --------------------------------------------------------------------------
   Large Mobile (576px – 767px)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .section-padding {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  .page-title {
    font-size: 2.2rem;
  }

  .lead-text,
  .section-subtitle {
    font-size: 1rem;
    padding: 0 15px;
  }

  .gallery-item {
    width: 50%;
    padding: 8px;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .go-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   Small Mobile (< 576px)
   -------------------------------------------------------------------------- */
@media (max-width: 575px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .page-header {
    padding: 60px 0 40px;
  }

  .btn-primary-modern,
  .btn-outline-modern,
  .buttons .btn-solid {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }

  .gallery-item {
    width: 100%;
  }

  .cards {
    padding: 25px 18px;
  }
}
