/* Responsive Styles for Express Watch Battery & Seal Bar */

/* Mobile First - Base styles already defined in main.css */

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

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
  
  .navbar-brand {
    font-size: 1.4rem !important;
  }
  
  section {
    padding: 6rem 0;
  }
  
  .feature-item {
    height: 100%;
  }
  
  .service-card {
    height: 100%;
  }
  
  .price-card {
    height: 100%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0 1rem;
  }
  
  .feature-item {
    padding: 3rem;
  }
  
  .service-card {
    padding: 3rem;
  }
  
  .contact-form {
    padding: 4rem;
  }
}

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

/* Mobile-specific styles */
@media (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
  
  .hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .price-card {
    padding: 2rem;
  }
  
  .price-value {
    font-size: 2.5rem;
  }
  
  /* Disable autoplay and effects on mobile for Swiper */
  .swiper-container {
    --swiper-navigation-size: 24px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
  }
}

/* Print styles */
@media print {
  .navbar,
  .btn,
  .swiper-navigation,
  .swiper-pagination {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    page-break-after: always;
  }
  
  section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }
  
  .service-card,
  .price-card,
  .feature-item {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000080;
    --secondary-color: #ff4500;
    --accent-color: #006666;
    --dark-color: #000000;
    --light-color: #ffffff;
  }
  
  .service-card,
  .price-card,
  .feature-item {
    border: 2px solid var(--dark-color);
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }
  
  .fade-in {
    transition: none;
  }
  
  .service-card:hover,
  .price-card:hover,
  .feature-item:hover {
    transform: none;
  }
  
  .swiper-container {
    --swiper-transition-duration: 0ms;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --white: #121212;
    --light-color: #1e1e1e;
    --dark-color: #ffffff;
  }
  
  body {
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--dark-color);
  }
  
  .service-card,
  .price-card,
  .feature-item,
  .contact-form {
    background-color: var(--light-color);
    color: var(--dark-color);
  }
  
  .form-control {
    background-color: var(--light-color);
    color: var(--dark-color);
    border-color: #444;
  }
} 