/*
Theme Name: Garrison Gaming Hub
Theme URI: https://garrisongaminghub.com
Author: OWL
Author URI: https://garrisongaminghub.com
Description: Custom WordPress theme for Garrison Gaming Hub — seat booking system with dark/light theme support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: garrison-gaming-hub
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme is built for the Garrison Gaming Hub seat booking system.
*/

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.theme-toggle:hover {
  border-color: var(--red);
  box-shadow: 0 2px 12px var(--red-glow);
}

@media (max-width: 600px) {
  .theme-toggle {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --red: #b40000;
  --red-dark: #780000;
  --red-darker: #5a0000;
  --red-light: #d42a2a;
  --red-glow: rgba(180, 0, 0, 0.15);
  --red-glow-strong: rgba(180, 0, 0, 0.25);
  --blue: #001e5a;
  --blue-dark: #001030;
  --blue-darker: #000a1e;
  --blue-light: #1a3a8a;
  --blue-glow: rgba(0, 30, 90, 0.15);
  --blue-accent: #1a40a0;
  --gold: #c4a030;
  --gold-dark: #a08020;
  --gold-glow: rgba(196, 160, 48, 0.2);
  --white: #ffffff;
  --off-white: #f0f0f0;
  --bg-primary: #f0f0f0;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f5f5;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a5e;
  --text-muted: #8a8a9e;
  --border: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(180, 0, 0, 0.35);
  --glass: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.08);
  --logo-backdrop: rgba(255, 255, 255, 0.6);
  --logo-backdrop-border: rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Background grid */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(rgba(180,0,0,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,0,0,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: -15%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,0,0,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 15px); }
}

.app-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
}

/* ===== HEADER ===== */
.header {
  text-align: center;
  padding: 28px 16px 24px;
  position: relative;
}

.logo-img {
  max-width: 300px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.logo-backdrop {
  display: inline-block;
  padding: 18px 28px;
  border-radius: 16px;
  background: var(--logo-backdrop);
  border: 1px solid var(--logo-backdrop-border);
  margin-bottom: 6px;
  max-width: 100%;
  box-sizing: border-box;
}

/* WordPress custom logo support */
.header .custom-logo {
  max-width: 300px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.header .custom-logo-link {
  display: inline-block;
  max-width: 100%;
}

.header-tagline {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 5px;
  text-transform: uppercase;
}

.header-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), var(--blue-accent), transparent);
  margin: 14px auto 0;
}

/* ===== MAIN LAYOUT ===== */
.main-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  margin-top: 16px;
  align-items: start;
}

/* ===== CARDS ===== */
.card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), var(--blue-accent), transparent);
  opacity: 0.4;
}

.card-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red-glow);
  flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.stat-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  flex: 1;
  min-width: 0;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-available-dot { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.4); }
.stat-booked-dot { background: var(--red-light); box-shadow: 0 0 6px var(--red-glow); }
.stat-selected-dot { background: var(--gold); box-shadow: 0 0 6px var(--gold-glow); }

/* ===== SCREEN BAR ===== */
.screen-bar {
  background: linear-gradient(180deg, rgba(0,30,90,0.08), rgba(0,30,90,0.02));
  border: 1px solid rgba(0,30,90,0.15);
  border-radius: 6px 6px 50% 50% / 6px 6px 16px 16px;
  padding: 8px;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  color: var(--blue-accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.screen-bar::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,30,90,0.2), transparent);
}

/* ===== SEAT GRID ===== */
.seat-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.seat-row {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-shrink: 0;
}

.row-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.55rem;
  color: var(--text-muted);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.seat {
  width: 38px;
  height: 38px;
  border-radius: 7px 7px 3px 3px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 600;
  border: 1px solid transparent;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
}

.seat:active { transform: scale(0.92); }

.seat-available {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
  color: #16a34a;
}

.seat-available:hover, .seat-available:active {
  background: rgba(34, 197, 94, 0.22);
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.12);
}

