/* Remote Digital Workshop Facilitator Template - Responsive CSS */

/* Mobile First Approach - NO ANIMATIONS ON MOBILE */

/* Extra Large Devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section p {
    font-size: 1.125rem;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .section-padding {
    padding: 100px 0;
  }
  
  .hero-content {
    padding-right: 2rem;
    padding-top: 275px;
}
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-member img {
    width: 120px;
    height: 120px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .price-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* DISABLE ALL ANIMATIONS ON MOBILE */
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
  
  /* Typography adjustments */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  
  h4 {
    font-size: 1.125rem;
    line-height: 1.4;
  }
  
  p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Section padding */
  .section-padding {
    padding: var(--section-padding-mobile);
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-section::before {
    display: none; /* Remove decorative elements on mobile */
  }
  
  .hero-content {
    padding: 0;
    margin-bottom: 2rem;
    padding-top: 275px;
}
  
  /* Navigation mobile */
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    text-align: center;
    border-bottom: 1px solid var(--neutral-light);
  }
  
  /* Cards mobile optimization */
  .service-card,
  .price-card,
  .review-card,
  .blog-card,
  .career-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    transform: none !important;
  }
  
  .service-card:hover,
  .price-card:hover,
  .career-card:hover {
    transform: none !important;
  }
  
  /* About features mobile */
  .about-feature {
    margin-bottom: 1rem;
    padding: 1.25rem;
    text-align: center;
    transform: none !important;
  }
  
  .about-feature:hover {
    transform: none !important;
  }
  
  /* Team members mobile */
  .team-member {
    margin-bottom: 2rem;
    padding: 1rem;
  }
  
  .team-member img {
    width: 100px;
    height: 100px;
    margin-bottom: 0.75rem;
  }
  
  /* Process steps mobile */
  .process-step {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.25rem;
  }
  
  /* Timeline mobile */
  .timeline-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
  }
  
  /* Contact section mobile */
  .contact-form {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    padding: 1rem 0;
  }
  
  .contact-info-item {
    margin-bottom: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info-item i {
    margin: 0 0 0.5rem 0;
  }
  
  /* Gallery mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .gallery-item img {
    transform: none !important;
  }
  
  .gallery-item:hover img {
    transform: none !important;
  }
  
  /* FAQ mobile */
  .faq-card {
    margin-bottom: 1rem;
    padding: 1.25rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  /* Button mobile */
  .btn-primary,
  .btn-secondary {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    transform: none !important;
  }
  
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none !important;
  }
  
  /* Form controls mobile */
  .form-control {
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  /* Core info mobile */
  .coreinfo-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
  }
  
  .coreinfo-item i {
    font-size: 2rem;
  }
  
  /* Case study mobile */
  .case-study-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* Blog cards mobile */
  .blog-card {
    margin-bottom: 1.5rem;
    transform: none !important;
  }
  
  .blog-card:hover {
    transform: none !important;
  }
  
  .blog-card-body {
    padding: 1.25rem;
    overflow-x: hidden;
}
  
  /* Additional page sections */
  .page-section {
    padding: var(--section-padding-mobile);
  }
  
  /* Utility adjustments */
  .text-center-mobile {
    text-align: center;
  }
  
  .mb-mobile {
    margin-bottom: 1rem;
  }
}

/* Ultra-small devices (very small phones, less than 400px) */
@media (max-width: 399.98px) {
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.35rem;
  }
  
  .hero-section {
    min-height: 60vh;
    padding: 1.5rem 0;
  }
  
  .service-card,
  .price-card,
  .review-card {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
  
  .page-section {
    padding: 40px 0;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .contact-form {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: black;
  }
  
  h1, h2, h3, h4 {
    color: black;
    page-break-after: avoid;
  }
  
  .section-padding {
    padding: 20pt 0;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .price-card,
  .review-card,
  .about-feature {
    border: 2px solid var(--neutral-dark);
  }
  
  .btn-primary,
  .btn-secondary {
    border: 2px solid var(--neutral-dark);
  }
}

/* Dark mode preferences (basic support) */
