@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface2: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --text: #f0ece8;
  --muted: #888;
  --accent: #d966a0;
  --accent2: #b84d87;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg) url('images/sitebg.jpeg') center center / cover fixed;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

nav .logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

nav ul li a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--text);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

/* ── BOOK NOW CTA ── */
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: var(--accent);
  padding: 8px 20px !important;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent2) !important;
  color: white !important;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 28px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-accent {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent);
  color: white;
}

.btn-filled {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.btn-filled:hover {
  background: var(--accent2);
  border-color: var(--accent2);
}

/* ── PAGE HEADER ── */
.page-header {
  padding: 160px 48px 60px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}

.page-header p {
  margin-top: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-header .accent-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
}

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  nav ul { gap: 16px; }
  nav ul li a { font-size: 0.55rem; }
  .page-header { padding: 120px 20px 40px; }
}

@media (max-width: 560px) {
  nav ul { display: none; }
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 560px) {
  .hamburger { display: flex; }

  nav ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(16px);
    padding: 90px 40px 40px;
    gap: 32px;
    transition: right 0.35s ease;
    z-index: 150;
    border-left: 1px solid var(--border);
  }

  nav ul.open { right: 0; }

  nav ul li a {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .nav-cta {
    padding: 10px 20px !important;
  }
}
