/* Vintage Toy Photography Prints - Responsive Styles */

/* Mobile First Approach */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  #hero {
    min-height: 80vh;
    padding: 60px 0;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .about-feature,
  .service-card,
  .team-member,
  .review-card {
    margin-bottom: 20px;
  }
  
  .service-price {
    font-size: 1.5rem;
  }
  
  .price-card .price {
    font-size: 2rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Disable animations on mobile for performance */
  .about-feature:hover,
  .service-card:hover,
  .team-member:hover,
  .price-card:hover,
  .gallery-item:hover,
  .blog-card:hover {
    transform: none;
  }
  
  /* Footer adjustments */
  #footer {
    padding: 40px 0 20px;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-card,
  .team-member {
    margin-bottom: 25px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-decorative {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 5%;
  }
  
  .hero-decorative::before {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .container {
    max-width: 1200px;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  #hero {
    min-height: 100vh;
    padding: 40px 0;
  }
  
  .section-padding {
    padding: 60px 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .team-photo,
  .gallery-item img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print styles */
@media print {
  #header,
  #footer {
    display: none;
  }
  
  .section-padding {
    padding: 20px 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
}

/* Accessibility enhancements */
@media (prefers-reduced-motion: reduce) {
  .about-feature,
  .service-card,
  .team-member,
  .price-card,
  .gallery-item,
  .blog-card {
    transition: none;
  }
  
  .hero-decorative {
    display: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-cream: #ffffff;
    --primary-brown: #000000;
    --primary-red: #cc0000;
    --primary-green: #008800;
    --primary-blue: #0000cc;
    --light-cream: #ffffff;
    --dark-brown: #000000;
  }
  
  .service-card,
  .price-card,
  .team-member,
  .review-card,
  .faq-card,
  .contact-form {
    border-width: 3px;
  }
} 

body {
    overflow-x: hidden;
}