/* FAMILY EVENT SIGNING CARAVANS - RESPONSIVE STYLES */

/* Large Devices (Desktops) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .about-feature, .service-card, .price-card {
    padding: 25px 15px;
  }
  
  .team-member img {
    width: 180px;
    height: 180px;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .service-card, .price-card {
    margin-bottom: 30px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Small Devices (Landscape Phones) */
@media (max-width: 767.98px) {
  .hero {
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .about-feature, .feature-item, .coreinfo-item {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 40px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  footer {
    text-align: center;
  }
  
  .footer-links {
    margin-bottom: 30px;
  }
  
  .price-card, .blog-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-name, .price-name, .team-name, .blog-title {
    font-size: 1.2rem;
  }
  
  .service-price, .price-value {
    font-size: 1.6rem;
  }
  
  .review-card {
    padding: 20px 15px;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .accordion-button {
    padding: 15px;
    font-size: 0.95rem;
  }
  
  .accordion-body {
overflow-x: hidden;
    padding: 15px;
    font-size: 0.9rem;
  }
}

/* Landscape orientation on small devices */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
}

/* Print styles */
@media print {
  header, footer, .contact-form, #site_submit_btn {
    display: none;
  }
  
  body {
overflow-x: hidden;
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
  
  a {
    text-decoration: none;
    color: #000;
  }
  
  .hero, section {
    margin: 0;
    padding: 20px 0;
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  p, li {
    page-break-inside: avoid;
  }
  
  img {
    max-width: 100% !important;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .hero-background, .swiper-container {
    animation: none !important;
  }
  
  .service-card:hover, 
  .price-card:hover, 
  .about-feature:hover, 
  .team-member:hover img, 
  .blog-card:hover, 
  .review-card:hover, 
  .gallery-item:hover img {
    transform: none !important;
  }
} 