/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .container {
    max-width: 960px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .container {
    max-width: 720px;
  }
  
  .nav-item {
    margin-left: 1rem;
  }
  
  .hero {
    min-height: 500px;
  }
  
  .services-item, .priceplan-item, .team-member, .blog-item {
    margin-bottom: 1.5rem;
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .gallery-item {
    height: 200px;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .container {
    max-width: 540px;
  }
  
  .navbar {
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .navbar-brand {
    margin-bottom: 1rem;
  }
  
  .nav-item {
    margin-left: 0.75rem;
  }
  
  .hero {
    min-height: 450px;
    text-align: center;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item {
    height: 180px;
  }
  
  .footer [class*="col-"] {
    margin-bottom: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  html {
    font-size: 13px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar {
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .navbar-brand {
    margin-bottom: 1rem;
  }
  
  .navbar-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-item {
    margin: 0 0.5rem 0.5rem;
  }
  
  .hero {
    min-height: 400px;
    text-align: center;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-title {
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    margin-bottom: 1.5rem;
  }
  
  .section-description {
    margin-bottom: 1.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 250px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer [class*="col-"] {
    margin-bottom: 1.5rem;
  }
}

/* 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: 999999999s;
  }
} 