/* ═════════════════════════════════════════
   BEVERAGE PAGE — CAFE MILANGE 
   ══════════════════════════════════════════ */
html { visibility: hidden; }
/* ── Body ── */
.bev-body {
  background: #231c07;
  padding: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Subtle noise grain over whole page */
.bev-body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* Deep ambient glow — top centre */
.bev-body::after {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(197,160,89,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientPulse {
  from { opacity: 0.6; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* ── Page Header ── */
.bev-header {
  text-align: center;
  padding: 10rem 5% 4rem;
  position: relative;
  z-index: 1;
}

/* Eyebrow label */
.bev-header::before {
  content: '✦  DRINKS MENU  ✦';
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  color: var(--accent-gold);
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  opacity: 0.7;
  animation: fadeSlideDown 0.8s cubic-bezier(0.22,1,0.36,1) both;
}

.bev-header h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  color: #f5ede0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.05;
  animation: fadeSlideUp 0.9s 0.1s cubic-bezier(0.22,1,0.36,1) both;
}

.bev-header h1 span {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 400;
  position: relative;
}

.bev-header h1 span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1.5px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 0.8s 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* Thin gold rule below heading */
.bev-header::after {
  content: '';
  display: block;
  width: 56px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 2rem auto 0;
  animation: fadeSlideUp 0.9s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

/* ── Row ── */
.bev-row {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 5% 7rem;
  position: relative;
  z-index: 1;
}

/* ── Scroll-in initial state ── */
.bev-card {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.7s cubic-bezier(0.22,1,0.36,1),
    transform 0.7s cubic-bezier(0.22,1,0.36,1),
    box-shadow 0.4s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.bev-card.appeared { opacity: 1; transform: translateY(0); }

.bev-card:nth-child(1) { transition-delay: 0s; }
.bev-card:nth-child(2) { transition-delay: 0.08s; }
.bev-card:nth-child(3) { transition-delay: 0.16s; }
.bev-card:nth-child(4) { transition-delay: 0.24s; }
.bev-card:nth-child(5) { transition-delay: 0.32s; }

/* ── Card ── */
.bev-card {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 120px 22px 22px 120px;
  padding: 14px 2rem 14px 14px;
  box-shadow:
    0 2px 0 rgba(197,160,89,0.08) inset,
    0 20px 50px rgba(0,0,0,0.35);
  border: 1px solid rgba(197,160,89,0.12);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Gold shimmer sweep */
.bev-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 30%,
    rgba(197,160,89,0.07) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.65s ease;
  pointer-events: none;
  z-index: 1;
}

/* Bottom accent line */
.bev-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 148px;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.bev-card:hover {
  transform: translateY(-6px) translateX(8px) scale(1.012) !important;
  background: rgba(255,255,255,0.07);
  border-color: rgba(197,160,89,0.38);
  box-shadow:
    0 2px 0 rgba(197,160,89,0.12) inset,
    0 30px 70px rgba(0,0,0,0.45),
    0 0 0 1px rgba(197,160,89,0.15);
}

.bev-card:hover::before { transform: translateX(100%); }
.bev-card:hover::after  { transform: scaleX(1); }

/* ── Card image (circular) ── */
.bev-card img {
  flex: 0 0 152px;
  width: 152px;
  height: 152px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
  box-shadow:
    0 0 0 0px rgba(197,160,89,0),
    0 6px 24px rgba(0,0,0,0.4);
  transition:
    transform 0.65s cubic-bezier(0.165,0.84,0.44,1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
  position: relative;
  z-index: 2;
}

.bev-card:hover img {
  transform: scale(1.08) rotate(3deg);
  box-shadow:
    0 0 0 4px rgba(197,160,89,0.50),
    0 10px 35px rgba(0,0,0,0.5);
  border-color: rgba(197,160,89,0.4);
  filter: brightness(1) saturate(1.15);
}

/* ── Card info ── */
.bev-info {
  flex: 1;
  padding: 0 2.2rem;
  position: relative;
  z-index: 2;
}

.bev-info h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  margin-bottom: 0.45rem;
  font-family: var(--font-display);
  color: #f0e6d3;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  transition: color 0.3s ease, letter-spacing 0.4s ease;
}

.bev-card:hover .bev-info h2 {
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.bev-info p {
  color: #a08878;
  font-size: 0.93rem;
  line-height: 1.65;
  max-width: 300px;
  transition: color 0.3s ease;
}

.bev-card:hover .bev-info p {
  color: #c4a98a;
}

/* "Explore" ghost tag fades up on hover */
.bev-info::after {
  content: 'Explore drinks';
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.bev-card:hover .bev-info::after {
  opacity: 1;
  transform: translateY(0);
}

/* ── Chevron arrow circle ── */
.bev-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(197,160,89,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197,160,89,0.22);
  position: relative;
  z-index: 2;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Pulsing halo */
.bev-arrow::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(197,160,89,0);
  transition: border-color 0.3s ease;
  animation: none;
}

.bev-card:hover .bev-arrow::before {
  border-color: rgba(197,160,89,0.3);
  animation: ringPulse 1.6s ease-in-out infinite;
}

@keyframes ringPulse {
  0%   { transform: scale(0.85); opacity: 1; }
  70%  { transform: scale(1.3);  opacity: 0; }
  100% { opacity: 0; }
}

.bev-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--accent-gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease, stroke 0.3s ease;
}

.bev-card:hover .bev-arrow {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(197,160,89,0.35);
  transform: scale(1.1);
}

.bev-card:hover .bev-arrow svg {
  stroke: #1a1008;
  transform: translateX(3px);
}

/* ── Keyframes ── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 0.7; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes underlineReveal {
  to { transform: scaleX(1); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .bev-header { padding-top: 8rem; }

  .bev-card {
    flex-direction: column;
    border-radius: 22px;
    text-align: center;
    padding: 1.8rem 1.5rem;
  }

  .bev-card::after { display: none; }

  .bev-card img {
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
  }

  .bev-info { padding: 1rem 0 0; }
  .bev-info p { max-width: 100%; margin: 0 auto; }
  .bev-info::after { display: none; }

  .bev-arrow { margin-top: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .bev-card { opacity: 1; transform: none; }
}
html { visibility: visible; }