/* 
 * SaaS E-commerce KPI Dashboard Template - Responsive CSS
 * Mobile-first responsive design
 */

/* Mobile Styles (up to 576px) */
@media (max-width: 575.98px) {
  /* NO ANIMATIONS ON MOBILE */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  /* Hero section */
  .hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .hero-content {
    text-align: center;
    padding: 1rem 0;
    padding-top: 150px;
}
  
  .hero-decorative::before {
    width: 60px;
    height: 60px;
    top: -10px;
    right: -10px;
  }
  
  /* Sections padding */
  .services-section,
  .features-section,
  .about-section,
  .priceplan-section,
  .team-section,
  .reviews-section,
  .casestudy-section,
  .process-section,
  .timeline-section,
  .career-section,
  .coreinfo-section,
  .contact-section,
  .blog-section,
  .faq-section,
  .gallery-section {
    padding: 3rem 0;
  }
  
  /* Cards */
  .service-card,
  .price-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
  }
  
  .service-card:hover {
    transform: none;
  }
  
  /* Team photos */
  .team-photo {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
  }
  
  /* Contact form */
  .contact-form,
  .contact-info {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  /* Gallery items */
  .gallery-item {
    height: 200px;
  }
  
  /* Button adjustments */
  .btn-custom {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-custom:hover {
    transform: none;
  }
}

/* Small devices (576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .service-card,
  .price-card {
    margin-bottom: 2rem;
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
}

/* Medium devices (768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* Large devices (992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 95vh;
  }
}

/* Extra large devices (1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .container {
    max-width: 1140px;
  }
}

/* Landscape mobile orientation */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery-item,
  .team-photo {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn-custom {
    display: none;
  }
  
  .hero-section,
  .services-section,
  .features-section,
  .about-section,
  .priceplan-section,
  .team-section,
  .reviews-section,
  .casestudy-section,
  .process-section,
  .timeline-section,
  .career-section,
  .coreinfo-section,
  .contact-section,
  .blog-section,
  .faq-section,
  .gallery-section {
    padding: 1rem 0;
  }
  
  body {
    font-size: 12pt;
    overflow-x: hidden;
}
} 