/* Responsive Styles for SaaS Contract Reminders */

/* Mobile First Approach */
@media (max-width: 575.98px) {
  /* Extra Small devices */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .hero-section {
    min-height: 70vh;
    text-align: center;
  }
  
  .services-card,
  .pricing-card,
  .team-card {
    margin-bottom: 2rem;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .section-padding-lg {
    padding: 3rem 0;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Disable animations on mobile */
  .services-card:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  /* Small devices */
  .hero-section {
    min-height: 80vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-padding-lg {
    padding: 4rem 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* Medium devices */
  .hero-section {
    min-height: 90vh;
  }
  
  .pricing-card.featured {
    transform: scale(1.02);
  }
}

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

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

/* Print Styles */
@media print {
  .navbar,
  .hero-shape,
  .btn,
  .gallery-item {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  .section-padding,
  .section-padding-lg {
    padding: 1rem 0;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #0056b3;
    --primary-green: #006400;
    --primary-purple: #4B0082;
    --primary-orange: #CC8400;
    --primary-pink: #8B008B;
  }
  
  .services-card,
  .pricing-card,
  .team-card,
  .review-card,
  .faq-card,
  .contact-form {
    border-width: 2px;
  }
}

/* Dark Mode Support (if system preference) */

.hero-section h1 {
    padding-top: 225px;
}