/* menu.css — page-specific styles for menu.html */
html { scroll-behavior: smooth; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.mn-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.mn-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.mn-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,23,20,0.90) 0%, rgba(7,23,20,0.25) 55%, transparent 100%);
}

.mn-hero__content {
  position: relative; z-index: 1;
  padding: 0 72px 64px;
}

.mn-hero__title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800; line-height: 1;
  text-transform: uppercase; color: #fff;
  letter-spacing: 0.02em; margin-bottom: 12px;
}

.mn-hero__sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.7);
}

/* ══════════════════════════════════════
   INTRO
══════════════════════════════════════ */
.mn-intro { background: #fff; }

/* ══════════════════════════════════════
   STICKY CATEGORY NAV
══════════════════════════════════════ */
.mn-nav {
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow-x: auto;
  scrollbar-width: none;
}

.mn-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(49,147,145,0.12);
}

.mn-nav::-webkit-scrollbar { display: none; }

.mn-nav__link {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(13,34,32,0.45);
  text-decoration: none;
  padding: 18px 24px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.mn-nav__link:hover,
.mn-nav__link.is-active {
  color: #319391;
  border-bottom-color: #319391;
}

/* ══════════════════════════════════════
   MENU SECTIONS
══════════════════════════════════════ */
.mn-section {
  background: #fff;
  padding: 64px 0 56px;
  scroll-margin-top: 120px;
}

.mn-section--alt { background: #f7fafa; }

.mn-section__head {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 64px;
}

.mn-section__head .section-eyebrow { margin-bottom: 8px; }
.mn-section__head .section-title { font-size: clamp(24px, 2.5vw, 36px) !important; }

/* ══════════════════════════════════════
   MENU GRID & ITEMS
══════════════════════════════════════ */
.mn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
  row-gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.mn-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(49,147,145,0.1);
}

.mn-item:nth-last-child(-n+2):nth-child(odd),
.mn-item:last-child { border-bottom: none; }

.mn-item__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #0d2220; margin-bottom: 6px;
}

.mn-item__desc {
  font-size: 13px; font-weight: 300;
  color: #666; line-height: 1.65;
  text-align: left; text-align-last: left;
}

.mn-item__note {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #319391;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.mn-cta {
  position: relative;
  background-image: url('https://bahamabaypoolclub.com/wp-content/uploads/2026/04/Bahama_Bay_2.jpg.jpeg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center 40%;
  padding: 100px 48px;
  text-align: center;
}

.mn-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7,23,18,0.68);
}

.mn-cta__inner {
  position: relative; z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mn-cta__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.1;
  text-transform: uppercase; color: #fff;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.mn-cta__desc {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.75; max-width: 540px;
}

/* ══════════════════════════════════════
   MOBILE
══════════════════════════════════════ */
@media (max-width: 768px) {
  .mn-hero { height: 50vh; min-height: 300px; }
  .mn-hero__content { padding: 0 24px 40px; width: 100%; text-align: center; }
  .mn-hero__title { font-size: clamp(36px, 10vw, 56px); }
  .mn-hero__sub { max-width: 100%; text-align: center; text-align-last: center; }

  .mn-nav { top: 56px; }
  .mn-nav__inner { padding: 0 16px; }
  .mn-nav__link { padding: 14px 16px; font-size: 9px; }

  .mn-section { padding: 48px 0 40px; scroll-margin-top: 110px; }
  .mn-section__head { padding: 0 20px; margin-bottom: 28px; }

  .mn-grid { grid-template-columns: 1fr; column-gap: 0; padding: 0 20px; }
  .mn-item { padding: 20px 0; }
  .mn-item:last-child { border-bottom: none; }

  .mn-cta { padding: 72px 24px; background-attachment: scroll; }
  .mn-cta__title { font-size: clamp(22px, 6.5vw, 32px); }
}
