/* ============================================================
   DAVIE KAVA — Cyberpunk Theme
   Mobile-first stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   CSS VARIABLES
   ------------------------------------------------------------ */
:root {
  --bg:           #020408;
  --bg2:          #060d14;
  --bg3:          #0a1520;
  --card:         rgba(0, 245, 255, 0.04);
  --border:       rgba(0, 245, 255, 0.12);
  --border-hot:   rgba(0, 245, 255, 0.35);

  --neon-cyan:    #00f5ff;
  --neon-pink:    #ff006e;
  --neon-purple:  #7b2fff;
  --neon-yellow:  #ffe600;
  --neon-green:   #00ff88;

  --text:         #c8d8e8;
  --text-dim:     #4a6070;
  --text-bright:  #ffffff;

  --font-display: 'Orbitron', monospace;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'Rajdhani', sans-serif;

  --nav-height:   64px;
  --radius:       2px;

  --shadow-cyan:  0 0 20px rgba(0, 245, 255, 0.2);
  --shadow-pink:  0 0 20px rgba(255, 0, 110, 0.2);
  --shadow-glow:  0 0 40px rgba(0, 245, 255, 0.15);

  --transition:   0.25s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ------------------------------------------------------------
   GLOBAL OVERLAYS
   ------------------------------------------------------------ */

/* Scanlines */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.07) 2px,
    rgba(0, 0, 0, 0.07) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* Grid background */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* ------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-bright);
  line-height: 1.1;
}

p { line-height: 1.7; }

.mono {
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-pink);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--text-bright);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.container {
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}

section {
  position: relative;
  z-index: 1;
}

.section-pad {
  padding: 4rem 1.25rem;
}

/* ------------------------------------------------------------
   NAVIGATION — Mobile First
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem;
  background: rgba(2, 4, 8, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu drawer */
.nav-drawer {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(2, 4, 8, 0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.25rem 2rem;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 999;
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
}

.nav-drawer a {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-drawer a:last-child { border-bottom: none; }

.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-height) + 2rem) 1.25rem 2.5rem;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(123, 47, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 245, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 90% 80%, rgba(255, 0, 110, 0.06) 0%, transparent 60%);
  z-index: 0;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-carousel-slide.active { opacity: 1; }

.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.25) saturate(0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--neon-pink);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--neon-pink);
  box-shadow: 0 0 6px var(--neon-pink);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 12vw, 8rem);
  line-height: 0.9;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero h1 .accent {
  display: block;
  color: var(--neon-cyan);
  text-shadow: 0 0 30px var(--neon-cyan), 0 0 60px rgba(0, 245, 255, 0.25);
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  max-width: 340px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 24px;
  height: 2px;
  background: var(--text-dim);
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--neon-cyan);
  box-shadow: 0 0 6px var(--neon-cyan);
  width: 40px;
}

/* ------------------------------------------------------------
   TICKER
   ------------------------------------------------------------ */
.ticker {
  position: relative;
  z-index: 2;
  background: var(--neon-pink);
  padding: 0.6rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  font-weight: bold;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: transparent;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.1), inset 0 0 15px rgba(0, 245, 255, 0.04);
}

.btn-primary:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: var(--shadow-cyan), inset 0 0 20px rgba(0, 245, 255, 0.08);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.btn-secondary:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: var(--shadow-pink);
}

.btn-full { width: 100%; }

/* ------------------------------------------------------------
   CARDS
   ------------------------------------------------------------ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  transition: height 0.3s ease;
}

.card:hover {
  border-color: var(--border-hot);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.card:hover::before { height: 100%; }

/* ------------------------------------------------------------
   EVENTS
   ------------------------------------------------------------ */
.events-section {
  background: var(--bg2);
  padding: 4rem 1.25rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.event-card {
  background: var(--bg2);
  padding: 1.5rem;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  transition: height 0.3s ease;
}

.event-card:hover { background: var(--card); }
.event-card:hover::before { height: 100%; }

.event-day {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--neon-yellow);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.event-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.3rem;
}

.event-time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.event-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ------------------------------------------------------------
   MENU PREVIEW
   ------------------------------------------------------------ */
.menu-section {
  padding: 4rem 1.25rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.menu-card {
  background: var(--bg);
  padding: 1.5rem 1.25rem;
  transition: background var(--transition);
}

.menu-card:hover { background: var(--card); }

.menu-cat-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--neon-purple);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.menu-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.menu-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--neon-cyan);
}

/* ------------------------------------------------------------
   GALLERY
   ------------------------------------------------------------ */
.gallery-section {
  padding: 4rem 1.25rem;
  background: var(--bg2);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.7) brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 245, 255, 0.08);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   SPECIALS
   ------------------------------------------------------------ */
.specials-section {
  padding: 4rem 1.25rem;
}

.specials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.special-card {
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.special-card:hover {
  border-color: var(--neon-purple);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(123, 47, 255, 0.15);
}

.special-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
  transition: filter var(--transition);
}

.special-card:hover .special-img {
  filter: saturate(1) brightness(0.95);
}

.special-body { padding: 1.25rem; }

.special-validity {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--neon-purple);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.special-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.special-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   INFO BAR
   ------------------------------------------------------------ */
.info-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.info-bar-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.info-item {
  padding: 2rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

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

.info-item-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--neon-pink);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.info-item-value {
  font-size: 1rem;
  color: var(--text-bright);
  font-weight: 600;
  line-height: 1.8;
}

.info-item-value a {
  color: var(--neon-cyan);
  transition: text-shadow var(--transition);
}

.info-item-value a:hover {
  text-shadow: 0 0 10px var(--neon-cyan);
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--neon-cyan); }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.footer-social a:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: var(--shadow-cyan);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ------------------------------------------------------------
   FORMS — Admin & Contact
   ------------------------------------------------------------ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--neon-pink);
  letter-spacing: 1px;
  margin-top: 0.35rem;
}

