/* Responsive CSS for GPU Rendering Farm Template */

/* Tablet Styles */
@media (max-width: 992px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Section spacing */
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  /* Hero section */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-shape {
    display: none;
  }
  
  /* Cards and components */
  .service-card,
  .price-card,
  .team-card,
  .review-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  /* Icons */
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Price values */
  .price-value {
    font-size: 2.5rem;
  }
  
  /* Team photos */
  .team-photo {
    height: 200px;
  }
  
  /* Process numbers */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Timeline adjustments */
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
  /* Button adjustments */
  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  /* Form adjustments */
  .form-control {
    margin-bottom: 1rem;
  }
  
  /* Gallery adjustments */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 150px;
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  /* Even smaller typography */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  /* Reduced spacing */
  section {
    padding: 2rem 0;
  }
  
  .hero-section {
    min-height: 60vh;
  }
  
  /* Cards */
  .service-card,
  .price-card,
  .contact-form {
    padding: 1rem;
  }
  
  .team-info {
    padding: 1rem;
  }
  
  /* Icons */
  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  /* Price */
  .price-value {
    font-size: 2rem;
  }
  
  /* Photos */
  .team-photo {
    height: 180px;
  }
  
  .gallery-item img {
    height: 120px;
  }
  
  /* Process and timeline */
  .process-step {
    padding: 1rem 0.5rem;
  }
  
  .timeline-item {
    padding-left: 1rem;
  }
}

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

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-icon,
  .feature-icon,
  .process-number {
    transform: scale(0.9);
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-shape {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1 {
    font-size: 18pt;
  }
  
  h2 {
    font-size: 16pt;
  }
  
  h3 {
    font-size: 14pt;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
} 

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