/* GPU Rendering Farm - Responsive Styles */

/* Mobile First Approach */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 2.5rem;
    padding-top: 150px;
}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 150px;
}
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3.5rem;
    padding-top: 150px;
}
  
  .section-padding {
    padding: 6rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 4rem;
    padding-top: 150px;
}
}

/* Mobile-specific styles */
@media (max-width: 767.98px) {
  /* No animations on mobile as per requirements */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Mobile hero adjustments */
  .hero-section {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  /* Mobile card spacing */
  .custom-card {
    margin-bottom: 1rem;
  }
  
  /* Mobile gallery */
  .gallery-image {
    height: 150px;
    margin-bottom: 1rem;
  }
  
  /* Mobile team photos */
  .team-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }
  
  /* Mobile contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Mobile typography */
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  /* Mobile navigation */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Mobile button spacing */
  .btn {
    margin-bottom: 0.5rem;
  }
  
  /* Mobile pricing */
  .price-text {
    font-size: 1.5rem;
  }
  
  /* Mobile timeline */
  .timeline-item {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    padding: 3rem 0;
  }
  
  .gallery-image {
    height: 180px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer-section,
  .btn {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .custom-card {
    border: 2px solid var(--text-dark);
  }
  
  .btn-primary-custom {
    border: 2px solid var(--text-dark);
  }
}

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

/* Extra small device fine-tuning */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    padding-top: 150px;
}
  
  .hero-section p {
    font-size: 0.9rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .process-step {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }
}