/* Responsive Styles for Career Transition Coaching */

/* Tablet Styles */
@media (max-width: 992px) {
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative {
    display: none;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .service-card,
  .price-card,
  .team-card {
    margin-bottom: 2rem;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  /* Disable all animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.375rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  h4, h5, h6 {
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  /* Section adjustments */
  .section-padding {
    padding: 2.5rem 0;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  /* Cards mobile optimization */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* Process steps mobile */
  .process-step {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  /* Team photos mobile */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery mobile */
  .gallery-image {
    height: 200px;
  }
  
  /* Form adjustments */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .contact-info {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  
  /* Button mobile */
  .btn-primary,
  .btn-secondary {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  /* Footer mobile */
  footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
  }
  
  /* FAQ mobile */
  .faq-card {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .faq-question {
    font-size: 0.875rem;
  }
  
  .faq-answer {
    font-size: 0.875rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
  /* Further reduce padding and spacing */
  .section-padding {
    padding: 2rem 0;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Hero mobile small */
  .hero-section {
    min-height: 60vh;
    padding: 1.5rem 0;
  }
  
  /* Typography small mobile */
  h1 {
    font-size: 1.25rem;
  }
  
  h2 {
    font-size: 1.125rem;
  }
  
  h3 {
    font-size: 1rem;
  }
  
  .section-description {
    font-size: 0.875rem;
  }
  
  /* Cards small mobile */
  .feature-card,
  .service-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .career-card,
  .info-card {
    padding: 1rem;
  }
  
  /* Contact form small mobile */
  .contact-form,
  .contact-info {
    padding: 1.5rem 1rem;
  }
  
  /* Service images small mobile */
  .service-image {
    height: 150px;
  }
  
  .blog-image {
    height: 150px;
  }
  
  .gallery-image {
    height: 150px;
  }
  
  /* Team photos small mobile */
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  /* Price amount small mobile */
  .price-amount {
    font-size: 2rem;
  }
  
  /* Form controls small mobile */
  .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 50vh;
    padding: 1rem 0;
  }
  
  .section-padding {
    padding: 1.5rem 0;
  }
}

/* High DPI displays */
@media (min-resolution: 192dpi) {
  .service-image,
  .blog-image,
  .gallery-image,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print styles */
@media print {
  .hero-decorative,
  .btn,
  .contact-form,
  footer {
    display: none !important;
  }
  
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
} 

.hero-section h1 {
    padding-top: 150px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
