body {
  background: linear-gradient(135deg, #ffffff, #f5f5f5, #eaeaea);
}
.containerevents {
  max-width: 900px;
  margin: 20px auto;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.containerevents h1 {
  color: #FF850F;
  opacity: 0;
  animation: fadeSlide 1.5s ease-out forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.function-info {
  text-align: left;
  margin-top: 20px;
}

.function-info p {
  font-size: 16px;
  margin: 10px 0;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.function-info p:nth-child(1) { animation-delay: 0.3s; }
.function-info p:nth-child(2) { animation-delay: 0.5s; }
.function-info p:nth-child(3) { animation-delay: 0.7s; }
.function-info p:nth-child(4) { animation-delay: 0.9s; }
.function-info p:nth-child(5) { animation-delay: 1.1s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon {
  color: #c0392b;
  margin-right: 10px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  
}

.gallery img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeZoom 0.8s ease-out forwards;
}

.gallery img:nth-child(1) { animation-delay: 0.3s; }
.gallery img:nth-child(2) { animation-delay: 0.5s; }
.gallery img:nth-child(3) { animation-delay: 0.7s; }
.gallery img:nth-child(4) { animation-delay: 0.9s; }

.gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 🔥 Stylish More Pics Button */
.more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  background: linear-gradient(to right, #f39c12, #e74c3c);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.3s;
}

.more-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* 🗺️ Google Map */
iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 15px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 1.5s;
}
