/* Responsive Styles for Luxury Watch Studio */

/* Mobile First Approach */

/* Extra Small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 150px;
    height: 150px;
  }
  
  /* Disable autoplay and effects on mobile for Swiper */
  .swiper {
    --swiper-navigation-size: 20px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .team-member img {
    width: 175px;
    height: 175px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .navbar-nav .nav-link {
  font-size: 12px !important;
    margin: 0 1rem;
  }
  
  /* Enable full Swiper functionality on tablets and above */
  .swiper-button-next,
  .swiper-button-prev {
    display: flex;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero {
    min-height: 100vh;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .service-card:hover {
    transform: translateY(-15px);
  }
  
  .team-member img {
    width: 200px;
    height: 200px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero p {
    font-size: 1.3rem;
  }
}

/* Ultra wide screens (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: 90vh;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero::before {
    background-image: url('../PRI_images/pss_hero-bg-2x.webp');
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --neutral-cream: #1a1a1a;
    --neutral-light-cream: #2c2c2c;
    --neutral-dark-cream: #404040;
    --secondary-charcoal: #f8f6f0;
    --secondary-light-charcoal: #e0e0e0;
  }
  
  body {
    background-color: var(--neutral-cream);
    color: var(--secondary-charcoal);
  }
  
  .service-card,
  .review-card,
  .contact-form,
  .faq-item {
    background: var(--neutral-light-cream);
    border-color: var(--neutral-dark-cream);
  }
}

/* Print styles */
@media print {
  .navbar,
  .hero,
  .footer {
    display: none;
  }
  
  section {
    padding: 1rem 0;
  }
  
  .service-card,
  .review-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
} 