/* Small Town Spotlight Blog - Responsive CSS */

/* Large screens (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3.52rem;
  }
  
  .hero-subtitle {
    font-size: 1.54rem;
  }
  
  .section-title {
    font-size: 2.60rem;
  }
}

/* Medium screens (tablets, 768px and up) */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.31rem;
  }
  
  .hero-subtitle {
    font-size: 1.30rem;
  }
  
  .section-title {
    font-size: 1.95rem;
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* Small screens (phones, less than 768px) */
@media (max-width: 767.98px) {
  .hero-title {
    font-size: 1.95rem;
  }
  
  .hero-subtitle {
    font-size: 1.14rem;
  }
  
  .hero-desc {
    font-size: var(--font-size-base);
  }
  
  .section-title {
    font-size: 1.54rem;
  }
  
  .section-subtitle {
    font-size: 1.14rem;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .feature-card {
    padding: 25px 20px;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .navbar-brand {
    font-size: 1.13rem !important;
  }
  
  .navbar-nav .nav-link {
  font-size: 10px !important;
    margin: 0 5px;
  }
  
  .hero-shapes {
    display: none;
  }
  
  .team-card img {
    width: 120px;
    height: 120px;
  }
  
  .service-card img {
    width: 60px;
    height: 60px;
  }
  
  .blog-card-body {
  overflow-x: hidden;
    padding: 20px;
  }
  
  .footer {
    padding: 40px 0 20px;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Extra small screens (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.54rem;
  }
  
  .hero-subtitle {
    font-size: 0.97rem;
  }
  
  .section-title {
    font-size: 1.36rem;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 20px 0;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .contact-form {
    padding: 25px 15px;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  .feature-card {
    padding: 20px 15px;
  }
  
  .testimonial-card {
    padding: 20px 15px;
  }
  
  .service-price {
    font-size: 1.54rem;
  }
  
  .feature-card i {
    font-size: 2.60rem;
  }
  
  .team-card img {
    width: 100px;
    height: 100px;
  }
  
  .service-card img {
    width: 50px;
    height: 50px;
  }
  
  .navbar-brand {
    font-size: 1.14rem !important;
  }
  
  .blog-card img {
    height: 150px;
  }
  
  .blog-card-body {
  overflow-x: hidden;
    padding: 15px;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .faq-question {
    padding: 15px;
    font-size: 0.97rem;
  }
  
  .faq-answer {
    padding: 15px;
    font-size: 0.97rem;
  }
  
  .breadcrumb-img {
    width: 25px;
    height: 25px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero-shapes,
  .btn-submit {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 20px 0;
  }
  
  .section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
  
  body {
  overflow-x: hidden;
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section-title {
    font-size: 16pt;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-section::before {
    opacity: 0.1;
  }
  
  .service-card::before {
    display: none;
  }
  
  .testimonial-card {
    background: rgba(255,255,255,0.2);
  }
}

/* Dark mode preference (even though we don't implement dark mode, respect the preference for reduced backgrounds) */
@media (prefers-color-scheme: dark) {
  .hero-section::before {
    opacity: 0.2;
  }
} 