/* Header Styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f4f4f4;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0px;
  z-index: 19999;
}

.logo {
  display: flex;
  align-items: center;
}

.logo_img {
  height: 50px;
  margin-right: 10px;
}

.logo_contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.logo_contact-btn {
  background-color: #ff5a5f;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 5px;
}

.logo_contact-no {
  font-size: 14px;
  color: #555;
}

.nav {
  display: flex;
  align-items: center;
}

.nav_items {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav_link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 5px 10px;
}

.nav_link:hover {
  background-color: #ff5a5f;
  color: white;
  border-radius: 5px;
}

/* Footer Styling */
.footer {
  background-color: #333;
  color: white;
  padding: 20px 40px;
  text-align: center;
}

.footer_logos img {
  height: 50px;
  margin-bottom: 10px;
}

.footer_heading {
  font-size: 20px;
  margin-bottom: 5px;
}

.footer_heading3 {
  font-size: 16px;
  font-weight: 400;
  color: #ccc;
  margin-top: 0;
}

.footer_links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer_links a {
  color: #ff5a5f;
  text-decoration: none;
}

.footer_links a:hover {
  text-decoration: underline;
}

/* Activities Section Styling */
.activities {
    margin-top: 5rem;
  }
  
  /* Gallery Section Styling */
  .gallery {
    background-color: rgba(128, 128, 128, 0.128);
    grid-column: full-start / full-end;
    display: grid;
    grid-template: repeat(7, 5vw) / repeat(8, 1fr);
    grid-gap: 1.5rem;
    padding: 1.5rem;
    padding-top: 5rem;
  }
  
  /* Gallery Item Styling */
  .gallery__item--1 {
    grid-row: 1 / span 2;
    grid-column: 1 / span 2;
  }
  
  .gallery__item--2 {
    grid-row: 1 / span 3;
    grid-column: 3 / span 3;
  }
  
  .gallery__item--3 {
    grid-row: 1 / span 2;
    grid-column: 6 / 7;
  }
  
  .gallery__item--4 {
    grid-row: 1 / span 2;
    grid-column: 7 / -1;
  }
  
  .gallery__item--5 {
    grid-row: 3 / span 3;
    grid-column: 1 / span 2;
  }
  
  .gallery__item--6 {
    grid-row: 4 / span 2;
    grid-column: 3 / span 2;
  }
  
  .gallery__item--7 {
    grid-row: 4 / 5;
    grid-column: 5 / 6;
  }
  
  .gallery__item--8 {
    grid-row: 3 / span 2;
    grid-column: 6 / span 2;
  }
  
  .gallery__item--9 {
    grid-row: 3 / span 3;
    grid-column: 8 / -1;
  }
  
  .gallery__item--10 {
    grid-row: 6 / span 2;
    grid-column: 1 / 2;
  }
  
  .gallery__item--11 {
    grid-row: 6 / span 2;
    grid-column: 2 / span 2;
  }
  
  .gallery__item--12 {
    grid-row: 6 / span 2;
    grid-column: 4 / 5;
  }
  
  .gallery__item--13 {
    grid-row: 5 / span 3;
    grid-column: 5 / span 3;
  }
  
  .gallery__item--14 {
    grid-row: 6 / span 2;
    grid-column: 8 / -1;
  }
  
  /* Gallery Image Styling */
  .gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
