/* Senior Home Document Service - Responsive CSS */

/* Tablets and below */
@media (max-width: 991px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  h4 { font-size: 1.15rem; }
  
  #hero h1 {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 3rem;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  /* Typography */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.15rem; }
  h4 { font-size: 1.1rem; }
  p { font-size: 0.9rem; }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  /* Hero Section */
  #hero {
    min-height: 80vh;
  }
  
  #hero h1 {
    font-size: 1.5rem;
  }
  
  #hero p {
    font-size: 1rem;
  }
  
  /* Sections */
  section {
    padding: 3rem 0;
  }
  
  /* About */
  .feature-box {
    margin-bottom: 2rem;
  }
  
  /* Services */
  .service-price {
    font-size: 1.5rem;
  }
  
  /* Team */
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 2rem;
  }
  
  /* Gallery */
  .gallery-item {
    height: 200px;
  }
  
  /* Swiper - Disable autoplay and effects on mobile */
  .swiper-container {
    --swiper-navigation-size: 30px;
  }
  
  /* Shape blobs */
  .shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
  }
  
  .shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    right: -75px;
  }
  
  /* Footer */
  footer {
    text-align: center;
  }
  
  footer .row > div {
    margin-bottom: 2rem;
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
  
  #hero h1 {
    font-size: 1.3rem;
  }
  
  #hero p {
    font-size: 0.9rem;
  }
  
  .btn-submit {
    width: 100%;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .blog-card {
    margin-bottom: 1.5rem;
  }
}

/* Landscape mobile */
@media (max-width: 767px) and (orientation: landscape) {
  #hero {
    min-height: 100vh;
  }
}

/* High resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Optimize for retina displays */
}

/* Print styles */
@media print {
  header, footer, .no-print {
    display: none !important;
  }
  
  body {
    overflow-x: hidden;
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
} 