@import url("https://fonts.googleapis.com/css2?family=Anton&family=Hanken+Grotesk:wght@300;400;500;600;700&display=swap");

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

:root {
  --primary: #c80000;
  --primary-dark: #9a0000;
  --secondary: #000000;
  --tertiary: #ffffff;
  --neutral: #8c716c;
  --bg-light: #fff5f5;
  --bg-card: #ffffff;
  --border: #e8d5d5;
  --text-main: #1a1a1a;
  --text-muted: #6b6b6b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Hanken Grotesk", sans-serif;
  background: var(--tertiary);
  color: var(--text-main);
  line-height: 1.5;
}

h1,
h2,
h3,
.font-anton {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.02em;
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #000;
}

.btn-outline-dark {
  background: transparent;
  color: #000;
  border-color: #000;
}
.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}

.btn-secondary {
  background: #000;
  color: #fff;
  border-color: #000;
}
.btn-secondary:hover {
  background: #222;
}

/* ════════════════════════════════════════
   SHARED — seats bar (index + admin)
════════════════════════════════════════ */
.seats-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.seats-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.6s ease;

}

/* ════════════════════════════════════════
   ALERTS
════════════════════════════════════════ */
.alert {
  padding: 13px 18px;
  margin-bottom: 18px;
  font-size: 0.86rem;
  font-weight: 500;
  border-left: 4px solid;
}

.alert-error {
  background: #fff0f0;
  border-color: var(--primary);
  color: #9a0000;
}
.alert-success {
  background: #f0fff4;
  border-color: #16a34a;
  color: #15803d;
}
.alert-info {
  background: #f0f4ff;
  border-color: #3b82f6;
  color: #1d4ed8;
}

.alert ul {
  margin: 6px 0 0 16px;
}
.alert ul li {
  margin: 3px 0;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #000;
  color: rgba(255, 255, 255, 0.55);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: "Anton", sans-serif;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 2px;
}

footer p {
  font-size: 0.78rem;
  margin-top: 3px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    gap: 16px;
  }
}
