/* Mobile Pet Grooming Vans - Responsive Styles */

/* Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 2.5rem;
    padding-top: 250px;
}
  
  .service-card {
    margin-bottom: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 2.8rem;
    padding-top: 250px;
}
  
  .hero-decoration-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-decoration-2 {
    width: 180px;
    height: 180px;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 250px;
}
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .service-card {
    margin-bottom: 0;
  }
  
  .contact-form {
    padding: 3rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-decoration-1 {
    width: 300px;
    height: 300px;
  }
  
  .hero-decoration-2 {
    width: 220px;
    height: 220px;
  }
}

/* Mobile Specific Styles */
@media (max-width: 767.98px) {
  /* No scroll animations on mobile */
  .sal-animate {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  /* Conservative mobile typography */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.3rem; }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  /* Mobile hero adjustments */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decoration {
    display: none;
  }
  
  /* Mobile card spacing */
  .service-card,
  .team-card,
  .review-card,
  .faq-card {
    margin-bottom: 1rem;
  }
  
  /* Mobile form adjustments */
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  /* Mobile gallery */
  .gallery-item img {
    height: 200px;
  }
  
  /* Mobile footer */
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  /* Mobile process steps */
  .process-step {
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  /* Mobile timeline */
  .timeline-item {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .timeline-item::before {
    width: 10px;
    height: 10px;
    left: -6px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .service-card:hover {
    transform: none;
  }
  
  .blog-card:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .review-card,
  .faq-card {
    border: 2px solid var(--text-dark);
  }
  
  .btn-primary {
    border: 2px solid var(--text-dark);
  }
}

/* Print styles */
@media print {
  .hero-decoration,
  .navbar,
  .footer,
  .btn {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
} 