/* ------------------------------------------------------------
   ALERT / FLASH MESSAGES
   ------------------------------------------------------------ */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid;
}

.alert-success {
  background: rgba(0, 255, 136, 0.06);
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.alert-error {
  background: rgba(255, 0, 110, 0.06);
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

/* ------------------------------------------------------------
   PAGE HEADER (inner pages)
   ------------------------------------------------------------ */
.page-header {
  padding: calc(var(--nav-height) + 3rem) 1.25rem 2.5rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(123, 47, 255, 0.1) 0%, transparent 60%);
}

.page-header .label { margin-bottom: 0.5rem; }

.page-header h1 {
  font-size: clamp(2rem, 8vw, 4.5rem);
  position: relative;
}

/* ------------------------------------------------------------
   LIGHTBOX
   ------------------------------------------------------------ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 8, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid var(--border);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition);
}

.lightbox-close:hover { color: var(--neon-pink); }

/* ------------------------------------------------------------
   UTILITY CLASSES
   ------------------------------------------------------------ */
.text-cyan    { color: var(--neon-cyan); }
.text-pink    { color: var(--neon-pink); }
.text-yellow  { color: var(--neon-yellow); }
.text-purple  { color: var(--neon-purple); }
.text-dim     { color: var(--text-dim); }
.text-bright  { color: var(--text-bright); }
.text-center  { text-align: center; }

.glow-cyan  { text-shadow: 0 0 15px var(--neon-cyan); }
.glow-pink  { text-shadow: 0 0 15px var(--neon-pink); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.divider {
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  margin: 2rem 0;
  opacity: 0.4;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------------------------------------
   GLITCH EFFECT
   ------------------------------------------------------------ */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}

.glitch::before {
  color: var(--neon-pink);
  animation: glitch-1 5s infinite;
  opacity: 0.5;
}

.glitch::after {
  color: var(--neon-cyan);
  animation: glitch-2 5s infinite reverse;
  opacity: 0.5;
}

@keyframes glitch-1 {
  0%, 90%, 100% { clip-path: inset(100% 0 0 0); transform: translate(0); }
  91%            { clip-path: inset(20% 0 60% 0); transform: translate(-3px); }
  93%            { clip-path: inset(60% 0 20% 0); transform: translate(3px); }
  95%            { clip-path: inset(40% 0 40% 0); transform: translate(-2px); }
  97%            { clip-path: inset(80% 0 5%  0); transform: translate(2px); }
}

@keyframes glitch-2 {
  0%, 88%, 100% { clip-path: inset(100% 0 0 0); transform: translate(0); }
  89%           { clip-path: inset(50% 0 30% 0); transform: translate(3px); }
  91%           { clip-path: inset(10% 0 80% 0); transform: translate(-3px); }
  93%           { clip-path: inset(70% 0 10% 0); transform: translate(2px); }
}

/* ------------------------------------------------------------
   TABLET — 640px+
   ------------------------------------------------------------ */
@media (min-width: 640px) {
  .container      { padding: 0 2rem; }
  .section-pad    { padding: 5rem 2rem; }

  .events-grid    { grid-template-columns: repeat(2, 1fr); }
  .specials-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-columns: repeat(3, 1fr); }

  .info-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .info-item      { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .info-item:nth-child(2n) { border-right: none; }

  .hero-actions   { flex-direction: row; }
}

/* ------------------------------------------------------------
   DESKTOP — 1024px+
   ------------------------------------------------------------ */
@media (min-width: 1024px) {
  .container      { max-width: 1200px; padding: 0 3rem; margin: 0 auto; }
  .section-pad    { padding: 6rem 3rem; }

  /* Nav */
  .nav            { padding: 0 3rem; }
  .nav-toggle     { display: none; }
  .nav-links {
    display: flex;
    gap: 2.5rem;
  }

  .nav-links a {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color var(--transition), text-shadow var(--transition);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
  }

  /* Hero */
  .hero           { padding: calc(var(--nav-height) + 4rem) 3rem 4rem; }
  .hero h1        { font-size: clamp(5rem, 10vw, 9rem); }
  .hero-sub       { font-size: 1.1rem; max-width: 420px; }

  /* Events */
  .events-section { padding: 6rem 3rem; }
  .events-grid    { grid-template-columns: repeat(3, 1fr); }

  /* Menu */
  .menu-section   { padding: 6rem 3rem; }
  .menu-grid      { grid-template-columns: repeat(4, 1fr); }

  /* Gallery */
  .gallery-section { padding: 6rem 3rem; }
  .gallery-grid   { grid-template-columns: repeat(4, 1fr); }

  /* Specials */
  .specials-section { padding: 6rem 3rem; }
  .specials-grid  { grid-template-columns: repeat(3, 1fr); }

  /* Info bar */
  .info-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .info-item      { padding: 2.5rem 3rem; border-bottom: none; border-right: 1px solid var(--border); }
  .info-item:last-child { border-right: none; }

  /* Footer */
  .footer         { padding: 4rem 3rem 2.5rem; }
  .footer-top     { flex-direction: row; justify-content: space-between; align-items: flex-start; }

  /* Page header */
  .page-header    { padding: calc(var(--nav-height) + 4rem) 3rem 3rem; }
}

/* ------------------------------------------------------------
   LARGE DESKTOP — 1280px+
   ------------------------------------------------------------ */
@media (min-width: 1280px) {
  .container      { max-width: 1400px; }
  .events-grid    { grid-template-columns: repeat(4, 1fr); }
}

/* ------------------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track   { animation: none; }
}
