:root {
  --bg-main: #ede9dd;
  --text-main: #544013;
  --accent-main: #c85e14;
  --accent-soft: #9fd0bb; /* seafoam */
}

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

body {
  font-family: 'Glacial Indifference', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg-main);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.logo img {
  max-height: 75px;
}

/* NAV - DESKTOP */
.main-nav {
  display: flex;
  align-items: center;
}

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

.main-nav a:hover {
  color: var(--accent-main);
}

/* MOBILE */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--bg-main);
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  z-index: 1000;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.mobile-nav a {
  color: var(--text-main);
  padding: 0.8rem 0;
  font-size: 1.2rem;
  text-decoration: none;
}

.mobile-nav.open {
  display: flex;
}

/* HERO */
.hero {
  height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("https://raw.githubusercontent.com/epitomeedu/epitome-escape/78d154d0363716a42bee19377e7308f74a41f252/20221008_153549-01.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-family: 'Glacial Indifference', sans-serif;
  font-size: 3.5rem;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* BUTTONS */
.btn-clear {
  background: transparent;
  border: 2px solid #9fd0bb;
  color: var(--accent-soft); /* seafoam */
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.btn-clear:hover {
  background: rgba(159, 208, 187, 0.2);
  color: #fff;
}

.btn-secondary {
  border: 2px solid var(--accent-soft);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
}

/* FLOATING RESERVE */
.floating-reserve {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #fff;
  color: var(--accent-soft);
  padding: 0.8rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  z-index: 2000;
}

.floating-reserve:hover {
  background: rgba(159, 208, 187, 0.2);
  color: #fff;
}

/* CONTENT SECTIONS */
.content-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.content-section h2 {
  font-family: 'Glacial Indifference', sans-serif;
  color: var(--accent-main);
  margin-bottom: 1rem;
}

.content-section.alt {
  background: #f4f1e9;
  padding: 4rem 2rem;
}

.amenities {
  list-style: none;
  columns: 2;
  gap: 2rem;
}

.amenities li {
  margin-bottom: 0.75rem;
}

/* CTA */
.cta {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--accent-soft);
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}