.seat-selected {
  background: rgba(180, 0, 0, 0.15);
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 14px var(--red-glow);
}

.seat-booked {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}

.seat-vip {
  background: rgba(196, 160, 48, 0.1);
  border-color: rgba(196, 160, 48, 0.35);
  color: #a08020;
}

.seat-vip:hover, .seat-vip:active {
  background: rgba(196, 160, 48, 0.22);
  border-color: rgba(196, 160, 48, 0.55);
  box-shadow: 0 0 12px var(--gold-glow);
}

.seat-vip.seat-selected {
  background: rgba(180, 0, 0, 0.15);
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 14px var(--red-glow);
}

.seat-premium {
  background: rgba(0, 30, 90, 0.06);
  border-color: rgba(0, 30, 90, 0.2);
  color: var(--blue);
}

.seat-premium:hover, .seat-premium:active {
  background: rgba(0, 30, 90, 0.14);
  border-color: rgba(0, 30, 90, 0.4);
  box-shadow: 0 0 12px var(--blue-glow);
}

.seat-premium.seat-selected {
  background: rgba(180, 0, 0, 0.15);
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 14px var(--red-glow);
}

/* ===== LEGEND ===== */
.legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  color: var(--text-secondary);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.legend-available { background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.35); }
.legend-selected { background: rgba(180,0,0,0.15); border: 1px solid var(--red); }
.legend-booked { background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.1); }
.legend-vip { background: rgba(196,160,48,0.15); border: 1px solid rgba(196,160,48,0.4); }
.legend-premium { background: rgba(0,30,90,0.1); border: 1px solid rgba(0,30,90,0.3); }

