/* Responsive Styles for ESG Compliance Training Platform */

/* Mobile First Approach */
@media (max-width: 767.98px) {
  /* No animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  /* Hero section adjustments */
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    padding-top: 125px;
}
  
  .hero-section p {
    font-size: 0.9rem;
  }
  
  /* Hide decorative shapes on mobile */
  .decorative-shape {
    display: none;
  }
  
  /* Service cards stack */
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  /* Team photo size adjustment */
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  /* Gallery grid mobile */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Footer adjustments */
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  /* Navbar brand mobile */
  .navbar-brand {
    font-size: 1rem;
  }
  
  /* Button adjustments */
  .btn-primary-custom {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section h1 {
    font-size: 1.9rem;
    padding-top: 125px;
}
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-photo {
    width: 140px;
    height: 140px;
  }
}

/* Desktop styles */
@media (min-width: 992px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  /* Larger containers for desktop */
  .container-lg {
    max-width: 1200px;
  }
}

/* Large desktop */
@media (min-width: 1200px) {
  .hero-section {
    padding: 0 3rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Print styles */
@media print {
  .navbar, .footer, .btn {
    display: none;
  }
  
  .hero-section {
    min-height: auto;
    background: white;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
} 

body {
    overflow-x: hidden;
}