/* Responsive CSS for Art Walk Guides Template */

/* Extra Large devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-section {
    padding: 8rem 0;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
}

/* Large devices (1200px and up) */
@media (min-width: 1200px) {
  .service-card, .team-member, .blog-card {
    margin-bottom: 3rem;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
  .navbar-nav {
    margin-left: auto;
  }
  
  .hero-content {
    text-align: left;
  }
  
  .contact-form {
    margin-top: 0;
  }
}

/* Small devices (576px and up) */
@media (min-width: 576px) {
  .hero-section {
    text-align: left;
  }
  
  .service-card {
    height: auto;
  }
}

/* Extra small devices (less than 576px) */
@media (max-width: 575.98px) {
  :root {
    --h1-size: 1.75rem;
    --h2-size: 1.5rem;
    --h3-size: 1.25rem;
    --navbar-brand-size: 1.1rem;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 3rem 0;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: var(--h1-size);
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: var(--navbar-brand-size);
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card, .team-member, .blog-card, .price-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .blog-card img {
    height: 150px;
  }
  
  .faq-question, .faq-answer {
    padding: 1rem;
  }
  
  .process-step, .timeline-item, .career-card {
    padding: 1.5rem;
  }
  
  /* Mobile navigation */
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    text-align: center;
  }
}

/* Mobile landscape */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
}

/* Tablet portrait */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .team-photo {
    width: 130px;
    height: 130px;
  }
}

/* Desktop small */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-item img {
    height: 280px;
  }
  
  .service-card {
    padding: 2.5rem;
  }
}

/* Print styles */
@media print {
  .navbar, .footer, .btn, .swiper-pagination {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .service-card, .team-member, .blog-card, .price-card {
    border: 2px solid black;
  }
  
  .btn-primary {
    background: black !important;
    color: white !important;
  }
  
  .navbar {
    background: black !important;
  }
}

/* Dark mode preference (but not implementing dark styles as requested) */
@media (prefers-color-scheme: dark) {
  /* Keeping light theme as requested - no dark mode styles */
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .swiper-slide {
    transition: none !important;
  }
  
  .service-card, .team-member, .gallery-item, .blog-card {
    transition: none !important;
  }
  
  .btn-primary {
    transition: none !important;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
@media (any-hover: none) {
  .service-card:hover, .team-member:hover, .gallery-item:hover {
    transform: none;
  }
}

/* Touch device optimizations */
@media (pointer: coarse) {
  .btn, .nav-link, .faq-question {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-item {
    margin-bottom: 1rem;
  }
}

/* Very small screens (iPhone SE, etc.) */
@media (max-width: 374px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 1.5rem 1rem;
  }
  
  .service-card, .team-member {
    padding: 1.5rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
} 