body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: url("2812.png") no-repeat center center/cover;
  height: 100%;
  color: #fff;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* Header */
header {
  margin-top: 60px;
}
header h1 {
  font-size: 3em;
  color: #ffd700;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #ffd700;
}
header p {
  font-size: 1.2em;
  color: #f1f1f1;
}

/* Booking Section */
.booking-section {
  background: rgba(255, 255, 255, 0.15);
  padding: 35px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  width: 90%;
  max-width: 420px;
  margin: auto;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  animation: glow 3s infinite alternate;
}
.booking-section h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 2em;
  text-shadow: 0 0 10px #ffd700;
}
.booking-section input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 10px;
  outline: none;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.85);
}
.booking-section button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1em;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  transition: 0.3s;
}
.booking-section button:hover {
  background: #fff;
  transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}
.whatsapp-btn:hover {
  background: #1ebd59;
  transform: scale(1.1);
}

/* Gallery Section */
.gallery {
  padding: 40px 20px;
}
.gallery h2 {
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
  margin-bottom: 20px;
  font-size: 2em;
}
.gallery-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery-images img {
  width: 220px;
  height: 160px;
  border-radius: 15px;
  object-fit: cover;
  transition: 0.4s;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}
.gallery-images img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

/* Footer */
footer {
  margin-bottom: 20px;
  font-size: 0.9em;
  color: #ddd;
}
.social-links {
  margin-top: 10px;
}
.social-links a {
  color: #ffd700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.social-links a img {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 5px #ffd700);
}
.social-links a:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Animations */
@keyframes glow {
  0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
  100% { box-shadow: 0 0 40px rgba(255, 215, 0, 0.7); }
}
.fade-in { animation: fadeIn 1.5s ease-in forwards; }
.fade-in-delay { animation: fadeIn 2.5s ease-in forwards; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-up {
  animation: slideUp 1.5s ease-in forwards;
}
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
