/* ePaySync Website Responsive Styles */

/* Tablets and smaller screens */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  /* Hero Section */
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  /* Features Section */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* About Section */
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  /* Team Section */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Contact Section */
  .contact-container {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  /* Header & Navigation */
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background: var(--light-color);
    width: 100%;
    height: calc(100vh - 80px);
    padding: 20px;
    transition: 0.4s;
    box-shadow: var(--shadow);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  /* Features Section */
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  /* Services Section */
  .services-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .service-tab {
    width: 100%;
    margin: 5px 0;
    text-align: center;
  }
  
  /* Team Section */
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Very small mobile devices */
@media screen and (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
  }
}
