/* ========================================
   RULES SECTION (ANGELS PAGE)
======================================== */
.rules-section {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 2.5rem 0;
  padding: 0 16px;
}
.rules-container {
  background: linear-gradient(120deg, rgba(0,184,212,0.10) 0%, rgba(10,18,21,0.85) 100%);
  border: 1.5px solid var(--cyan);
  border-radius: var(--radius);
  padding: 2rem 2.5rem 2.5rem 2.5rem;
  max-width: 600px;
  box-shadow: var(--shadow);
  text-align: left;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.rules-container h3 {
  margin-top: 0;
  color: var(--cyan);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-family: "Unica One", system-ui, sans-serif;
  text-shadow: 0 2px 8px rgba(0,184,212,0.10);
  text-align: center;
}
.rules-container h4 {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}
.rules-container p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  background: none;
}

@media (max-width: 700px) {
  .rules-container {
    padding: 1.2rem 1rem 1.7rem 1rem;
  }
}
/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
======================================== */
:root {
  /* Colors */
  --bg: #07090b;
  --panel: #0b1114; /* near-black */
  --ink: #d9f0f5; /* soft ice text */
  --muted: #9acbd4; /* muted cyan */
  --cyan: #00b8d4; /* accent cyan */
  --accent: #ea00ff; /* bright cyan */
  --deep: #04262c; /* deep cyan */
  --glass: rgba(6, 15, 18, 0.55);
  
  /* Effects */
  --ring: 0 0 0 2px rgba(0, 184, 212, 0.35), 0 0 30px rgba(0, 184, 212, 0.15) inset;
  --radius: 18px;
  --shadow: 0 8px 35px rgba(0, 184, 212, 0.08), 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 10% -10%, rgba(0, 184, 212, 0.06), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(0, 184, 212, 0.07), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

ul {
  margin: 8px 0 0 18px;
}

/* ========================================
   LAYOUT UTILITIES
======================================== */
.container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 0 20px;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: linear-gradient(180deg, rgba(7, 9, 11, 0.9), rgba(7, 9, 11, 0.75));
  border-bottom: 1px solid rgba(0, 184, 212, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, #04181c, #0a2a31);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.brand-badge svg {
  width: 22px;
  height: 22px;
  fill: var(--cyan);
}

.wordmark {
  font-family: "Unica One", system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: 1.5px;
}

nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--ink);
}

nav a.active {
  background: linear-gradient(90deg, rgba(0,184,212,0.18), rgba(0,184,212,0.08));
  color: var(--cyan);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,184,212,0.10);
}

nav a:hover {
  background: rgba(0, 184, 212, 0.08);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 60;
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--cyan);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(7, 9, 11, 0.98), rgba(11, 17, 20, 0.98));
    backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid rgba(0, 184, 212, 0.12);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 16px 20px;
  }

  nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 8px;
    width: 100%;
  }

  nav a.active {
    background: linear-gradient(90deg, rgba(0,184,212,0.15), rgba(0,184,212,0.05));
  }
}

.cta {
  background: linear-gradient(180deg, #08343c, #052228);
  border: 1px solid rgba(0, 184, 212, 0.35);
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(0, 184, 212, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 60%);
}

.pool {
  position: absolute;
  inset: auto 0 0 0;
  height: 480px;
  background:
    radial-gradient(800px 260px at 50% 10%, rgba(0, 184, 212, 0.45), rgba(0, 184, 212, 0.08) 60%, transparent 75%),
    linear-gradient(180deg, rgba(0, 184, 212, 0.18), rgba(0, 184, 212, 0));
  filter: blur(18px);
  opacity: 0.55;
}

.hero-inner {
  padding: 70px 0 40px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0, 184, 212, 0.08);
  border: 1px solid rgba(0, 184, 212, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
}

.title {
  font-family: "Unica One", serif;
  font-size: clamp(36px, 7vw, 76px);
  line-height: 0.95;
  margin: 6px 0 8px;
}

.subtitle {
  color: #cbe8ee;
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* ========================================
   BUTTONS & INTERACTIVE ELEMENTS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0, 184, 212, 0.28);
  background: linear-gradient(180deg, #0a1c20, #071316);
  box-shadow: var(--shadow);
}

.btn .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 184, 212, 0.9);
}

.btn.primary {
  box-shadow: 0 0 0 2px rgba(0, 184, 212, 0.18), 0 10px 40px rgba(0, 184, 212, 0.2);
}

/* ========================================
   CARDS & CONTENT SECTIONS
======================================== */
.slab {
  background: linear-gradient(180deg, rgba(10, 18, 21, 0.75), rgba(8, 14, 16, 0.75));
  border: 1px solid rgba(0, 184, 212, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}

.hours div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 184, 212, 0.05);
  border: 1px solid rgba(0, 184, 212, 0.12);
}

/* General Sections */
section {
  padding: 50px 0;
}

h2 {
  font-family: "Unica One", serif;
  font-size: clamp(24px, 3.5vw, 40px);
  margin: 0 0 14px;
}

.kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: linear-gradient(180deg, #0b1215, #0a1013);
  border: 1px solid rgba(0, 184, 212, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  height: 100%;
}

.card h3 {
  margin: 8px 0 6px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: #cde7ec;
}

.icon {
  width: 26px;
  height: 26px;
  fill: var(--cyan);
  opacity: 0.9;
}

/* ========================================
   MENU COMPONENTS (Legacy)
======================================== */
.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Legacy menu item layout for simple menus */
.menu .menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.dots {
  flex: 1;
  border-bottom: 1px dotted rgba(0, 184, 212, 0.25);
  margin: 0 8px;
  opacity: 0.7;
}

.rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rule {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 184, 212, 0.05);
  border: 1px solid rgba(0, 184, 212, 0.12);
  color: var(--muted);
}

