/* ==========================================================
   HOLSOPPLE BREWING — Master Stylesheet

   COLOR CUSTOMIZATION:
   All brand colors are defined as CSS variables below.
   Change these values to update the entire site's palette.
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Work+Sans:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* ── VULF SANS (local) ── */
@font-face { font-family: 'Druk Condensed'; src: url('fonts/Druk-CondSuper.otf') format('opentype'); font-weight: 950; font-style: normal; }
@font-face { font-family: 'Vulf Sans'; src: url('fonts/VulfSans-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; }
@font-face { font-family: 'Vulf Sans'; src: url('fonts/VulfSans-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; }
@font-face { font-family: 'Vulf Sans'; src: url('fonts/VulfSans-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; }
@font-face { font-family: 'Vulf Sans'; src: url('fonts/VulfSans-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; }
@font-face { font-family: 'Vulf Sans'; src: url('fonts/VulfSans-BoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; }

:root {
  /* ── BRAND COLORS (edit these to retheme) ── */
  --color-bg:          #1a1714;       /* deep warm black            */
  --color-bg-raised:   #242019;       /* slightly lighter surface    */
  --color-bg-card:     #2c2720;       /* card / panel background     */
  --color-bg-input:    #332e26;       /* form input background       */
  --color-border:      #3d372e;       /* subtle border               */
  --color-border-light:#504839;       /* lighter border              */

  --color-accent:      #d4a24e;       /* warm amber/gold — primary   */
  --color-accent-hover:#e0b565;       /* accent hover state          */
  --color-accent-muted:#d4a24e33;     /* accent at low opacity       */

  --color-text:        #e8e0d4;       /* primary text (warm white)   */
  --color-text-muted:  #a89d8e;       /* secondary / muted text      */
  --color-text-dim:    #6b6157;       /* tertiary / placeholder      */

  --color-success:     #6dbf7b;       /* green for "on tap" etc      */
  --color-warning:     #e0a84e;       /* warning / alert             */
  --color-danger:      #c75d5d;       /* error / off / remove        */

  --color-announcement-bg: #d4a24e;   /* announcement bar background */
  --color-announcement-text: #1a1714;/* announcement bar text       */

  /* ── TYPOGRAPHY ── */
  --font-display: 'Vulf Sans', sans-serif;
  --font-heading: 'Vulf Sans', sans-serif;
  --font-body:    'polymath', sans-serif;

  /* ── SPACING & SIZING ── */
  --nav-height: 70px;
  --announcement-height: 42px;
  --max-width: 1200px;
  --radius: 6px;
  --radius-lg: 12px;

  /* ── TRANSITIONS ── */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.3s var(--ease);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-hover); }

img { max-width: 100%; display: block; }

/* ── GRAIN OVERLAY (atmosphere) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--color-announcement-bg);
  color: var(--color-announcement-text);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 100;
  display: none;
}

.announcement-bar.active { display: block; }

.announcement-bar .announcement-text {
  max-width: var(--max-width);
  margin: 0 auto;
}

.announcement-bar .close-announcement {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-announcement-text);
  cursor: pointer;
  font-size: 1.1rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.announcement-bar .close-announcement:hover { opacity: 1; }

/* ── NAVIGATION ── */
nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

nav .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .brand {
  font-family: 'Druk Condensed', var(--font-display);
  font-size: 1.8rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  transition: color var(--transition);
}
nav .brand:hover { color: var(--color-accent); }

nav .brand span {
  color: var(--color-accent);
}

nav .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

nav .nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
}

nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
nav .nav-links a:hover { color: var(--color-text); }
nav .nav-links a:hover::after, nav .nav-links a.active::after { width: 100%; }
nav .nav-links a.active { color: var(--color-accent); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}
.hamburger.open span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ── PAGE CONTAINERS ── */
.page-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: 12px;
}

.page-hero .subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 24px auto;
  border: none;
}

/* ── SECTION STYLES ── */
section {
  padding: 60px 0;
}

section h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

section h2 + p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

/* ── CARDS ── */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-2px);
}

/* ── BEER / TAP CARD (Figma design) ── */
.tap-card {
  --card-bg: #f0eeeb;
  --card-text: #3e2c1e;
  --card-text-muted: #6b5a4e;
  --card-footer-bg: var(--color-accent);
  --card-footer-text: #3e2c1e;

  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.tap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

/* Label image area */
.tap-card .beer-label {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 16px 0 0;
  padding: 0 16px;
}
.tap-card .beer-label-inner {
  width: 100%;
  height: 100%;
  background: #c9453a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tap-card .beer-label-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.tap-card .beer-label-inner .label-placeholder {
  font-family: 'Vulf Sans', var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Beer info area */
.tap-card .beer-info {
  padding: 20px 20px 16px;
  flex: 1;
}

.tap-card .beer-name {
  font-family: 'Vulf Sans', var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--card-text);
  line-height: 1.15;
  margin-bottom: 8px;
}

.tap-card .beer-desc {
  font-family: 'Vulf Sans', var(--font-body);
  font-size: 0.88rem;
  color: var(--card-text-muted);
  line-height: 1.5;
}

/* Gold footer bar with ABV | Style */
.tap-card .beer-footer {
  margin: 0 16px 16px;
  background: var(--card-footer-bg);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid #b8892e;
}

.tap-card .beer-abv {
  font-family: 'Vulf Sans', var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--card-footer-text);
  padding-right: 14px;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
}
.tap-card .beer-abv small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tap-card .beer-footer-divider {
  width: 2px;
  align-self: stretch;
  background: var(--card-footer-text);
  opacity: 0.3;
}

.tap-card .beer-style {
  font-family: 'Vulf Sans', var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--card-footer-text);
  padding-left: 14px;
}

.tap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ── EVENT CARD ── */
.event-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  transition: all var(--transition);
}
.event-card:hover { border-color: var(--color-border-light); }

.event-date-badge {
  text-align: center;
  background: var(--color-accent-muted);
  border-radius: var(--radius);
  padding: 12px 8px;
  align-self: start;
}
.event-date-badge .month {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  font-weight: 600;
}
.event-date-badge .day {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
}

.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.event-info .event-time {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.event-info .event-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-height: 80px;
  overflow-y: auto;
  padding-right: 8px;
}

.event-info .event-desc::-webkit-scrollbar { width: 4px; }
.event-info .event-desc::-webkit-scrollbar-track { background: transparent; }
.event-info .event-desc::-webkit-scrollbar-thumb { background: var(--color-border-light); border-radius: 2px; }

.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── MENU STYLES ── */
.menu-category {
  margin-bottom: 48px;
}
.menu-category h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.menu-item:last-child { border-bottom: none; }

.menu-item-info h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.menu-item-info p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
  margin-left: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}
.btn-primary:hover { background: var(--color-accent-hover); color: var(--color-bg); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
.btn-secondary:hover { background: var(--color-accent-muted); }

.btn-danger {
  background: var(--color-danger);
  color: white;
}
.btn-danger:hover { opacity: 0.85; }

.btn-sm { padding: 6px 14px; font-size: 0.78rem; }

/* ── FORM ELEMENTS ── */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg-input);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px 14px;
  width: 100%;
  transition: border-color var(--transition);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-accent);
}
textarea { resize: vertical; min-height: 80px; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.form-group { margin-bottom: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── TOGGLE SWITCH ── */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.toggle input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 13px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
}
.toggle input:checked + .toggle-slider { background: var(--color-success); }
.toggle input:checked + .toggle-slider::before { transform: translateX(22px); }

/* ── FOOTER ── */
footer {
  padding: 60px 24px 40px;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}
footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Three-column layout: contact left, icon center, hours right */
footer .footer-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

/* Left column — contact info */
footer .footer-contact {
  text-align: left;
}
footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: 20px;
}
footer .footer-brand span {
  color: var(--color-accent);
}
footer .footer-address {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
footer .footer-phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
footer .footer-email {
  font-size: 0.92rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* Right column — hours */
footer .footer-hours {
  text-align: right;
}
footer .footer-hours-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}
footer .hours-row {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 24px;
  padding: 8px 0;
}
footer .hours-days {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
footer .hours-time {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  min-width: 120px;
  text-align: right;
}

/* Footer icon (center column) */
footer .footer-icon {
  text-align: center;
}
footer .footer-svg-icon {
  width: 100px;
  height: auto;
  opacity: 0.6;
}

/* Bottom copyright */
footer .footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-dim);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 768px) {
  footer .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  footer .footer-icon { order: -1; }
  footer .footer-svg-icon { width: 80px; }
  footer .footer-hours { text-align: left; }
  footer .hours-row { justify-content: flex-start; }
  footer .hours-time { text-align: left; }
}

