/* Remote Peer-Coaching Platform - Responsive Styles */
/* Production-ready responsive design with Bootstrap 5 breakpoints */
/* Version: 1.0.0 */

/* Mobile First Approach - Following Bootstrap 5 Breakpoints */
/* xs: <576px, sm: ≥576px, md: ≥768px, lg: ≥992px, xl: ≥1200px, xxl: ≥1400px */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  h1 {
    font-size: 1.64rem;
  }
  
  h2 {
    font-size: 1.47rem;
  }
  
  h3 {
    font-size: 1.37rem;
  }
  
  .price-card.featured {
    margin-top: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .process-step {
    width: 50px;
    height: 50px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  

}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section::before {
    width: 200px;
    height: 200px;
  }
  
  .hero-section::after {
    width: 150px;
    height: 150px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .timeline-item {
    padding-left: 3rem;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section::before {
    width: 350px;
    height: 350px;
  }
  
  .hero-section::after {
    width: 250px;
    height: 250px;
  }
}

/* XXL Devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .section-padding {
    padding: 7rem 0;
  }
}

/* Portrait Orientation Adjustments */
@media (orientation: portrait) and (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

/* High DPI Displays */
@media (min-resolution: 192dpi) {
  .hero-section::before,
  .hero-section::after {
    border-radius: 50%;
    filter: blur(0.5px);
  }
}

/* Print Styles */
@media print {
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  .navbar,
  .footer {
    display: none;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
  
  .service-card,
  .price-card,
  .team-card,
  .testimonial-card,
  .faq-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Accessibility Improvements */
@media (prefers-contrast: high) {
  .service-card,
  .price-card,
  .team-card,
  .testimonial-card,
  .faq-card {
    border-width: 2px;
  }
  
  .btn-primary-custom {
    border-width: 2px;
  }
}

/* Dark Mode Support (if user prefers) */

.hero-content {
    padding-top: 225px;
}