/* Mobile Device Screen Repair Kiosk Template - Responsive Styles */

/* Mobile First - Base Mobile Styles */
@media (max-width: 575.98px) {
  /* Typography Adjustments */
  h1 {
    font-size: 1.375rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 80vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  /* No animations on mobile as specified */
  .hero-section::before {
    animation: none;
  }
  
  /* Section Spacing */
  .section {
    padding: 40px 0;
  }
  
  /* Cards Mobile */
  .service-card,
  .contact-form {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
  
  /* Gallery Mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Blog Cards Mobile */
  .blog-card img {
    height: 180px;
  }
  
  /* Remove hover effects on mobile */
  .service-card:hover,
  .gallery-item:hover img {
    transform: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .team-photo {
    width: 110px;
    height: 110px;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .contact-form {
    padding: 3rem;
  }
  
  /* Enable hover effects on larger screens */
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 100px 0;
  }
}

/* Ultra wide screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .btn {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: none;
  }
  
  .section {
    padding: 20px 0;
  }
  
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #184f79;
    --primary-green: #35842d;
    --primary-orange: #dd9c10;
    --primary-purple: #7f4cc7;
    --primary-coral: #c8121d;
  }
  
  .service-card,
  .feature-card,
  .team-card,
  .review-card,
  .faq-card,
  .blog-card,
  .career-card {
    border-width: 2px;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .navbar {
    padding: 0.25rem 1rem;
  }
} 