/* ===== SIDEBAR ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== DATE PICKER ===== */
.date-selector {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.date-selector::-webkit-scrollbar { display: none; }

.date-chip {
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  min-width: 52px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.date-chip:hover, .date-chip:active {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.date-chip.active {
  background: rgba(180, 0, 0, 0.08);
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
}

.date-chip .day-name {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

.date-chip .day-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== TIME SLOTS ===== */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.time-slot {
  padding: 9px 6px;
  border-radius: 7px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.time-slot:hover, .time-slot:active {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.time-slot.active {
  background: rgba(180, 0, 0, 0.08);
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
}

/* ===== BOOKING SUMMARY ===== */
.booking-summary {
  background: rgba(0, 30, 90, 0.03);
  border: 1px solid rgba(0, 30, 90, 0.1);
  border-radius: 10px;
  padding: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.summary-price {
  font-family: 'Orbitron', sans-serif;
  color: var(--gold);
}

.selected-seats-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.selected-seat-tag {
  background: rgba(180, 0, 0, 0.08);
  border: 1px solid rgba(180, 0, 0, 0.2);
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 0.6rem;
  color: var(--red);
  font-weight: 500;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 12px;
}

.form-label {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  transition: all 0.15s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(180, 0, 0, 0.08);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* ===== BUTTONS ===== */
.btn {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 4px 16px var(--red-glow);
}

.btn-primary:hover, .btn-primary:active {
  box-shadow: 0 6px 24px var(--red-glow-strong);
}

.btn-primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-danger {
  background: rgba(180, 0, 0, 0.06);
  color: var(--red);
  border: 1px solid rgba(180, 0, 0, 0.15);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 9px;
  margin-top: 8px;
}

.btn-danger:hover, .btn-danger:active {
  background: rgba(180, 0, 0, 0.12);
}

/* ===== BOOKINGS LIST ===== */
.bookings-list {
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.booking-info {
  font-size: 0.75rem;
  min-width: 0;
  flex: 1;
}

.booking-info .booking-seats {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-info .booking-time {
  color: var(--text-secondary);
  font-size: 0.62rem;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.booking-cancel {
  background: rgba(180, 0, 0, 0.06);
  border: 1px solid rgba(180, 0, 0, 0.15);
  color: var(--red);
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.62rem;
  transition: all 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}

.booking-cancel:hover, .booking-cancel:active {
  background: rgba(180, 0, 0, 0.12);
}

.empty-state {
  text-align: center;
  padding: 24px 16px;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalIn 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.modal-text {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.modal-btn {
  padding: 11px 28px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-btn:hover, .modal-btn:active {
  box-shadow: 0 4px 20px var(--red-glow);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(180, 0, 0, 0.25); border-radius: 3px; }

/* ===== FOOTER ===== */
.footer {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.footer-col .widget-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 6px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.15s;
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.15s;
}

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

/* ===== WORDPRESS DEFAULTS ===== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Content area for blog/archive pages */
.content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
}

.site-main {
  max-width: 800px;
}

.entry-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.entry-content {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.entry-content a {
  color: var(--red);
  text-decoration: none;
}

.entry-content a:hover {
  text-decoration: underline;
}

/* Sidebar */
.widget-area {
  margin-top: 40px;
}

.widget {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}

.widget-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Pagination */
.pagination {
  margin-top: 32px;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  margin-right: 6px;
  transition: all 0.15s;
}

.pagination a:hover,
.pagination .current {
  border-color: var(--red);
  color: var(--red);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  .main-content {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .sidebar .card:first-child { grid-column: 1 / -1; }
  .sidebar .card:nth-child(4) { grid-column: 1 / -1; }
  .sidebar .card:last-child { grid-column: 1 / -1; }

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

  .logo-img { max-width: 250px; width: 75%; }
  .logo-backdrop { padding: 14px 22px; }
}

/* Mobile */
@media (max-width: 600px) {
  html { font-size: 15px; }

  .app-container { padding: 10px; }

  .header { padding: 20px 12px 18px; }

  .logo-img { max-width: 200px; width: 70%; }

  .logo-backdrop { padding: 12px 18px; border-radius: 12px; }

  .header-tagline { font-size: 0.55rem; letter-spacing: 3px; }

  .header-divider { width: 70px; margin: 12px auto 0; }

  .main-content { gap: 12px; margin-top: 10px; }

  .card { padding: 14px; border-radius: 12px; }

  .card-title { font-size: 0.65rem; margin-bottom: 12px; }

  .sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .seat { width: 32px; height: 32px; font-size: 0.48rem; border-radius: 5px 5px 2px 2px; }

  .seat-row { gap: 4px; }

  .row-label { width: 14px; font-size: 0.48rem; }

  .seat-grid { gap: 5px; }

  .legend { gap: 10px; }

  .legend-item { font-size: 0.52rem; }

  .legend-dot { width: 8px; height: 8px; }

  .stat-chip { padding: 6px 8px; font-size: 0.6rem; }

  .date-chip { padding: 6px 9px; min-width: 44px; }

  .date-chip .day-num { font-size: 0.78rem; }

  .time-slots { grid-template-columns: repeat(3, 1fr); gap: 5px; }

  .time-slot { padding: 8px 4px; font-size: 0.6rem; }

  .form-input { padding: 10px 11px; font-size: 0.85rem; }

  .btn { padding: 12px; font-size: 0.68rem; }

  .booking-item { padding: 10px; }

  .booking-info { font-size: 0.68rem; }

  .booking-cancel { padding: 4px 8px; font-size: 0.55rem; }

  .modal { padding: 28px 20px; }

  .modal-title { font-size: 0.95rem; }

  .modal-text { font-size: 0.72rem; }

  .footer-widgets {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .seat { width: 28px; height: 28px; font-size: 0.42rem; }

  .seat-row { gap: 3px; }

  .row-label { width: 12px; font-size: 0.42rem; }

  .logo-img { max-width: 170px; width: 65%; }

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

/* Large screens */
@media (min-width: 1400px) {
  .app-container { max-width: 1320px; }

  .seat { width: 46px; height: 46px; font-size: 0.65rem; }

  .seat-row { gap: 8px; }
}
