/* Pet Photography Template - Responsive CSS */

/* Tablet Styles */
@media (max-width: 992px) {
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .services-grid,
  .team-grid,
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  :root {
    --font-size-base: 15px;
    --h1-size: 1.5rem;
    --h2-size: 1.25rem;
    --h3-size: 1.1rem;
    --navbar-brand-size: 1.1rem;
  }
  
  body {
    font-size: var(--font-size-base);
  }
  
  .navbar-brand {
    font-size: var(--navbar-brand-size) !important;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 1.5rem 0;
    text-align: center;
  }
  
  .hero-shape {
    display: none;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .services-grid,
  .team-grid,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-card,
  .team-member,
  .custom-card {
    padding: 1.5rem;
  }
  
  .service-card img,
  .gallery-item img {
    height: 180px;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin-top: 1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
  font-size: 10px;
    margin: 0.25rem 0;
  }
  
  /* Disable autoplay and effects on mobile for Swiper */
  .swiper-container {
    --swiper-navigation-size: 20px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .testimonial-card {
    margin: 0.5rem;
    padding: 1.5rem;
  }
  
  .faq-question,
  .faq-answer {
    padding: 1rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  :root {
    --font-size-base: 14px;
    --h1-size: 1.25rem;
    --h2-size: 1.1rem;
    --h3-size: 1rem;
    --navbar-brand-size: 1rem;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 1rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .service-card,
  .team-member,
  .custom-card,
  .contact-form {
    padding: 1rem;
  }
  
  .service-card img,
  .gallery-item img {
    height: 150px;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  .icon-large {
    font-size: 2rem;
  }
  
  .footer {
    padding: 1.5rem 0 1rem;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-section::before {
    background-image: url('../images/hero-background@2x.webp');
  }
}

/* Landscape Phone Orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 50vh;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn-primary,
  .swiper-container {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }
} 