/* 
===================
RETIREE WORKSHOP HUB - RESPONSIVE STYLES
===================
*/

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  .hero {
    padding: var(--spacing-md) 0;
    text-align: center;
  }
  
  .hero img {
    margin-top: var(--spacing-md);
  }
  
  .section-padding {
    padding: var(--spacing-md) 0;
  }
  
  .team-member,
  .service-item,
  .price-plan {
    margin-bottom: var(--spacing-md);
  }
  
  .contact-form {
    padding: var(--spacing-sm);
  }
  
  /* Decrease vertical spacing */
  .py-lg {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
  }
  
  .my-lg {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  /* Adjust slider for mobile */
  .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 {
    padding: var(--spacing-lg) 0;
    text-align: center;
  }
  
  .hero img {
    margin-top: var(--spacing-md);
  }
  
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: var(--spacing-lg) 0;
  }
  
  .team-member img {
    height: 250px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-padding {
    padding: var(--spacing-xl) 0;
  }
  
  .team-member img {
    height: 300px;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .section-padding {
    padding: var(--spacing-xl) 0;
  }
  
  .team-member img {
    height: 350px;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 999999s;
  }
}

/* Print styles */
@media print {
  header, footer, .hero-buttons, #site_submit_btn {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
} 