body {
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 0;
  background: #FAF8F2;
  color: #0D0D0D;
  line-height: 1.6;
}

header.hero {
  background: #0E4B5A;
  color: #FAF8F2;
  padding: 2rem;
}

.logo {
  height: 100px;
}

.intro {
  padding: 2rem;
  background: #f9f9f9;
  margin: 2rem auto;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: #FF6F61;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

/* Slider */
.gallery {
  background: #155E75;
  color: #FAF8F2;
  padding: 2rem;
}
.slider {
  position: relative;
  max-width: 800px;
  max-height: 460px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slides img {
  width: 100%;
  border-radius: 12px;
}
@media screen and (min-width: 600px) {
  .slides img {
    height: 100%;
    object-fit: contain;
  }
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.prev { left: 10px; }
.next { right: 10px; }

/* Services */
.services {
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  margin: 2rem auto;
}
ul {
  display: inline-block;   /* makes list shrink to content width */
  text-align: left;        /* keeps bullets aligned with text */
  list-style-position: inside; /* bullets inside so text aligns */
  padding: 0;
}
li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

/* Coupons */
.coupons {
  padding: 2rem;
  background: #155E75;
  color: #FAF8F2;
  border-radius: 12px;
  margin: 2rem auto;
}

/* Booking */
.booking {
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
  margin: 2rem auto;
}

/* Footer */
footer {
  background: #0E4B5A;
  color: #FAF8F2;
  padding: 1rem;
}


.responsive-iframe {
  position: relative;
  width: 80%;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (change if needed) */
  height: 0;
  overflow: hidden;

}

.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;   /* force override */
  height: 100% !important;  /* force override */
  border: 0;
}

/* On smaller screens */
@media screen and (max-width: 600px) {
  .responsive-iframe {
    width: 100%;
    padding-bottom: 75%; /* taller aspect ratio for mobile */
  }
}