/* Responsive Styles for AI-Curated Influencer Campaign Tool */

/* Mobile Animations Disabled */
@media (max-width: 768px) {
  /* Disable all scroll animations on mobile */
  [data-sal] {
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* No animations when scrolling in mobile resolution */
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Mobile Styles */
@media (max-width: 576px) {
  /* Typography adjustments */
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.125rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  /* Hero section */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  /* Spacing adjustments */
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Services cards */
  .services-card {
    margin-bottom: 1rem;
  }
  
  /* Contact form */
  .contact-form .form-control {
    padding: 0.5rem;
  }
  
  /* Gallery adjustments */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  /* FAQ cards */
  .faq-question {
    font-size: 0.9rem;
    padding: 0.75rem;
  }
  
  .faq-answer {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  
  /* Process steps */
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  /* Timeline adjustments */
  .timeline-item {
    padding-left: 1rem;
  }
}

/* Tablet Styles */
@media (min-width: 577px) and (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.2rem;
  }
  
  /* Hero section */
  .hero-section {
    min-height: 90vh;
  }
  
  /* Spacing */
  .section {
    padding: 3rem 0;
  }
  
  /* Team photos */
  .team-photo {
    width: 140px;
    height: 140px;
  }
  
  /* Services grid adjustments */
  .services-card {
    margin-bottom: 1.5rem;
  }
}

/* Large Tablet and Small Desktop */
@media (min-width: 769px) and (max-width: 992px) {
  /* Hero section */
  .hero-section {
    min-height: 95vh;
  }
  
  /* Gallery grid */
  .gallery-item {
    margin-bottom: 1.5rem;
  }
  
  /* Services cards spacing */
  .services-card {
    margin-bottom: 2rem;
  }
}

/* Landscape mobile adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .section {
    padding: 1.5rem 0;
  }
}

/* Print styles */
@media print {
  .hero-section {
    min-height: auto;
    background: none !important;
  }
  
  .navbar,
  .footer {
    display: none;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .services-card,
  .faq-card,
  .blog-card {
    border: 2px solid #000;
  }
  
  .btn-primary {
    border: 2px solid #000;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    animation: none;
  }
  
  .services-card:hover,
  .gallery-item:hover img,
  .blog-card:hover {
    transform: none;
  }
} 

body {
    overflow-x: hidden;
}

.hero-content {
    padding-top: 275px;
}