/* Responsive Design for Typographic Poster Store */

/* Tablet Styles */
@media (max-width: 992px) {
  .hero-section {
  padding-top: 50px;
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 1.54rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    padding-left: 60px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  :root {
    --section-padding: 2rem 0;
  }
  
  .hero-section {
  padding-top: 50px;
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 1.31rem;
  }
  
  .hero-subtitle {
    font-size: 1.09rem;
  }
  
  .services-grid,
  .features-grid,
  .team-grid,
  .price-plans,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .navbar-brand {
    font-size: 1.09rem !important;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .casestudy-grid,
  .career-grid,
  .coreinfo-grid {
    grid-template-columns: 1fr;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-slide {
    opacity: 1 !important;
  }
  
  .swiper-wrapper {
    transform: none !important;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .service-card,
  .team-member,
  .price-plan {
    padding: 1rem;
  }
  
  .hero-title {
    font-size: 1.23rem;
  }
  
  h1 { font-size: 1.54rem; }
  h2 { font-size: 1.31rem; }
  h3 { font-size: 1.23rem; }
  
  .contact-form {
    padding: 1.5rem 1rem;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hero-section,
  .footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
    background: white;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
  }
  
  .service-card,
  .team-member,
  .price-plan {
    border: 1px solid #c5c5c5;
    margin-bottom: 1.11rem;
    break-inside: avoid;
  }
}
