@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li a {
    display: block;
    text-align: center;
    color: white;
  }
  
  header h1 {
    font-size: 1.2rem;
  }
  
  .logo img {
    height: 50px;
    width: 50px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content h3 {
    font-size: 1.2rem;
  }
  
  .event-fields {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date-badge {
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
    min-width: auto;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .teams-grid {
    grid-template-columns: 1fr;
  }
  
  .fellowship-grid {
    grid-template-columns: 1fr;
  }
  
  .monthly-grid {
    grid-template-columns: 1fr;
  }
  
  .objectives-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid-premium {
    grid-template-columns: 1fr;
  }

  .welcome-message {
    max-width: 90%;
  }
}

@media (min-width: 601px) and (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li a {
    display: block;
    text-align: center;
    color: white;
  }

  .hero-content h2 {
    font-size: 3rem;
  }
  
  .hero-content h3 {
    font-size: 1.5rem;
  }
  
  .scriptures-premium {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }

   .fellowship-section {
    padding: 3rem 1.5rem;
  }
  
  .fellowship-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  
  .fellowship-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
  
  .fellowship-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .fellowship-card {
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .fellowship-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .fellowship-icon h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  
  .fellowship-day {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .fellowship-time {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .fellowship-location {
    font-size: 0.95rem;
    padding-top: 0.8rem;
    margin-top: 0.5rem;
  }
  
}

@media (min-width: 993px) {
  nav ul {
    display: flex !important;
  }
  
  .menu-toggle {
    display: none;
  }
}
