/* Responsive Styles for Quirky Holiday Planner */

/* Mobile First Approach */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.90rem;
  }
  
  .hero p {
    font-size: 1.04rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .service-card-body {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  /* FAQ Mobile Styles */
  .faq-question {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Breadcrumb Mobile Styles */
  .breadcrumb-section {
    min-height: 150px;
    padding: 1rem 0;
  }
  
  .breadcrumb-section img {
    max-height: 200px;
  }
  
  /* 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.04rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  /* FAQ Tablet Styles */
  .faq-question {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Breadcrumb Tablet Styles */
  .breadcrumb-section {
    min-height: 180px;
  }
  
  .breadcrumb-section img {
    max-height: 250px;
  }
  
  /* Disable Swiper autoplay and effects on tablet */
  .swiper-container {
    pointer-events: auto;
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .hero h1 {
    font-size: 2.54rem;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
  }
  
  /* FAQ Desktop Styles */
  .faq-item:hover {
    transform: translateY(-2px);
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  /* FAQ Large Desktop */
  .faq-question {
    padding: 1.8rem 2rem;
    font-size: 1.15rem;
  }
  
  .faq-answer {
    padding: 0 2rem 1.8rem 2rem;
    font-size: 1.05rem;
  }
}

/* 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;
  }
  
  /* FAQ Print Styles */
  .faq-question {
    background: transparent !important;
    color: black !important;
    page-break-inside: avoid;
  }
  
  .faq-answer {
    display: block !important;
    background: transparent !important;
    color: black !important;
    border-top: 1px solid #ccc;
    margin-bottom: 1rem;
  }
} 