/* Bioethics Consultation Office - Responsive Stylesheet */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-img {
    margin-bottom: 30px;
  }
  
  .services-item,
  .features-item,
  .priceplan-item,
  .team-item,
  .blog-item {
    margin-bottom: 40px;
  }
  
  .contact-info {
    margin-top: 40px;
  }
}

/* Small Devices (Landscape Phones, less than 768px) */
@media (max-width: 767.98px) {
  html, body {
    font-size: 15px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .header .navbar-collapse {
    background: var(--white);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .header .nav-link:after {
    left: 0;
  }
  
  .header .nav-link:hover:after,
  .header .nav-link.active:after {
    width: 100%;
  }
  
  /* Disable animations on mobile for performance */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer [class^="col-"] {
    margin-bottom: 30px;
  }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .page-header {
    padding: 100px 0 60px;
  }
  
  .page-title {
    font-size: 2rem;
  }
} 