/* ========================================
   AI Talent Pool Diversity Analytics - Responsive CSS
   Mobile-First Approach
   ======================================== */

/* Base Mobile Styles (default) */
/* Bootstrap 5 handles most responsive needs, these are custom additions */

/* Mobile Typography Adjustments */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: var(--font-size-2xl);
  }
  
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .section-subtitle {
    font-size: var(--font-size-base);
  }
  
  .hero-section {
    padding: 2rem 0;
    text-align: center;
  }
  
  .hero-shape {
    display: none;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-sm {
    padding: 2rem 0;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  
  .hero-section {
    padding: 3rem 0;
  }
  
  .section {
    padding: 4rem 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  .contact-form,
  .contact-info {
    padding: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    padding: 5rem 0;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .hero-shape {
    display: block;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .section {
    padding: var(--section-padding);
  }
  
  .hero-shape {
    display: block;
  }
}

/* Card Grid Responsive Adjustments */
@media (max-width: 767.98px) {
  .service-card,
  .price-card,
  .team-member,
  .review-card,
  .casestudy-card,
  .career-card,
  .coreinfo-item,
  .about-feature {
    margin-bottom: 2rem;
  }
  
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .timeline-item {
    margin-bottom: 1.5rem;
  }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: var(--font-size-lg);
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

/* Contact Form Responsive */
@media (max-width: 767.98px) {
  .contact-form {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .contact-info {
    padding: 2rem;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .footer .col-md-3,
  .footer .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* Team Member Images Responsive */
@media (max-width: 575.98px) {
  .team-member img {
    width: 100px;
    height: 100px;
  }
}

/* Hero Content Responsive */
@media (max-width: 767.98px) {
  .hero-content {
    text-align: center;
    padding-top: 275px;
}
  
  .hero-desc {
    font-size: var(--font-size-base);
  }
}

/* Service Cards Responsive */
@media (max-width: 575.98px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .service-card img {
    width: 60px;
    height: 60px;
  }
}

/* Price Cards Responsive */
@media (max-width: 767.98px) {
  .price-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }
  
  .price-amount {
    font-size: var(--font-size-3xl);
  }
}

/* Feature Items Responsive */
@media (max-width: 767.98px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Blog Cards Responsive */
@media (max-width: 767.98px) {
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .blog-card-body {
    padding: 1.5rem;
  }
}

/* FAQ Cards Responsive */
@media (max-width: 575.98px) {
  .faq-card {
    padding: 1.5rem;
  }
}

/* Process Steps Responsive */
@media (max-width: 767.98px) {
  .process-step {
    padding: 1.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: var(--font-size-lg);
  }
}

/* Timeline Items Responsive */
@media (max-width: 767.98px) {
  .timeline-item {
    padding: 1.5rem;
  }
  
  .timeline-item:before {
    left: -8px;
    width: 16px;
    height: 16px;
  }
}

/* Core Info Items Responsive */
@media (max-width: 767.98px) {
  .coreinfo-item {
    padding: 1.5rem;
  }
  
  .coreinfo-item i {
    font-size: 2rem;
  }
}

/* About Features Responsive */
@media (max-width: 767.98px) {
  .about-feature {
    padding: 1.5rem;
  }
  
  .about-feature i {
    font-size: 2.5rem;
  }
}

/* Utilities for Responsive Text */
@media (max-width: 575.98px) {
  .text-responsive-sm {
    font-size: var(--font-size-sm);
  }
  
  .text-responsive-base {
    font-size: var(--font-size-base);
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .text-responsive-sm {
    font-size: var(--font-size-base);
  }
  
  .text-responsive-base {
    font-size: var(--font-size-lg);
  }
}

/* Reduced motion specific responsive adjustments */
@media (prefers-reduced-motion: reduce) {
  .hero-shape-1,
  .hero-shape-2 {
    animation: none;
  }
  
  .service-card:hover,
  .price-card:hover,
  .team-member:hover,
  .gallery-item:hover,
  .casestudy-card:hover,
  .career-card:hover,
  .coreinfo-item:hover,
  .about-feature:hover {
    transform: none;
  }
  
  .btn-primary:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* High contrast mode adjustments */
@media (prefers-contrast: high) {
  :root {
    --primary-1: #5B21B6;
    --primary-2: #0891B2;
    --primary-3: #059669;
    --primary-4: #D97706;
    --primary-5: #DC2626;
    --text-primary: #000000;
    --text-secondary: #333333;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
  }
  
  .service-card,
  .price-card,
  .team-member,
  .review-card,
  .casestudy-card,
  .career-card,
  .coreinfo-item,
  .about-feature,
  .faq-card,
  .blog-card,
  .process-step,
  .timeline-item {
    border: 2px solid var(--text-primary);
  }
} 