/* Responsive CSS for SaaS Supply Chain ESG Alerts Template */

/* Tablet styles (768px and up) */
@media (min-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: var(--font-size-4xl);
    padding-top: 125px;
}
  
  .section {
    padding: 4rem 0;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile styles (max-width: 767px) */
@media (max-width: 767px) {
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: var(--font-size-2xl);
    margin-bottom: 1rem;
    padding-top: 125px;
}
  
  .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .hero-desc {
    font-size: var(--font-size-sm);
  }
  
  .hero-image {
    width: 100%;
    height: 250px;
    margin-top: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title h2 {
    font-size: var(--font-size-xl);
  }
  
  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .service-content {
    padding: 1rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .team-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: var(--font-size-sm);
  }
  
  .faq-answer {
    padding: 0 1rem 1rem;
    font-size: var(--font-size-sm);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem;
  }
  
  .navbar-brand {
    font-size: var(--font-size-lg);
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    text-align: center;
  }
  
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer .col-md-3 {
    margin-bottom: 2rem;
  }
  
  /* Hide decorative blobs on mobile */
  .blob-shape {
    display: none;
  }
  
  /* Reduce spacing between sections on mobile */
  .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .container-fluid .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Small mobile styles (max-width: 575px) */
@media (max-width: 575px) {
  .hero-title {
    font-size: var(--font-size-xl);
    padding-top: 125px;
}
  
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  h3 {
    font-size: var(--font-size-lg);
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .service-card {
    margin-bottom: 1rem;
  }
  
  .team-card {
    padding: 1rem;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .contact-form {
    padding: 1rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Large desktop styles (1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: calc(var(--font-size-4xl) + 0.5rem);
    padding-top: 125px;
}
  
  .section {
    padding: 6rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .feature-card {
    padding: 2.5rem;
  }
  
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    padding: 2.5rem 1.5rem;
  }
  
  .review-card {
    padding: 2.5rem;
  }
}

/* Extra large desktop styles (1400px and up) */
@media (min-width: 1400px) {
  .hero-image {
    width: 600px;
    height: 500px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .section {
    padding: 7rem 0;
  }
}

/* Print styles */
@media print {
  .hero-section,
  .navbar,
  .footer,
  .blob-shape {
    display: none !important;
  }
  
  .section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
  }
  
  h1, h2, h3 {
    color: #000;
    page-break-after: avoid;
  }
} 