/* ============================================
   メニューページ共通スタイル
   drinks-menu.html / menu-detail.html
   ============================================ */

/* ===== SUBPAGE HEADER ===== */
.subpage-header {
  background: rgba(250, 244, 232, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(59, 31, 94, 0.10);
  position: sticky !important;
  top: 0;
}

.subpage-header .logo-jp { color: var(--purple-mid) !important; }
.subpage-header .logo-name { color: var(--purple-deep) !important; text-shadow: none !important; }
.subpage-header .nav-link { color: var(--text-mid) !important; }
.subpage-header .nav-link:hover { color: var(--purple-main) !important; }
.subpage-header .nav-link::after { background: var(--purple-main) !important; }
.subpage-header .hamburger span { background: var(--purple-deep) !important; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drinks-hero {
  background: linear-gradient(135deg, var(--purple-deep) 0%, #2a1248 40%, #4a1a6e 100%);
}

.food-hero {
  background: linear-gradient(135deg, #2c1a3e 0%, var(--purple-deep) 40%, #5C3385 100%);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(168, 123, 200, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

/* 和風の幾何学装飾 */
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  animation: heroFadeIn 0.9s ease forwards;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 16px 0 12px;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.page-hero-sub {
  font-size: 0.9rem;
  color: var(--purple-pale);
  letter-spacing: 0.2em;
}

.page-hero-scroll {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}

/* ===== MAIN CONTENT ===== */
.menu-main {
  background: var(--cream-light);
  padding: 72px 0 100px;
}

/* ===== SEASONAL NOTE ===== */
.menu-seasonal-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--purple-mist);
  border: 1px solid var(--purple-pale);
  border-left: 4px solid var(--purple-main);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 56px;
}

.seasonal-icon { font-size: 1.4rem; flex-shrink: 0; }

.menu-seasonal-note p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ===== MENU CATEGORY ===== */
.menu-category {
  margin-bottom: 64px;
}

.category-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 184, 232, 0.5);
  position: relative;
}

.category-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.category-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  line-height: 1;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--purple-deep);
  letter-spacing: 0.1em;
  line-height: 1.2;
}

/* ===== DRINK ITEMS (price list style) ===== */
.menu-items {
  background: var(--cream-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 184, 232, 0.4);
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--cream-deep);
  transition: background 0.2s ease;
  position: relative;
}

.menu-item:last-child { border-bottom: none; }

.menu-item:hover { background: var(--purple-mist); }

.item-name {
  font-family: var(--font-serif);
  font-size: 0.97rem;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.item-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--purple-pale) 0,
    var(--purple-pale) 3px,
    transparent 3px,
    transparent 8px
  );
  margin: 0 8px;
  opacity: 0.6;
}

.item-price {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--purple-main);
  flex-shrink: 0;
  letter-spacing: 0.03em;
  min-width: 80px;
  text-align: right;
}

.item-sub .item-name {
  font-size: 0.88rem;
  color: var(--text-light);
}

.item-sub .item-price {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===== CHAMPAGNE SPECIAL ===== */
.champagne-category {
  background: none;
}

.champagne-item {
  background: linear-gradient(to right, rgba(201, 168, 76, 0.04), transparent);
}

.champagne-item:hover {
  background: linear-gradient(to right, rgba(201, 168, 76, 0.10), var(--purple-mist)) !important;
}

.champagne-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.champagne-brand {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.champagne-detail .item-name {
  font-size: 0.92rem;
}

/* ===== FOOD GRID ===== */
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 184, 232, 0.4);
}

.food-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 18px 22px;
  background: var(--cream-white);
  border-right: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  cursor: default;
}

.food-item:hover {
  background: var(--purple-mist);
  z-index: 1;
}

.food-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ===== PREMIUM ITEMS ===== */
.premium-category .category-header::after {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.premium-item {
  background: linear-gradient(to right, rgba(201, 168, 76, 0.06), transparent) !important;
}

.premium-item:hover {
  background: linear-gradient(to right, rgba(201, 168, 76, 0.12), var(--purple-mist)) !important;
}

.premium-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ===== NOTE BLOCK ===== */
.menu-note-block {
  margin-top: 72px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-main));
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-deep);
}

.menu-note-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream-main);
  line-height: 2.2;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

/* Instagram text link with underline */
.ig-text-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-decoration-color: rgba(232, 201, 122, 0.6);
  text-underline-offset: 4px;
  font-weight: 500;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.ig-text-link:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}

.menu-note-block .btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.menu-note-block .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .page-hero { height: 300px; }
  .page-hero-scroll { display: none; }
  .menu-main { padding: 48px 0 72px; }
  .menu-category { margin-bottom: 48px; }
  .menu-item { padding: 14px 16px; flex-wrap: wrap; }
  .item-dots { display: none; }
  .item-name { flex: 1; }
  .item-price { text-align: right; }

  .food-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .food-item { padding: 14px 16px; }
  .food-name { font-size: 0.88rem; }

  .menu-note-block { padding: 40px 24px; }
  .menu-note-text { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .food-grid {
    grid-template-columns: 1fr 1fr;
  }
  .food-name { font-size: 0.82rem; }
  .champagne-detail .item-name { font-size: 0.82rem; }
  .menu-note-block .btn { font-size: 0.82rem; padding: 12px 20px; }
}
