/* Mobile First Responsive Design */

/* Large screens and up */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
}

/* Medium screens */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    width: 120px;
    height: 120px;
  }
}

/* Small screens and mobile */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-wrapper {
    transform: none !important;
  }
  
  .swiper-slide {
    transition: none !important;
  }
  
  /* Reduce padding on mobile */
  #about, #services, #features, #priceplan, #team, #reviews, #faq, #gallery, #contacts {
    padding: 3rem 0;
  }
  
  .feature-card, .service-card, .price-card {
    margin-bottom: 1.5rem;
  }
  
  .service-content {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .team-img {
    width: 100px;
    height: 100px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Mobile navigation */
  .navbar-toggler {
    border-color: var(--primary-terracotta);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23cd5c5c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.35rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  .service-name {
    font-size: 1.1rem;
  }
  
  .service-price {
    font-size: 1.25rem;
  }
  
  .feature-card, .service-card, .price-card, .contact-form {
    padding: 1rem;
  }
  
  .team-img {
    width: 80px;
    height: 80px;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  /* Footer adjustments */
  footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
  }
}

/* Print styles */
@media print {
  .navbar, .breadcrumb-section, footer {
    display: none !important;
  }
  
  body {
  overflow-x: hidden;
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: avoid;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary-terracotta: #b71c1c;
    --primary-charcoal: #000000;
    --cream-light: #ffffff;
  }
  
  .hero-section::before {
    opacity: 0.2;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .swiper-slide {
    transition: none !important;
  }
  
  .service-card:hover,
  .price-card:hover,
  .gallery-item:hover img {
    transform: none !important;
  }
  
  .swiper {
    --swiper-navigation-size: 0px;
  }
} 