body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
  color: #000;
}

/* Hero */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: #ffe4f0;
  position: relative;
}
.hero h1 {
  font-size: 32px;
}
.hero p {
  margin: 10px 0;
}
.book-btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 20px;
  background: #f06292;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}
.social-icons {
  margin-top: 10px;
}
.social-icons a {
  margin: 0 5px;
  font-size: 20px;
}

/* Sections */
section {
  padding: 30px 20px;
}
h2 {
  color: #f06292;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
}
.close {
  position: absolute;
  top: 20px; right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #fff;
  font-size: 30px;
}
.prev { left: 0; }
.next { right: 0; }
