/* Responsive Styles for Digital Art Print Shop */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    padding: 0 2rem;
  }
}

/* Large Devices (992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section {
    padding: 3rem 0;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* Medium Devices (768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
}

/* Small Devices (576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .service-card,
  .contact-form {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Extra Small Devices (less than 576px) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  .navbar-brand {
    font-size: 0.875rem;
  }
  
  h1 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
  
  h2 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
  
  h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    font-size: 0.875rem;
  }
  
  .section {
    padding: 1.5rem 0;
  }
  
  .section-description {
    margin-bottom: 2rem;
  }
  
  .hero-section {
    min-height: 60vh;
    text-align: center;
    padding: 1.5rem 0.75rem;
  }
  
  .hero-section::before {
    display: none;
  }
  
  .service-card,
  .contact-form,
  .review-card,
  .faq-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
    border-width: 2px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 1rem 0.5rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
    border-top: 1px solid var(--neutral-light);
    padding-top: 1rem;
  }
  
  .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
  
  .btn-primary {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 1.5rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .gallery-item {
    display: none !important;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .service-card,
  .contact-form,
  .review-card,
  .faq-card {
    border: 2px solid var(--neutral-dark);
  }
  
  .btn-primary {
    border: 2px solid var(--primary-dark);
  }
}

/* Landscape Orientation on Mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: 50vh;
    padding: 1rem 0.75rem;
  }
  
  .section {
    padding: 1rem 0;
  }
} 

.hero-section h1 {
    padding-top: 175px;
}