/* Remote Sales Training Bootcamp - Responsive Styles */

/* Mobile First - Base Styles (up to 576px) */
@media (max-width: 575.98px) {
  /* Typography adjustments */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  /* Section spacing */
  section {
    padding: 2rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  /* Hero section */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  #hero .hero-content {
    padding: 1rem;
    padding-top: 200px;
}
  
  /* Cards and components */
  .service-card,
  .price-card,
  .review-card,
  .case-card,
  .career-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card.featured {
    transform: none;
    margin-top: 1rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info {
    padding: 1.5rem;
    margin-top: 1rem;
  }
  
  /* Process steps */
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  /* Gallery images */
  .gallery-image {
    height: 200px;
  }
  
  /* Footer */
  #footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Hero adjustments */
  #hero {
    min-height: 85vh;
  }
  
  /* Team photos */
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  /* Gallery images */
  .gallery-image {
    height: 220px;
  }
  
  /* Process steps */
  .step-number {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Hero section */
  #hero {
    min-height: 90vh;
  }
  
  /* Team photos */
  .team-photo {
    width: 180px;
    height: 180px;
  }
  
  /* Gallery images */
  .gallery-image {
    height: 240px;
  }
  
  /* Service cards in 2 columns */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Price cards spacing */
  .price-card {
    margin-bottom: 2rem;
  }
  
  .price-card.featured {
    transform: scale(1.02);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Full hero height */
  #hero {
    min-height: 100vh;
  }
  
  /* Team photos */
  .team-photo {
    width: 200px;
    height: 200px;
  }
  
  /* Gallery images */
  .gallery-image {
    height: 250px;
  }
  
  /* Price card featured effect */
  .price-card.featured {
    transform: scale(1.05);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  /* Container max-width adjustments */
  .container {
    max-width: 1140px;
  }
  
  /* Enhanced spacing for large screens */
  section {
    padding: 5rem 0;
  }
  
  .section-title {
    margin-bottom: 4rem;
  }
  
  /* Larger team photos for desktop */
  .team-photo {
    width: 220px;
    height: 220px;
  }
  
  /* Enhanced gallery */
  .gallery-image {
    height: 280px;
  }
  
  /* Larger contact sections */
  .contact-form {
    padding: 3rem;
  }
  
  .contact-info {
    padding: 3rem;
  }
}

/* Navigation responsive behavior */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .navbar-nav {
    text-align: center;
  }
  
  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
}

/* Specific mobile adjustments for animations - NO ANIMATIONS ON MOBILE */
@media (max-width: 768px) {
  .feature-card:hover,
  .service-card:hover,
  .gallery-image:hover {
    transform: none;
  }
  
  .feature-card,
  .service-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card {
    transition: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .price-card,
  .review-card,
  .faq-card {
    border: 2px solid var(--dark-gray);
  }
  
  .btn-primary {
    border: 2px solid var(--dark-blue);
  }
}

/* Print styles */
@media print {
  #header,
  #footer {
    display: none;
  }
  
  section {
    page-break-inside: avoid;
    padding: 1rem 0;
  }
  
  .service-card,
  .price-card,
  .review-card {
    border: 1px solid var(--gray);
    box-shadow: none;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  #hero {
    min-height: 60vh;
  }
  
  section {
    padding: 1.5rem 0;
  }
}

/* Accessibility improvements for larger text */
@media (min-resolution: 2dppx) {
  .team-photo,
  .gallery-image {
    image-rendering: -webkit-optimize-contrast;
  }
} 

body {
    overflow-x: hidden;
}