/* Responsive Styles for Quirky Holiday Planner */

/* Mobile First Approach */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.91rem;
  }
  
  .hero p {
    font-size: 1.03rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .service-card-body {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  /* Disable Swiper autoplay and effects on mobile */
  .swiper-container {
    pointer-events: auto;
  }
}

/* Tablet Styles */
@media (min-width: 577px) and (max-width: 768px) {
  .hero h1 {
    font-size: 2.08rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  /* Disable Swiper autoplay and effects on tablet */
  .swiper-container {
    pointer-events: auto;
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .hero h1 {
    font-size: 2.64rem;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    page-break-inside: avoid;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
} 