/* Mobile & Tablet Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1002;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding-top: 80px;
    transition: right var(--transition-fast);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }
  
  nav.active {
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }
  
  nav ul li a {
    display: block;
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  nav ul li a:after {
    display: none;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  body.menu-open {
    overflow: hidden;
  }
}

/* Hero Section */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Section Padding */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
}

/* About Preview */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-image, .about-text {
    flex: 1 1 100%;
  }
  
  .about-image {
    margin-bottom: 32px;
  }
}

/* Events Section */
@media (max-width: 600px) {
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    width: 100%;
  }
}

/* Team Members */
@media (max-width: 600px) {
  .team-members {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  
  .member-image img {
    height: 250px;
  }
}

/* Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-logo, .footer-links, .footer-social {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  footer {
    padding: 40px 0 0;
  }
}

/* Contact Section */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form {
    order: 1;
  }
}

/* Page Header */
@media (max-width: 768px) {
  .page-header {
    padding: 100px 0 40px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
}

/* Vision & Mission */
@media (max-width: 768px) {
  .vision-mission-cards {
    gap: 16px;
  }
  
  .vm-card {
    padding: 24px 16px;
  }
  
  .vm-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }
  
  .vm-icon i {
    font-size: 24px;
  }
}

/* Achievement Counters */
@media (max-width: 768px) {
  .achievement-counters {
    gap: 16px;
  }
  
  .counter {
    font-size: 2.5rem;
  }
  
  .counter-item h3 {
    font-size: 1rem;
  }
}

/* Map Section */
@media (max-width: 768px) {
  .map-container iframe {
    height: 350px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .join-content h2 {
    font-size: 1.8rem;
  }
  
  .counter {
    font-size: 2rem;
  }
  
  .info-item {
    flex-direction: column;
  }
  
  .info-icon {
    margin-bottom: 16px;
    margin-right: 0;
  }
  
  .contact-info, .contact-form {
    padding: 24px 16px;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  section {
    padding: 100px 0;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .hero-content p {
    font-size: 1.5rem;
  }
}