/* ===== RESPONSIVE STYLES FOR 3D PRINTING COSPLAY PROPS ===== */

/* Mobile First Approach */

/* Extra Large Devices */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* Large Devices */
@media (max-width: 1199px) {
  .section-padding {
    padding: 4rem 0;
  }
  
  .hero-decorative {
    width: 150px;
    height: 150px;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .hero-decorative {
    display: none;
  }
}

/* Small Devices (Phones) */
@media (max-width: 767px) {
  /* NO ANIMATIONS WHEN SCROLLING IN MOBILE RESOLUTION */
  .about-feature-card:hover,
  .service-card:hover,
  .feature-card:hover,
  .price-card:hover,
  .team-card:hover,
  .review-card:hover,
  .casestudy-card:hover,
  .process-step:hover,
  .timeline-item:hover,
  .career-card:hover,
  .coreinfo-card:hover,
  .blog-card:hover,
  .faq-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  /* Disable floating animations on mobile */
  .hero-blob-1,
  .hero-blob-2 {
    animation: none;
  }
  
  /* Typography adjustments */
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.375rem;
  }
  
  h4 {
    font-size: 1.125rem;
  }
  
  /* Navbar brand conservative size */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Spacing adjustments */
  .section-padding {
    padding: 2.5rem 0;
  }
  
  /* Card padding adjustments */
  .about-feature-card,
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .casestudy-card,
  .process-step,
  .timeline-item,
  .career-card,
  .coreinfo-card,
  .blog-card,
  .faq-card {
    padding: 1.5rem;
  }
  
  .price-card {
    padding: 2rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Team photos smaller on mobile */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Price value smaller on mobile */
  .price-value {
    font-size: 2rem;
  }
  
  /* Gallery items full width on mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Button adjustments */
  .btn-primary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Form adjustments */
  .form-control {
    padding: 0.6rem 0.8rem;
  }
  
  /* Step numbers smaller */
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  /* Hero section height adjustment */
  .hero-section {
    min-height: 80vh;
  }
  
  /* Footer spacing */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  /* Remove margins for better mobile spacing */
  .row [class*="col-"] {
    margin-bottom: 1rem;
  }
  
  .row [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

/* Extra Small Devices */
@media (max-width: 575px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  /* Even more conservative spacing */
  .about-feature-card,
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .casestudy-card,
  .process-step,
  .timeline-item,
  .career-card,
  .coreinfo-card,
  .blog-card,
  .faq-card {
    padding: 1.25rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
  
  .price-value {
    font-size: 1.75rem;
  }
  
  .hero-section {
    min-height: 70vh;
  }
}

/* Landscape phones */
@media (max-width: 767px) and (orientation: landscape) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-decorative {
    display: none;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .page-break {
    page-break-before: always;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
  .team-photo,
  .gallery-item img {
    image-rendering: crisp-edges;
  }
}

/* Dark mode preference */


body {
    overflow-x: hidden;
}