/* =========================================
   Responsive Breakpoints
   ========================================= */

/* Desktop (>= 1400px) */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 6rem;
  }
}

/* Laptop (>= 1200px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-title {
    font-size: 5rem;
  }
}

/* Tablet / Small Laptop (>= 992px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 4rem;
  }
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* Mobile (>= 768px and < 992px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile (< 768px) */
@media (max-width: 767px) {
  .hero-title {
    font-size: 3rem;
  }
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .bento-card {
    padding: 2rem !important;
  }
  .btn-lg {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    height: 3.5rem !important;
    font-size: 1rem !important;
  }
}
