/* Responsive CSS File for Pension Appeals Roadshow Template */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Typography Adjustments */
  #hero-title-1 {
    font-size: 2rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Section Padding */
  section {
    padding: 50px 0;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding: 100px 0;
  }
  
  /* Services */
  .service-card {
    margin-bottom: 20px;
  }
  
  /* Team */
  .team-img-wrapper {
    height: 200px;
  }
  
  /* Footer */
  footer {
    padding: 40px 0 20px;
    text-align: center;
  }
  
  footer .col-md-4:not(:last-child) {
    margin-bottom: 30px;
  }
  
  /* Disable certain animations */
  .animate-up:hover {
    transform: none;
  }
  
  .team-card:hover,
  .blog-card:hover,
  .price-card:hover,
  .about-feature-box:hover,
  .info-box:hover {
    transform: none;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Typography Adjustments */
  #hero-title-1 {
    font-size: 2.5rem;
  }
  
  /* Section Padding */
  section {
    padding: 60px 0;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding: 120px 0;
  }
  
  /* Footer */
  footer {
    padding: 50px 0 20px;
  }
  
  footer .col-md-4:not(:last-child) {
    margin-bottom: 30px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Typography Adjustments */
  #hero-title-1 {
    font-size: 3rem;
  }
  
  /* Section Padding */
  section {
    padding: 70px 0;
  }
  
  /* Services */
  .service-card {
    margin-bottom: 25px;
  }
  
  /* Team */
  .team-img-wrapper {
    height: 220px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Team */
  .team-img-wrapper {
    height: 230px;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .animate-up:hover,
  .team-card:hover,
  .blog-card:hover,
  .price-card:hover,
  .about-feature-box:hover,
  .service-card:hover,
  .info-box:hover {
    transform: none !important;
  }
  
  .team-card:hover .team-img-wrapper img,
  .blog-card:hover .blog-img-wrapper img,
  .gallery-item:hover img {
    transform: none !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0; /* Disable autoplay */
  }
}

/* Print Styles */
@media print {
  header, footer, .hero-section, .contact-section {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000 !important;
    background: #fff !important;
  }
  
  a {
    color: #000 !important;
    text-decoration: underline;
  }
  
  section {
    padding: 20px 0 !important;
    page-break-inside: avoid;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
} 