/* ========================================
   FOOTER
======================================== */
footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(0, 184, 212, 0.12);
  background: linear-gradient(180deg, rgba(10, 16, 18, 0.9), rgba(7, 11, 12, 0.9));
}

.foot {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.2fr 0.8fr;
}

.mono {
  font-feature-settings: "ss01" on, "tnum" on;
  font-variant-numeric: tabular-nums;
}

/* ========================================
   ANIMATIONS & EFFECTS
======================================== */
.mist {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mist span {
  position: absolute;
  width: 35vmax;
  height: 35vmax;
  background: radial-gradient(closest-side, rgba(0, 184, 212, 0.07), transparent 70%);
  filter: blur(18px);
  animation: drift 28s ease-in-out infinite;
  mix-blend-mode: screen;
}

.mist span:nth-child(1) {
  left: -10vmax;
  top: -8vmax;
}

.mist span:nth-child(2) {
  right: -12vmax;
  top: -2vmax;
  animation-duration: 36s;
}

.mist span:nth-child(3) {
  left: 20vmax;
  bottom: -12vmax;
  animation-duration: 40s;
}

@keyframes drift {
  50% {
    transform: translate3d(0, -16px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* ========================================
   FORM ELEMENTS
======================================== */
label {
  display: block;
  margin: 8px 0 12px;
}

.input {
  margin-top: 6px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(0, 184, 212, 0.06);
  border: 1px solid rgba(0, 184, 212, 0.18);
  color: var(--ink);
  outline: none;
}

.input:focus {
  box-shadow: var(--ring);
}

/* ========================================
   MENU PAGE STYLES
======================================== */
.menu-page {
  padding: 20px 0;
}

.menu-page h1 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: var(--cyan);
}

/* Menu Grid Layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  max-width: 1400px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
  gap: 25px;
}

/* Limit to maximum 2 columns */
@supports (grid-template-columns: subgrid) {
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  }
}

@media (min-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Menu Sections */
.menu-section {
  background: linear-gradient(180deg, #0b1215, #0a1013);
  border: 1px solid rgba(0, 184, 212, 0.16);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow);
  height: fit-content;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.menu-section:hover {
  box-shadow: 0 0 0 2px rgba(0, 184, 212, 0.18), 0 10px 40px rgba(0, 184, 212, 0.2);
  transform: translateY(-2px);
}

.menu-section h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  font-family: "Unica One", system-ui, sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,184,212,0.10);
  background: linear-gradient(90deg, rgba(0,184,212,0.10), transparent 80%);
  padding: 2.2rem 3rem;
  border-bottom: none;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  padding: 0 3rem 2.2rem 3rem;
  margin-top: 1rem;
}

/* Full Width Section Styles */
.menu-section-full {
  max-width: 1400px;
  margin: 0 auto 40px auto;
  
  background: linear-gradient(180deg, #0b1215, #0a1013);
  border: 1px solid rgba(0, 184, 212, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.menu-section-full:hover {
  box-shadow: 0 0 0 2px rgba(0, 184, 212, 0.18), 0 10px 40px rgba(0, 184, 212, 0.2);
  transform: translateY(-2px);
}

.menu-section-full h2 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan);
  font-family: "Unica One", system-ui, sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,184,212,0.10);
  background: linear-gradient(90deg, rgba(0,184,212,0.10), transparent 80%);
  padding: 2.2rem 3rem;
}

.menu-items-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 3rem 2.2rem 3rem;
  margin-top: 1rem;
}

/* Menu Item Styles */
.menu-item {
  background: rgba(0, 184, 212, 0.05);
  border: 1px solid rgba(0, 184, 212, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.2s ease;
}

.menu-item:hover {
  background: rgba(0, 184, 212, 0.10);
  border-color: rgba(0, 184, 212, 0.25);
  box-shadow: 0 4px 18px 0 rgba(0,184,212,0.12);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.item-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink);
  flex: 1;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.price {
  color: var(--accent);
  font-weight: 700;
  font-size: 2rem;
  text-shadow: 0 1px 8px rgba(0,184,212,0.3);
}

.ingredients {
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.description {
  margin: 8px 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cocktail-info, 
.wine-info, 
.special-info, 
.extra-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.garnish-indicator {
  color: var(--cyan);
  font-size: 0.75rem;
}

.limited-badge {
  background: var(--cyan);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Special Menu Items */
.menu-item.special {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 2px 12px rgba(255, 215, 0, 0.1);
}

.menu-item.special:hover {
  background: rgba(255, 215, 0, 0.08);
  box-shadow: 0 4px 18px 0 rgba(255, 215, 0, 0.15);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .menu {
    grid-template-columns: 1fr;
  }
  
  .hours {
    grid-template-columns: 1fr;
  }
  
  .foot {
    grid-template-columns: 1fr;
  }

  /* Menu Page Responsive */
  .menu-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .menu-page h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .menu-section {
    min-height: auto;
  }

  .menu-section h2,
  .menu-section-full h2 {
    padding: 1.5rem 2rem;
    font-size: 1.8rem;
  }

  .menu-items {
    padding: 0 2rem 1.5rem 2rem;
  }

  .menu-items-horizontal {
    grid-template-columns: 1fr;
    padding: 0 2rem 1.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .menu-grid {
    padding: 0 15px;
  }

  .menu-section h2,
  .menu-section-full h2 {
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
  }

  .menu-items {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }

  .menu-section-full {
    padding: 0 15px;
  }

  .menu-items-horizontal {
    padding: 0 1.5rem 1.2rem 1.5rem;
  }
}
