/* ==========================================================================
   BRS Bandham (brsbandham.com) - Responsive Styles
   ========================================================================== */

/* Mobile First Adjustments */
@media (max-width: 767.98px) {
  .site-header {
    padding: 0;
  }

  .site-header.scrolled {
    padding: 0;
  }

  .nav-menu-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu-mobile.active {
    transform: translateX(0);
  }

  .nav-menu-mobile .nav-link {
    font-size: 1.2rem;
    color: var(--white) !important;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-wrapper {
    min-height: 85vh;
    padding-top: 7rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .timeline-item {
    padding-left: 1.75rem;
  }
}

/* Tablet Breakpoint */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .site-header .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }

  .hero-wrapper {
    min-height: 90vh;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .scroll-to-top,
  .footer-cta,
  footer {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }
}
