/* Responsive CSS for Remote Team Culture Gamification Template */
/* Bootstrap 5 Compatible - Mobile First Approach */

/* Mobile Specific Adjustments */
@media (max-width: 767.98px) {
  
  /* No animations on mobile per requirements */
  .service-card:hover,
  .career-card:hover,
  .blog-card:hover,
  .gallery-item:hover img {
    transform: none !important;
  }
  
  /* Hero Section Mobile */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-decorative-shape {
    display: none;
  }
  
  /* Typography Mobile */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.125rem; }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  /* Section Padding Mobile */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Cards Mobile */
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .case-study-card,
  .career-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  /* Contact Form Mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Process Steps Mobile */
  .process-step {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* Team Photos Mobile */
  .team-photo {
    height: 200px;
  }
  
  /* Gallery Mobile */
  .gallery-item img {
    height: 200px;
  }
  
  /* Blog Images Mobile */
  .blog-image {
    height: 180px;
  }
  
  /* Price Amount Mobile */
  .price-amount {
    font-size: 2rem;
  }
  
  /* Feature Icons Mobile */
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .about-feature-icon {
    font-size: 2rem;
  }
  
  /* Process Number Mobile */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Tablet Specific */
@media (min-width: 768px) and (max-width: 991.98px) {
  
  .hero-section {
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.625rem; }
  
  .team-photo {
    height: 220px;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .blog-image {
    height: 190px;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .team-photo {
    height: 280px;
  }
  
  .gallery-item img {
    height: 280px;
  }
  
  .blog-image {
    height: 220px;
  }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
  
  .container-xxl {
    max-width: 1320px;
  }
  
  .section-padding {
    padding: 7rem 0;
  }
}

/* Print Styles */
@media print {
  
  .navbar,
  .footer-section,
  .btn {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .card,
  .service-card,
  .team-card,
  .review-card,
  .price-card {
    box-shadow: none !important;
    border: 1px solid #dee2e6 !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  
  .card,
  .service-card,
  .team-card,
  .review-card,
  .price-card,
  .case-study-card,
  .career-card,
  .blog-card {
    border: 2px solid #000;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    border: 2px solid #000;
  }
}

/* Dark Mode Support */

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(139, 95, 191, 0.25);
  border-color: var(--primary-purple);
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-purple);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-decorative-shape {
    animation: none !important;
  }
  
  .gallery-item img,
  .service-card,
  .career-card,
  .blog-card {
    transition: none !important;
  }
}

/* Container max-widths override to match Bootstrap 5 */
@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1320px;
  }
} 

body {
    overflow-x: hidden;
}

.hero-section h1 {
    padding-top: 250px;
}