/* ── ADMIN SPECIFIC ── */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--color-bg-raised);
  border-right: 1px solid var(--color-border);
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar .sidebar-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  padding: 0 24px 24px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 16px;
}
.admin-sidebar .sidebar-brand span { color: var(--color-accent); }

.admin-sidebar .sidebar-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-dim);
  padding: 16px 24px 8px;
}

.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
}
.admin-sidebar a:hover { color: var(--color-text); background: var(--color-accent-muted); }
.admin-sidebar a.active { color: var(--color-accent); background: var(--color-accent-muted); border-right: 3px solid var(--color-accent); }

.admin-main {
  padding: 32px 40px;
  overflow-y: auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.admin-header h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.admin-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--color-text-muted);
}

/* Admin table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-dim);
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
}
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--color-bg-raised); }

.admin-table .actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

/* Status badges */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-on { background: rgba(109,191,123,0.15); color: var(--color-success); }
.badge-off { background: rgba(199,93,93,0.15); color: var(--color-danger); }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 90%;
  max-width: 560px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: translateY(0); }

.modal h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-dim);
}
.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}
.empty-state p {
  font-size: 0.95rem;
}

/* ── ANIMATIONS ── */

/* Base fade-in-up (used on page load for hero etc.) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.6s var(--ease) both;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ── SCROLL REVEAL ── */
/* Elements start hidden, observer adds .revealed */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children inside a reveal-group */
.reveal-group .reveal { transition-delay: 0s; }
.reveal-group .reveal:nth-child(1)  { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2)  { transition-delay: 0.08s; }
.reveal-group .reveal:nth-child(3)  { transition-delay: 0.16s; }
.reveal-group .reveal:nth-child(4)  { transition-delay: 0.24s; }
.reveal-group .reveal:nth-child(5)  { transition-delay: 0.32s; }
.reveal-group .reveal:nth-child(6)  { transition-delay: 0.4s; }
.reveal-group .reveal:nth-child(7)  { transition-delay: 0.48s; }
.reveal-group .reveal:nth-child(8)  { transition-delay: 0.56s; }
.reveal-group .reveal:nth-child(9)  { transition-delay: 0.64s; }
.reveal-group .reveal:nth-child(10) { transition-delay: 0.72s; }
.reveal-group .reveal:nth-child(11) { transition-delay: 0.8s; }
.reveal-group .reveal:nth-child(12) { transition-delay: 0.88s; }

