/* ===== RESPONSIVE STYLES FOR SPICE LAB TEMPLATE ===== */
/* Mobile-first responsive design */

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

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 3.2rem;
  }
  
  .hero-section {
    padding: 2rem 0;
  }
  
  .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;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1.5rem;
  }
  
  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section::before {
    width: 35%;
  }
}

/* Mobile-specific overrides (no animations on mobile as per requirements) */
@media (max-width: 767.98px) {
  /* Disable animations on mobile */
  .service-card,
  .gallery-item img,
  .blog-post,
  .price-card {
    transition: none !important;
    transform: none !important;
  }
  
  .service-card:hover,
  .gallery-item:hover img,
  .blog-post:hover,
  .price-card:hover {
    transform: none !important;
  }
  
  /* Mobile typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  /* Mobile spacing */
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-section::before {
    display: none; /* Remove decorative elements on mobile */
  }
  
  /* Mobile navigation */
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Mobile forms */
  .contact-form {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  /* Mobile cards */
  .service-card,
  .feature-item,
  .team-member,
  .review-card,
  .faq-card,
  .process-step,
  .price-card,
  .career-position,
  .core-info-item,
  .case-study-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* Mobile team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Mobile gallery */
  .gallery-item img {
    height: 200px;
  }
  
  /* Mobile step numbers */
  .step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
  }
  
  /* Mobile pricing */
  .price-amount {
    font-size: 2.5rem;
  }
}

/* Tablet portrait adjustments */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 160px;
    height: 160px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .hero-section::before {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .service-card,
  .feature-item,
  .team-member,
  .review-card,
  .faq-card,
  .process-step,
  .price-card {
    box-shadow: none !important;
    border: 1px solid #dadada !important;
    break-inside: avoid;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .feature-item,
  .team-member,
  .review-card,
  .faq-card,
  .process-step,
  .price-card {
    border: 2px solid currentColor;
  }
  
  .btn-primary {
    border: 2px solid currentColor;
  }
}

/* Dark mode support (respects user preference) */

.hero-content {
    padding-top: 275px;
}