:root {
  --primary: #E2B23A;
  --dark: #1C1C1C;
  --bg: #F5F3EC;

  --surface: #ffffff;
  --border: #ddd;
  --muted: #666;
  --danger: #e53935;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 6px rgba(0,0,0,.08);
  --shadow-md: 0 6px 20px rgba(0,0,0,.12);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--dark);

  display: flex;
  flex-direction: column;
}

/* HLAVNÍ OBSAH VYPLNÍ PROSTOR */
main.container {
  flex: 1;
  width: 100%;
}

/* TYPO */
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* LIGHTBOX – FIX */
.lb {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.85);
}

.lb.hidden {
  display: none !important;
}


.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0 20px;
  flex-wrap: wrap;
}

.page-btn {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #333;
  background: #fff;
  font-weight: 500;
  transition: all .2s ease;
}

.page-btn:hover {
  background: #f2f2f2;
}

.page-btn.active {
  background: #f5b942;
  color: #000;
  border-color: #f5b942;
}

.reservations-list {
  display: grid;
  gap: 16px;
  max-width: 700px;
}

.reservation-card h3 {
  margin: 0;
}

.reservation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status--cekajici {
  background: #fff3cd;
  color: #856404;
}

.status--schvaleno {
  background: #d4edda;
  color: #155724;
}

.status--zamitnuto {
  background: #f8d7da;
  color: #721c24;
}


/* ===============================
   REZERVACE – SPRÁVA
================================ */

.reservations-page {
  max-width: 900px;
  margin: 0 auto;
}

.reservations-list {
  display: grid;
  gap: 16px;
}

.reservation-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reservation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reservation-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

/* ===== STAV ===== */

.reservation-status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status--cekajici {
  background: #fff3cd;
  color: #856404;
}

.status--schvaleno {
  background: #d4edda;
  color: #155724;
}

.status--zamitnuto {
  background: #f8d7da;
  color: #721c24;
}

/* ===== INFO ===== */

.reservation-info {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

/* ===== AKCE ===== */

.reservation-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

/* ===== TLAČÍTKA ===== */

.btn--success {
  background: #2ecc71;
  color: #fff;
}

.btn--success:hover {
  background: #27ae60;
}

.btn--danger {
  background: #e74c3c;
  color: #fff;
}

.btn--danger:hover {
  background: #c0392b;
}

/* ===== MOBILE ===== */

@media (max-width: 640px) {
  .reservation-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .reservation-actions {
    flex-direction: column;
  }
}

.profile-link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.profile-link:hover {
  text-decoration: underline;
}

.offer-link {
  color: inherit;
  text-decoration: none;
}

.offer-link:hover {
  text-decoration: underline;
}
/* ================= COOKIE BANNER ================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  color: var(--bg);
  z-index: 9999;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.email-verify-banner {
  background: #fff3cd;
  border-bottom: 1px solid #ffeeba;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
}
