.gallery-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 10%;
  color: #fff;

  background:
    linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../assets/images/gallery-banner.jpeg");

  background-size: cover;
  background-position: center;
}

.gallery-hero-content {
  max-width: 850px;
}

.gallery-hero h1 {
  font-size: 3rem;
  margin: 20px 0;
}

.gallery-hero p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.gallery-grid-section {
  padding: 100px 10%;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid-section {
    padding: 70px 6%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-hero h1 {
    font-size: 1.8rem;
  }

  .gallery-item img {
    height: 250px;
  }
}
.activity-categories {
  padding: 100px 10%;
  background: #f9f9f9;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.category-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card i {
  font-size: 40px;
  color: #f4a825;
  margin-bottom: 20px;
}

.category-card h3 {
  color: #222;
}
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .activity-categories {
    padding: 70px 6%;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-cta {
  padding: 100px 10%;
  text-align: center;
  color: #fff;

  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/gallery-cta.jpg");

  background-size: cover;
  background-position: center;
}

.gallery-cta .cta-content {
  max-width: 850px;
  margin: auto;
}

.gallery-cta h2 {
  font-size: 3rem;
  margin: 20px 0;
}

.gallery-cta p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .gallery-cta {
    padding: 70px 6%;
  }

  .gallery-cta h2 {
    font-size: 2rem;
  }

  .gallery-cta p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-cta h2 {
    font-size: 1.6rem;
  }

  .gallery-cta p {
    font-size: 14px;
  }
}
.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}
.about-cta {
  padding: 100px 10%;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("../images/cta-bg.jpg");

  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}

.cta-content {
  max-width: 850px;
  margin: auto;
}

.about-cta h2 {
  font-size: 3rem;
  margin: 20px 0;
}

.about-cta p {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .about-cta {
    padding: 70px 6%;
  }

  .about-cta h2 {
    font-size: 2rem;
  }

  .about-cta p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .about-cta h2 {
    font-size: 1.6rem;
    line-height: 1.4;
  }

  .about-cta p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.btn-primary {
  display: inline-block;
  background: #f4a825;
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #d98f08;
  transform: translateY(-3px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border: 2px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #222;
  transform: translateY(-3px);
}
@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}