body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

nav {
  background: #333;
  padding: 1em;
  text-align: center;
}

.nav-link.active {
  font-weight: bold;
  color: #dc3545; /* Or your brand red */
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 1em;
}

nav a:hover {
  text-decoration: underline;
}

.logo {
  height: 50px;
  width: auto; /* maintain aspect ratio */
}

main {
  padding: 2em;
}

.hidden-info {
  color: blue;
  cursor: pointer;
  text-decoration: underline;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.hero {
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    padding: 2rem;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
    padding: 1rem;
    font-size: 0.9rem;
  }
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

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

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

.red-shadow {
  text-shadow: 2px 2px 5px red;
}

.red-shadow-pulse {
  color: white;
  text-shadow: 0 0 10px red;
  animation: pulseShadow 1.5s infinite alternate;
}

@keyframes pulseShadow {
  0% {
    text-shadow: 0 0 5px red;
  }
  100% {
    text-shadow: 0 0 20px red;
  }
}


footer {
    background-color: #343a40;
    color: white;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}
.calendar div {
  border: 1px solid #ddd;
  padding: 1rem;
  min-height: 60px;
}
.calendar .header {
  font-weight: bold;
  background-color: #f8f9fa;
}

#calendar {
  /* max-width: 100%;
  margin: 0 auto; */
  overflow-x: auto;
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fc-event-title {
  font-size: 1rem;
}

@media (max-width: 576px) {
  #calendar {
    content-visibility: auto;
  }
  .fc .fc-toolbar-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .modal-body {
    font-size: 1rem;
  }
  .modal-title {
    font-size: 1.2rem;
  }
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

/* Limit carousel width on desktop */
@media (min-width: 768px) {
  #customCarousel {
    max-width: 800px;  /* Adjust as needed */
  }
}

/* Apply grayscale to non-active images */
.carousel-img {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.carousel-item.active .carousel-img {
  filter: grayscale(0%);
}


.partner-logo {
  max-height: 125px;
  object-fit: contain;
}