/* ── BEER CARD HOVER LIFT ── */
.tap-card {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tap-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    0 8px 16px rgba(0,0,0,0.15),
    0 0 0 1px rgba(212,162,78,0.1);
}
.tap-card:active {
  transform: translateY(-4px) scale(1.005);
  transition-duration: 0.15s;
}

/* Event cards get a lighter version */
.event-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* ── ANNOUNCEMENT BAR SLIDE-IN ── */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.announcement-bar.active {
  display: block;
  animation: slideDown 0.5s var(--ease) both;
}

@keyframes slideUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.announcement-bar.closing {
  animation: slideUp 0.35s var(--ease) both;
}

/* ── MOBILE MENU (full-screen overlay, outside nav stacking context) ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-bottom: 120px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  display: block;
  padding: 28px 20px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--color-accent); }
.mobile-menu a.active { color: var(--color-accent); }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.mobile-menu-close:hover { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .mobile-menu { display: flex; }
  nav { position: relative; }
  nav .nav-links { display: none !important; }
  .hamburger { display: flex; position: fixed; top: 18px; right: 20px; z-index: 10001; }

  .tap-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 64px 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }

  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: fixed;
    left: -260px;
    top: 0;
    width: 260px;
    z-index: 100;
    transition: left var(--transition);
  }
  .admin-sidebar.open { left: 0; }
  .admin-main { padding: 24px 16px; }
  .admin-header { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .page-hero { padding: 48px 0 24px; }
  .tap-card { flex-direction: column; gap: 12px; }
  .menu-item { flex-direction: column; gap: 4px; }
  .menu-item-price { margin-left: 0; }
}
