/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    background-color: #f9f9f9;
    color: #333;
  }
  
  /* Navbar */
  .navbar {
    background-color: #C4AAF0;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
    position: sticky;
    top: 0;
  }
  
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .navbar .nav-links a {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .navbar .nav-links a:hover {
    color: #C4AAF0;
  }

  .nav-links a.active {
    color: #C4AAF0;
    font-weight: bold;
  }

  .navbar.hidden {
    top: -100px; /* or adjust based on navbar height */
  }
  
  /* Hero Section */
  .hero {
    height: 90vh;
    background: #ffffff;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero .btn {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #C4AAF0;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .hero .btn:hover {
    background-color: #f8f8f8;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .hero-image {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px; /* optional for rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* optional shadow */
  }

  /* About Section */
  .about {
    padding: 4rem 2rem;
    background-color: white;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
 /* officer section*/
  .officer-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f7f7f7;
  }
  
  .officer-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
  }
  
  .officer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .officer-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.0 rem;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .officer-card:hover {
    transform: translateY(-5px);
  }
  
  .officer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .officer-card h3 {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #333;
  }
  
  .officer-card .title {
    font-size: 1rem;
    color: #777;
    margin-bottom: 1rem;
  }
  /*gallery*/

  .gallery-section {
    padding: 4rem 2rem;
    background-color: #fafafa;
    text-align: center;
  }
  
  .gallery-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
  }
  
  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* was 250px */
  gap: 1.5rem;
  padding: 0 1rem;
 }
  
  .gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.03);
  }
 
  /* calendar */
  .calendar-embed {
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
  }
  
  .calendar-embed h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  
  /* Contact Banner */
  .image-banner {
    position: relative;
    text-align: center;
  }
  
  .image-banner img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .overlay-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* dark transparent background */
    padding: 0.5rem 1rem;
    border-radius: 10px;
  }
  
  .contact-banner h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: normal;
    color: #333;
    margin-top: 1.5rem;
  }
  
/* Contact Info Section */
.contact-info {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #f7f7f7;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
}

.emails {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.emails li {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #333;
}

  /* Footer */
  .footer {
    background-color: #C4AAF0;
    color: white;
    text-align: center;
    padding: 0.5rem;
  }