/* Force light mode — prevent browser dark mode override */
html {
  color-scheme: only light;
  overflow-y: scroll;        /* always reserve scrollbar space — prevents layout shift */
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #111111;
  overflow-x: hidden;        /* prevent Ken Burns horizontal bleed */
  animation: pageFadeIn 0.2s ease forwards;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Navbar ─────────────────────────────────────────────── */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  height: 84px;
  display: flex;
  align-items: center;
  padding: 0 36px;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 52px;
}

.brand img {
  height: 84px;
  width: auto;
  display: block;
  /* Logoblack.png is white-on-black — invert makes it black-on-white */
  filter: invert(1);
}

/* Nav links — override ALL states including :visited */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 38px;
  flex: 1;
}

.nav-links a,
.nav-links a:link,
.nav-links a:visited,
.nav-links a:hover,
.nav-links a:active {
  position: relative;
  text-decoration: none !important;
  color: #555555 !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding-bottom: 1px;
  transition: color 0.15s ease;
  white-space: nowrap;
}

/* Underline via pseudo-element — no layout shift */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: #111111 !important;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active,
.nav-links a.active:visited,
.nav-links a.active:link {
  color: #111111 !important;
  font-weight: 600;
}

.nav-links a.active::after {
  transform: scaleX(1);
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Book Now button */
.btn-book,
.btn-book:visited {
  background: #111111;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.btn-book:hover {
  background: #2c2c2c;
  transform: translateY(-1px);
}

.btn-book:active {
  transform: translateY(0);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1.5px solid #dedede;
  border-radius: 7px;
  cursor: pointer;
  padding: 9px 10px;
  transition: border-color 0.15s;
}

.hamburger:hover {
  border-color: #999;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: #111111;
  border-radius: 2px;
}

/* Page image */
.page-img {
  width: 100%;
  height: auto;
  display: block;
}
