/* Base typography and colors */
:root {
  --brand-yellow: #FAE24C;
  --text-color: #222;
  --bg-color: #ffffff;
  --gray: #f5f5f5;
  --transition: all 0.3s ease;
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

body {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background: var(--bg-color);
}

/* NAV */
header {
  width: 100%;
  position: fixed;
  top: 0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left img {
  height: 44px;
}

.nav-right a {
  margin-left: 1.4rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-right a:hover {
  color: var(--brand-yellow);
}

/* Hero */
.hero {
  margin-top: 72px;
  height: 78vh;
  background:url('/assets/hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align:center;
  color: #000;
}

.hero h1 {
  font-size: 2.8rem;
  max-width: 700px;
}

/* Booking iframe */
.booking-iframe {
  width:100%;
  min-height:1100px;
  border:0;
}


/* BOOK nav button style */
.btn-nav {
  background: var(--brand-yellow);
  color:#000 !important;
  padding:0.5rem 1.2rem;
  border-radius:24px;
  font-weight:600;
}
