@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-item img {
    height: 250px;
  }

  .about-content {
    padding: 0 10px;
  }

  .cta-button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}





/* Medium Devices (Tablets, 768px and up) */

@media (max-width: 1024px) {
  .hero-section {
    padding: 100px 20px;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image, .about-text {
    width: 90%;
  }
}

/* Small Devices (Phones, 480px and up) */

/* Extra Small Devices (<= 480px) */
@media (max-width: 480px) {
  .hero-section {
    padding: 80px 15px;
  }

  .hero-section h1 {
    font-size: 1.7rem;
  }

  .media-hero p, .about-text p {
    font-size: 0.95rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .description {
    font-size: 0.9rem;
  }
}
/* ========== HEADER RESPONSIVE STYLING ========== */

/* Medium Devices (Tablets, 768px and up) */
@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  nav ul li {
    margin: 5px 0;
  }
}

/* Small Devices (Phones, 480px and up) */
@media (max-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }

  nav {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    margin-top: 10px;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav a {
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
  }
}
/* Base styles */
.header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h2 {
  color: #2c5aa0;
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #2c5aa0;
}

/* Hide menu icon by default */
.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.menu-icon span {
  height: 3px;
  width: 25px;
  background: black;
  border-radius: 2px;
}

/* Responsive styles */
@media (max-width: 768px) {
  /* Show hamburger menu icon */
  .menu-icon {
    display: flex;
  }

  /* Hide nav menu by default on mobile */
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: white;
    position: absolute;
    top: 70px;  /* Adjust to header height */
    right: 20px;
    padding: 1rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
  }

  /* Show nav menu when active */
  .nav-menu.active {
    display: flex;
  }
  
  /* Adjust navbar padding on mobile */
  .navbar {
    position: relative;
  }
  
  /* Optionally reduce logo size */
  .logo h2 {
    font-size: 1.2rem;
  }
}
.nav-menu.active a {
  display: block;
  padding: 10px 15px;
  /* rest of your styles */
}

