body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
}

.gallery-images img {
  width: 100%;
  max-width: 250px;
  height: 180px; /* or whatever uniform height you want */
  object-fit: cover; /* Crop to fill box */
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-images img {
  width: 100%;
  max-width: 250px;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-modal img {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.lightbox-modal .close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


.contact .btn {
  margin-top: 1rem;
  display: inline-block;
}

.contact-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.booking-box,
.contact-box {
  flex: 1;
  min-width: 250px;
}

.contact-box p,
.booking-box p {
  margin: 0.5rem 0;
}

header.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  height: 100vh;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  background-color: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 8px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.btn {
  background: #388e3c;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
  border-bottom: 1px solid #ddd; /* Light grey line */
}

section:last-of-type {
  border-bottom: none; /* Remove line after last section */
}


.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  padding: 0.5rem 0;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-images img {
  width: 100%;
  max-width: 250px;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .gallery-images {
    flex-direction: column;
    align-items: center;
  }
}
