/* Rural Outreach Vans - Responsive CSS */

/* Mobile First Approach */

/* Mobile Specific Styles (up to 767px) */
@media (max-width: 767px) {
  /* Navigation */
  .navbar-nav {
    text-align: center;
  }

  /* Hero Section */
  .hero-section {
    padding: 3rem 1rem;
    text-align: center;
  }

  /* Footer */
  .footer {
    text-align: center;
  }
}

/* Print Styles */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .navbar,
  .footer {
    display: none;
  }

  .hero-section,
  .section {
    padding: 1rem 0;
  }
} 