/* Responsive CSS for Veteran Benefits Concierge Service */

/* Extra large screens (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large screens (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  
  #hero-title-1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

/* Medium screens (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  
  #hero-title-1 {
    font-size: 2.5rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid,
  .priceplan-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-item {
    padding: 1.5rem;
  }
}

/* Small screens (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
  
  header .container {
    flex-direction: column;
    padding: 1rem 0;
  }
  
  #sitename {
    margin-bottom: 1rem;
  }
  
  .main-nav ul {
    justify-content: center;
  }
  
  .main-nav li {
    margin: 0 0.75rem;
  }
  
  .hero-section {
    height: auto;
    min-height: 80vh;
    padding: 4rem 0;
  }
  
  #hero-title-1 {
    font-size: 2.2rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .services-grid,
  .features-grid,
  .priceplan-grid,
  .team-grid,
  .coreinfo-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
}

/* Extra small screens (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  #sitename {
    font-size: 1.5rem;
  }
  
  header .container {
    padding: 0.75rem 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
    width: 100%;
    padding-top: 1rem;
  }
  
  .main-nav.active {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  .main-nav li {
    margin: 0.5rem 0;
  }
  
  .hero-section {
    height: auto;
    min-height: 80vh;
    padding: 3rem 0;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  #hero-title-1 {
    font-size: 2rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  #hero-desc-1 {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .about-features,
  .services-grid,
  .features-grid,
  .priceplan-grid,
  .team-grid,
  .coreinfo-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-feature,
  .service-card,
  .priceplan-card,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  /* Additional Page Styles */
  .page-header {
    height: 30vh;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .breadcrumb ul {
    flex-wrap: wrap;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .service-card:hover,
  .about-feature:hover,
  .priceplan-card:hover,
  .gallery-item:hover .gallery-img {
    transform: none;
  }
} 