* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Playfair Display', serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: #e8a9d4;
  text-decoration: none;
}

header.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(40%) blur(2px);
}

.overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #e8a9d4;
}

.hero-text {
  text-align: center;
  margin: auto;
  animation: fadeIn 2s ease-in-out;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  font-family: 'Dancing Script', cursive;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.btn {
  background: #e8a9d4;
  padding: 12px 25px;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #f2c3e6;
}

/* Service Cards */
.services-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background-color: #222;
  padding: 20px;
  width: 22%;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s;
  color: #fff;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #e8a9d4;
  font-weight: bold;
}

.service-card p {
  margin: 5px 0;
}

.service-card .description {
  font-size: 0.9rem;
  color: #bbb;
  font-style: italic;
}

.service-card .price {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 10px;
  font-weight: bold;
}

.service-card:hover {
  transform: scale(1.05);
  background-color: #333;
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    gap: 30px;
  }

  .service-card {
    width: 100%;
  }
}


.section {
  padding: 60px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Horizontal Gallery Layout */
.gallery {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping of images */
  overflow-x: auto; /* Allow horizontal scrolling */
  margin-top: 30px;
}

.gallery img {
  width: auto;
  height: 300px; /* Adjust the height of the images */
  margin-right: 16px; /* Space between images */
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* Lightbox Overlay */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-overlay img.enlarged {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #ffffff00;
  color: white;
  font-size: 24px;
  padding: 12px 12px;
  border-radius: 50%;
  text-align: center;
  z-index: 10000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.whatsapp-button img{
  width: 30px;
  height: 30px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* Book Now Button */
.book-now-container {
  margin-top: 40px;
  text-align: center;
}

.book-now-btn {
  background: #e8a9d4;
  padding: 12px 25px;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.book-now-btn:hover {
  background: #f2c3e6;
}

/* Scrollbar Styling for Horizontal Gallery */
.gallery::-webkit-scrollbar {
  height: 10px; /* Vertical scrollbar height */
}

.gallery::-webkit-scrollbar-track {
  background: #222; /* Dark background for the track */
  border-radius: 5px;
}

.gallery::-webkit-scrollbar-thumb {
  background: #e8a9d4; /* Pink color for the thumb */
  border-radius: 5px;
  transition: background 0.3s ease;
}

.gallery::-webkit-scrollbar-thumb:hover {
  background: #f2c3e6; /* Lighter pink on hover */
}

/* For Firefox */
.gallery {
  scrollbar-width: thin;
  scrollbar-color: #e8a9d4 #222; /* Thumb color and track color */
}
.instagram-icon {
  display: inline-block;
  margin-top: 10px;
}

.instagram-icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.instagram-icon img:hover {
  transform: scale(1.1);
}


/* Popup Form */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup {
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
    max-height: 90vh;        /* Limit height to 90% of viewport */
  overflow-y: auto;  
  color: #fff;
  text-align: center;
}

.popup h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.popup label {
  display: block;
  margin-top: 10px;
}

.popup input,
.popup select,
.popup textarea{
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
  background-color: #333;
  color: #fff;
}

.popup button {
  background-color: #e8a9d4;
  padding: 12px 25px;
  border-radius: 30px;
  color: #000;
}

.popup .close-btn {
   position: relative;
  top: 10px;
  right: 10px;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}



.popup img {
  width: 18rem;
  height: 16rem;
  margin-bottom: 15px;
}


.popup-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.popup-icons img {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.popup-content {
  margin-bottom: 20px;
}

.popup-section h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.popup-section p {
  font-size: 16px;
  margin-bottom: 15px;
}
