:root {
  --dark-gray:  #2b2b2b;
  --off-white:  #f5f4f2;
  --charcoal:   #1f1f1f;
  --gold:       #cfa15a;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}
body {
  font-family: 'Nunito', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--off-white);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--gold);
}
.site-header__menu {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--charcoal);
  cursor: pointer;
}
.site-header__branding {
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.site-header__logo {
  height: 2rem;
}
.site-header__brandname {
  font-family: 'Orbitron', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-left: 0.5rem;
}
.site-header__spacer { width: 1.5rem; }

/* DRAWER OVERLAY */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
}
.drawer-overlay.active { display: block; }

/* SIDE DRAWER */
.drawer {
  position: fixed; top: 0; left: -100%;
  width: 85%; max-width: 320px; height: 100%;
  background: var(--off-white);
  transition: left 0.3s ease; z-index: 1001;
  display: flex; flex-direction: column; padding: 1.5rem 0;
  box-shadow: 2px 0 12px rgba(0,0,0,0.1);
}
.drawer--open { left: 0 !important; }
.drawer__close {
  font-size: 1.5rem; background: none; border: none;
  color: var(--charcoal); cursor: pointer;
  padding: 0.5rem 1.5rem; align-self: flex-end;
}
.drawer__nav ul {
  list-style: none; margin: 0; padding: 0;
}
.drawer__nav a {
  display: block; padding: 1rem 1.5rem;
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 1.125rem; color: var(--charcoal);
  transition: background 0.2s;
  position: relative;
}
.drawer__nav a::after {
  content: ''; position: absolute;
  bottom: 0; left: 1.5rem; right: 1.5rem;
  height: 1px; background: rgba(0,0,0,0.1);
}
.drawer__nav a:hover {
  background: rgba(207,161,90,0.1);
}

/* BOOKING SECTION */
.booking-section {
  padding: 4rem 1rem;
  background-color: #fafafa;
  text-align: center;      /* keeps the heading centered */
  color: #1e1e1e;
  font-family: 'Nunito', sans-serif;
}

.booking-section .section-heading {
  font-family: 'Raleway', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.booking-section .section-heading::after {
  content: '';
  display: block;
  width: 4rem;
  height: 4px;
  background: #c89c5d;
  margin: 0.5rem auto 0;
}

/* FORM GRID */
.booking-form {
  /* override center text from .booking-section */
  text-align: left;

  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* form‐group holds each label+field */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* make certain groups span both columns */
.full-width {
  grid-column: 1 / -1;
}

/* Labels & inputs */
.form-group label {
  font-weight: 600;
  color: #1e1e1e;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c89c5d;
  box-shadow: 0 0 0 2px rgba(200,156,93,0.2);
}

/* Submit button */
.form-group button {
  font-family: 'Raleway', sans-serif;
  background-color: #c89c5d;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  align-self: flex-middle; /* left‑align button */
}
.form-group button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* TWO‑COLUMN LAYOUT ON LAPTOP+ */
@media (min-width: 768px) {
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CREATIVE FOOTER */
.site-footer {
  background-color: #1e1e1e;
  color: #e0e0e0;
  font-family: 'Nunito', sans-serif;
  line-height: 1.5;
}

/* Grid container */
.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 1rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Column headings */
.footer-col h3,
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  color: #fff;
  margin-bottom: 0.75rem;
}

/* About column: remove light background */
.footer-col.about {
  background: none;
  box-shadow: none;
  padding: 0;
}
.footer-logo {
  font-size: 1.75rem;
}

/* Copy text and list resets */
.footer-col p,
.footer-col ul {
  font-size: 0.9rem;
  margin: 0.5rem 0;
  color: #e0e0e0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}

/* Links: neutral tint, no underline */
.footer-col a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #c89c5d;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #a5a5a5;
}

/* Social icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.social-icons a {
  font-size: 1.25rem;
  color: #e0e0e0;
  transition: transform 0.2s, color 0.2s;
}
.social-icons a:hover {
  transform: translateY(-2px);
  color: #c89c5d;
}

/* Desktop layout */
@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .footer-col.links {
    padding: 0 2rem;
  }
}