/* Responsive CSS for Pet Portrait Studio */

/* Mobile First - Base styles are for mobile */

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

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .services-card {
    padding: 3rem;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .feature-icon {
    font-size: 3rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3.5rem;
  }
  
  .hero-section p {
    font-size: 1.2rem;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .contact-form {
    padding: 3rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 4rem;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Mobile specific styles */
@media (max-width: 767.98px) {
  /* Remove all scroll animations on mobile */
  .hero-section::before {
    display: none;
  }
  
  .services-card:hover,
  .price-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  /* Mobile navigation */
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Mobile hero adjustments */
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-section p {
    font-size: 1rem;
  }
  
  /* Mobile services grid */
  .services-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .services-price {
    font-size: 1.3rem;
  }
  
  /* Mobile team section */
  .team-member {
    margin-bottom: 2rem;
    padding: 1rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Mobile features */
  .feature-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
  
  /* Mobile price cards */
  .price-card {
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  /* Mobile reviews */
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Mobile FAQ */
  .faq-card {
    padding: 1rem;
  }
  
  /* Mobile contact form */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  /* Mobile gallery */
  .gallery-item img {
    height: 200px;
  }
  
  /* Mobile section spacing */
  section {
    padding: 3rem 0;
  }
  
  /* Mobile footer */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .services-card {
    margin-bottom: 2rem;
  }
  
  .team-member {
    margin-bottom: 2rem;
  }
  
  .feature-item {
    margin-bottom: 2rem;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
  
  .review-card {
    margin-bottom: 2rem;
  }
}

/* Print styles */
@media print {
  .hero-section::before,
  .navbar,
  .footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
    overflow-x: hidden;
}
  
  .services-card,
  .feature-item,
  .price-card,
  .review-card,
  .faq-card {
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .services-card,
  .feature-item,
  .price-card,
  .review-card,
  .faq-card,
  .contact-form {
    border: 2px solid #000;
  }
  
  .btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .services-card,
  .price-card,
  .gallery-item,
  .btn-primary {
    transition: none;
  }
  
  .hero-section::before {
    display: none;
  }
} 

.hero-content {
    padding-top: 275px;
}