/* Responsive CSS for Generative Digital-Art Print Shop */

/* Tablet and below */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .hero-section::before {
    display: none;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .case-card,
  .price-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  .hero-section {
    min-height: 60vh;
    padding: 2rem 0;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .case-card,
  .price-card {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .team-card img {
    width: 80px;
    height: 80px;
  }
  
  .process-step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
  
  .blog-card img {
    height: 150px;
  }
  
  /* No animations on mobile - override hover effects */
  .service-card:hover,
  .feature-card:hover,
  .team-card:hover,
  .review-card:hover,
  .case-card:hover,
  .price-card:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .container-xl {
    max-width: var(--content-max-width);
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
} 

.hero-content {
    padding-top: 150px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
