/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: white;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  height: 110px;
}

header .logo img {
  height: 125px; /* 1.7× bigger than before */
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
}

.book-now {
  background: #81D8D0;
  color: #111;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  margin-right: 15px;
}

.book-now:hover {
  background: #00a89d;
  color: white;
}

.hamburger {
  font-size: 36px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Nav menu */
#nav-menu {
  position: fixed;
  top: 110px;
  right: 0;
  background: #111;
  width: 250px;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

#nav-menu.hidden {
  display: none;
}

#nav-menu a {
  color: white;
  padding: 10px 0;
  text-decoration: none;
  font-size: 18px;
}

#nav-menu a:hover {
  color: #81D8D0;
}

/* ===== CONTENT ===== */
main {
  padding: 150px 20px 40px; /* account for header */
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 40px;
}

h1 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #81D8D0;
}

h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

h2, h2 a {
  color: #81D8D0;
  text-decoration: none;
}

h2 a:hover {
  color: #00a89d;
  text-decoration: underline;
}

/* ===== SLIDESHOW ===== */
.slideshow {
  max-width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  background: #111; /* match page background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.slideshow img {
  width: auto;
  height: 100%;
  object-fit: contain;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background: #111; /* seamless with page */
}

.slideshow img.active {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .slideshow {
    height: 300px; /* tablets */
  }
}

@media (max-width: 480px) {
  .slideshow {
    height: 220px; /* phones */
  }
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #888;
}