/* Responsive Styles for Ethical Fashion Dropshipping Platform */

/* Tablet Styles */
@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
    padding: 80px 0;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .service-card {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 30px;
  }
  
  .gallery-item {
    margin-bottom: 20px;
  }
  
  .contact-info {
    margin-top: 40px;
  }
}

/* Mobile Styles */
@media (max-width: 767.98px) {
  /* Disable animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  [data-sal] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  /* Typography adjustments */
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 80vh;
    padding: 60px 0;
  }
  
  .hero-section::before {
    display: none;
  }
  
  /* Button adjustments */
  .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  /* Card adjustments */
  .service-card,
  .team-member,
  .review-card {
    margin-bottom: 20px;
    padding: 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Gallery mobile */
  .gallery-item {
    margin-bottom: 15px;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* FAQ mobile */
  .faq-card {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  /* Contact form mobile */
  .contact-info {
    margin-top: 30px;
    padding: 30px 20px;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .contact-info-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  /* Footer mobile */
  .footer-section {
    padding: 40px 0 20px;
    text-align: center;
  }
  
  .footer-section .col-lg-3,
  .footer-section .col-lg-4 {
    margin-bottom: 30px;
  }
  
  /* Section padding mobile */
  .section-padding,
  .about-section,
  .services-section,
  .team-section,
  .reviews-section,
  .gallery-section,
  .faq-section,
  .contact-section {
    padding: 60px 0;
  }
  
  /* Remove hover effects on mobile */
  .card:hover,
  .service-card:hover,
  .team-member:hover,
  .gallery-item:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(36, 54, 72, 0.10);
  }
  
  .btn-primary:hover {
    transform: none;
  }
}

/* Small Mobile Styles */
@media (max-width: 575.98px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 40px 0;
  }
  
  .service-card,
  .team-member,
  .review-card,
  .contact-info {
    padding: 15px;
  }
  
  .section-padding,
  .about-section,
  .services-section,
  .team-section,
  .reviews-section,
  .gallery-section,
  .faq-section,
  .contact-section {
    padding: 40px 0;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .team-photo {
    width: 80px;
    height: 80px;
  }
  
  .contact-info-icon {
    width: 40px;
    height: 40px;
  }
}

/* High contrast for accessibility */
@media (prefers-contrast: high) {
  :root {
    --primary-sage: #3e553a;
    --primary-terracotta: #a98b58;
    --primary-cream: #FFFFFF;
    --primary-charcoal: #000000;
    --primary-dusty-rose: #a57e7c;
  }
  
  .card {
    border: 2px solid var(--primary-charcoal);
  }
  
  .btn-outline-primary {
    border-width: 2px;
  }
  
  .form-control {
    border-width: 2px;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer-section,
  .btn,
  .contact-section {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    page-break-after: always;
  }
  
  .section-padding {
    padding: 20px 0;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #dbdbdb;
  }
} 

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