/* ===== RESPONSIVE STYLES - ETHICAL LIFESTYLE INFLUENCER AGENCY ===== */

/* Mobile First Approach */

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575.98px) {
  /* NO animations on mobile as per requirements */
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.375rem;
  }
  
  /* Hero section */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative-shape {
    display: none;
  }
  
  /* Service cards */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Pricing cards */
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-price {
    font-size: 2.5rem;
  }
  
  /* Team members */
  .team-photo {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .contact-info {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  
  /* Gallery items */
  .gallery-item {
    height: 200px;
    font-size: 2.5rem;
  }
  
  /* Footer */
  #footer {
    text-align: center;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
  
  /* Padding adjustments */
  .section-padding {
    padding: 3rem 0;
  }
  
  /* Additional page items */
  .additional-item {
    padding: 1rem;
  }
}

/* Small Devices (Landscape Phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* NO animations on mobile as per requirements */
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  #hero {
    min-height: 85vh;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
  
  .team-photo {
    width: 110px;
    height: 110px;
  }
  
  .gallery-item {
    height: 220px;
  }
  
  .section-padding {
    padding: 3.5rem 0;
  }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-decorative-shape {
    opacity: 0.05;
  }
  
  .hero-shape-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-shape-2 {
    width: 150px;
    height: 150px;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .pricing-card.featured {
    transform: scale(1.03);
  }
  
  .gallery-item {
    height: 240px;
  }
  
  .contact-form,
  .contact-info {
    padding: 2.5rem;
  }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .team-member:hover {
    transform: translateY(-3px);
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
  }
}

/* Extra Large Devices (Large Desktops) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  /* Enhanced hover effects on large screens */
  .about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }
  
  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
}

/* Extra Extra Large Devices (4K and above) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-shape-1 {
    width: 400px;
    height: 400px;
  }
  
  .hero-shape-2 {
    width: 250px;
    height: 250px;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
}

/* Portrait Orientation Adjustments */
@media (orientation: portrait) and (max-width: 991.98px) {
  #hero {
    min-height: 70vh;
  }
  
  .hero-content {
    text-align: center;
    padding-top: 125px;
}
  
  .service-card,
  .pricing-card,
  .team-member {
    margin-bottom: 2rem;
  }
}

/* Landscape Orientation Adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  #hero {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .navbar {
    padding: 0.5rem 0;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .service-image,
  .team-photo,
  .gallery-item {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn-primary {
    min-height: 44px;
    min-width: 44px;
  }
  
  .navbar-nav .nav-link {
    padding: 1rem 0.5rem;
  }
  
  .contact-info-item {
    padding: 1rem 0;
  }
  
  /* Remove hover effects on touch devices */
  .service-card:hover,
  .about-feature-card:hover,
  .team-member:hover,
  .blog-card:hover,
  .gallery-item:hover {
    transform: none;
    box-shadow: initial;
  }
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  .navbar,
  #footer,
  .btn,
  .contact-form {
    display: none !important;
  }
  
  .container {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .service-card,
  .team-member,
  .review-card {
    break-inside: avoid;
  }
}

/* Accessibility Enhancements */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --text-light: #000000;
    --border-color: #000000;
  }
  
  .btn-primary {
    background-color: #000000;
    border-color: #000000;
    color: #FFFFFF;
  }
  
  .form-control {
    border-color: #000000;
  }
}

/* Reduce Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-decorative-shape {
    display: none;
  }
}

/* Dark Mode Support */