/* ═══════════════════════════════════════════
   MENU PAGE - Gothic Velvet
═══════════════════════════════════════════ */

/* ── HERO - bg defined in style.css ── */

/* ── SECTION STRUCTURE ── */
.menu-body {
  background: var(--bg);
  padding: 6rem 2rem 8rem;
}

.menu-section {
  max-width: 1180px;
  margin: 0 auto 7rem;
}

.menu-section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.menu-section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.menu-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
}

.menu-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.2rem auto 0;
}

/* ── COCKTAIL GRID ── */
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.cocktail-card {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 1.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.cocktail-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(176,0,58,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.cocktail-card:hover {
  background: color-mix(in srgb, var(--surface) 80%, var(--red) 20%);
}

.cocktail-card:hover::before { opacity: 1; }

.cocktail-img-wrap {
  width: 140px;
  height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.cocktail-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(176,0,58,0.35));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.cocktail-card:hover .cocktail-img {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 14px 32px rgba(176,0,58,0.55));
}

.cocktail-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.3rem;
}

.cocktail-price {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
}

.cocktail-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  text-align: center;
  max-width: 220px;
}

/* ── BAR BUYOUT ── */
.bar-buyout {
  max-width: 520px;
  margin: 0 auto 7rem;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 2.8rem 3rem;
  position: relative;
  text-align: center;
}

.bar-buyout::before,
.bar-buyout::after,
.bar-buyout .bc-tl,
.bar-buyout .bc-tr,
.bar-buyout .bc-bl,
.bar-buyout .bc-br {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
}

.bar-buyout .bc-tl { top: 8px;    left: 8px;    border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.bar-buyout .bc-tr { top: 8px;    right: 8px;   border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.bar-buyout .bc-bl { bottom: 8px; left: 8px;    border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.bar-buyout .bc-br { bottom: 8px; right: 8px;   border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

.buyout-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.buyout-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.buyout-currency {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-left: 0.4em;
}

.buyout-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-top: 0.8rem;
  letter-spacing: 0.06em;
}

/* ── BARTENDERS ── */
.bartenders-section {
  max-width: 1000px;
  margin: 0 auto 7rem;
  position: relative;
}

.bartenders-photo-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.bartenders-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.7) 0%, transparent 45%);
  pointer-events: none;
}

.bartenders-photo {
  width: 100%;
  display: block;
  filter: brightness(0.88) contrast(1.05);
  transition: filter 0.6s ease;
}

.bartenders-photo-wrap:hover .bartenders-photo {
  filter: brightness(0.95) contrast(1.08);
}

.bartenders-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2.5rem 2rem;
  z-index: 2;
}

.bartenders-caption-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.bartenders-caption-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  margin-top: 0.35rem;
}

/* ── 777 GAME ── */
.game-777-section {
  max-width: 780px;
  margin: 0 auto;
}

.game-777-wrap {
  border: 1px solid rgba(176,0,58,0.35);
  background: var(--surface);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.game-777-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(176,0,58,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.game-777-number {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.18em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(176,0,58,0.6), 0 0 80px rgba(176,0,58,0.2);
  margin-bottom: 0.5rem;
}

.game-777-subtitle {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.game-777-rules {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.game-777-rule {
  text-align: center;
}

.game-777-rule-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.game-777-rule-val {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.08em;
}

.game-777-sep {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}

.game-777-pot {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  margin-top: 0.5rem;
}

.game-777-pot-label {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 0.6rem;
}

.game-777-pot-amount {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 0 30px rgba(201,168,76,0.5);
}

.game-777-pot-amount .pot-currency {
  font-size: 0.9em;
  color: var(--gold);
  margin-left: 0.3em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cocktail-grid {
    grid-template-columns: 1fr;
  }

  .game-777-rules {
    gap: 1.5rem;
  }

  .game-777-sep { display: none; }

  .bar-buyout {
    padding: 2rem 1.5rem;
  }
}
