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

:root {
  --ink: #0f0e0c;
  --paper: #faf8f4;
  --accent: #c8873a;
  --accent2: #2d6a4f;
  --soft: #e8e3da;
  --muted: #7a7265;
  --red: #d94f4f;
  --green: #3aaa6e;
  --yellow: #f5c842;
  --blue: #3a7ec8;
  --card-bg: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 64px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #c8873a, transparent);
  top: -100px; right: -100px;
  animation: drift 12s ease-in-out infinite alternate;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #3a7ec8, transparent);
  bottom: -80px; left: -80px;
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

.navbar {
  position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: #fff;
}

.logo-icon { font-size: 28px; }

.admin-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
}
.admin-btn:hover { background: rgba(255,255,255,0.2); }

.hero-content {
  position: relative; z-index: 10;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 60px 24px;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 14px; letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 20px 40px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.stat { text-align: center; }
.stat span { display: block; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #fff; }
.stat small { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px; font-weight: 500;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(200,135,58,0.4);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,135,58,0.5); }

/* ─── BOOKING SECTION ─── */
.booking-section {
  padding: 80px 0 120px;
  background: var(--paper);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
}

.mt-lg { margin-top: 60px; }

.legend { display: flex; align-items: center; gap: 16px; font-size: 14px; color: var(--muted); }
.leg { display: flex; align-items: center; gap: 6px; }
.dot {
  width: 12px; height: 12px; border-radius: 3px;
}
.dot.green { background: var(--green); }
.dot.red { background: var(--red); }
.dot.orange { background: #ffb74d; }
.dot.yellow { background: var(--yellow); }

/* ─── SEAT GRID ─── */
.seat-grid-wrapper {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.room-label {
  text-align: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin: 8px 0;
}

.seat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  padding: 16px 0;
}

.seat {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 2px solid transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  user-select: none;
}

.seat.available {
  background: #e8f8ef;
  border-color: #a8e6c0;
  color: var(--accent2);
}
.seat.available:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: scale(1.1);
}
.seat.booked {
  background: #fce8e8;
  border-color: #f0b0b0;
  color: var(--red);
  cursor: not-allowed;
}
.seat.selected {
  background: var(--yellow);
  border-color: #e0a800;
  color: #4a3800;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(245,200,66,0.4);
}
.seat.pending {
  background: #fff3e0;
  border-color: #ffb74d;
  color: #e65100;
  cursor: not-allowed;
  animation: pulse-pending 2s infinite;
}
@keyframes pulse-pending {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

.seat .seat-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 20;
  pointer-events: none;
}
.seat:hover .seat-tooltip { display: block; }

/* ─── PLANS ─── */
.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 2px solid var(--soft);
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.plan-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.plan-card.selected {
  border-color: var(--accent);
  background: #fff8f0;
  box-shadow: 0 8px 32px rgba(200,135,58,0.15);
}
.plan-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fff8f0, #fff);
}

.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 50px;
  background: #fce4c8;
  color: var(--accent);
  margin-bottom: 12px;
}
.plan-badge.blue { background: #dbeafe; color: var(--blue); }
.plan-badge.green { background: #d1fae5; color: var(--accent2); }

.plan-icon { font-size: 28px; margin-bottom: 8px; }

.plan-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 8px;
}
.plan-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.plan-card small { color: var(--muted); font-size: 13px; }

/* ─── FORM + QR ─── */
.form-qr-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  margin-top: 40px;
  align-items: start;
}

.booking-form {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.booking-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 24px;
}

.input-group { margin-bottom: 18px; }
.input-group label {
  display: block;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.input-group input[type="text"],
.input-group input[type="tel"],
.input-group input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--soft);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  background: var(--paper);
  transition: border-color 0.2s;
  outline: none;
}
.input-group input:focus { border-color: var(--accent); }

.opt { color: #bbb; font-weight: 400; text-transform: none; letter-spacing: 0; }

.file-upload {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border: 1.5px dashed var(--soft);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--muted);
  transition: border-color 0.2s;
}
.file-upload:hover { border-color: var(--accent); color: var(--accent); }
.file-upload input { display: none; }

.booking-summary {
  background: #f8f5ef;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--muted);
  margin: 20px 0;
  line-height: 1.6;
}
.booking-summary strong { color: var(--ink); }

.book-btn {
  width: 100%;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.book-btn:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,135,58,0.3); }

/* ─── QR BOX ─── */
.qr-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: sticky;
  top: 24px;
}
.qr-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 20px;
}
.qr-frame {
  background: var(--paper);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}
.qr-frame img { width: 100%; border-radius: 8px; display: block; }
.qr-placeholder {
  padding: 40px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  border: 2px dashed var(--soft);
  border-radius: 8px;
}
.qr-note { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.upi-chip {
  background: var(--paper);
  border: 1px solid var(--soft);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--muted);
}
.upi-chip strong { color: var(--ink); }

/* ─── ADMIN ─── */
.admin-section {
  background: #f0ede7;
  padding: 80px 0;
  border-top: 1px solid var(--soft);
}

.admin-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.admin-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
}
.admin-actions { display: flex; gap: 12px; }

.admin-action-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--soft);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: all 0.2s;
}
.admin-action-btn:hover { border-color: var(--ink); }
.admin-action-btn.danger { border-color: var(--red); color: var(--red); }
.admin-action-btn.danger:hover { background: var(--red); color: #fff; }

.admin-login-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 400px;
  box-shadow: var(--shadow);
  text-align: center;
}
.admin-login-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
}
.admin-login-box input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--soft);
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 14px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}
.admin-login-box input:focus { border-color: var(--accent); }
.admin-login-box button {
  width: 100%;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.admin-login-box button:hover { background: var(--accent); }
.login-error { color: var(--red); font-size: 13px; margin-top: 10px; }

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.admin-stat-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--soft);
}
.admin-stat-card.green { border-color: var(--green); }
.admin-stat-card.red { border-color: var(--red); }
.admin-stat-card.orange { border-color: #ffb74d; }
.admin-stat-card.blue { border-color: var(--blue); }

.approve-btn {
  padding: 5px 12px;
  border: 1px solid var(--green);
  color: var(--green);
  background: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 4px;
}
.approve-btn:hover { background: var(--green); color: #fff; }
.admin-stat-card span { display: block; font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; }
.admin-stat-card small { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.bookings-table-wrap {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.bookings-table-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 16px;
}
#searchInput {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--soft);
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}
#searchInput:focus { border-color: var(--accent); }

.bookings-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.bookings-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-bottom: 1px solid var(--soft);
}
.bookings-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #f0ede7;
}
.bookings-table tr:last-child td { border-bottom: none; }
.bookings-table tr:hover td { background: #faf8f4; }

.unbook-btn {
  padding: 5px 12px;
  border: 1px solid var(--red);
  color: var(--red);
  background: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.unbook-btn:hover { background: var(--red); color: #fff; }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}
.status-badge.pending  { background: #fff3e0; color: #e65100; }
.status-badge.approved { background: #e8f8ef; color: var(--accent2); }

.row-pending td { background: #fffdf8; }

.screenshot-link {
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
}
.screenshot-link:hover { text-decoration: underline; }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
}
.modal {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 420px; width: 90%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-icon { font-size: 56px; margin-bottom: 16px; }
.modal h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 12px; }
.modal p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.modal button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.modal button:hover { background: var(--accent); }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 28px;
  font-size: 13px;
}

/* ─── UTILS ─── */
.hidden { display: none !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .seat-grid { grid-template-columns: repeat(9, 1fr); }
  .plans-row { grid-template-columns: 1fr; }
  .form-qr-row { grid-template-columns: 1fr; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
  .qr-box { position: static; }
  .navbar { padding: 20px 24px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; padding: 16px 24px; }
}

@media (max-width: 600px) {
  .seat-grid { grid-template-columns: repeat(6, 1fr); gap: 6px; }
  .seat { font-size: 9px; border-radius: 6px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
  .bookings-table { font-size: 12px; }
  .booking-form, .qr-box { padding: 24px 18px; }
}

/* ─── HERO IMAGE ─── */
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,14,12,0.85) 0%, rgba(15,14,12,0.6) 100%);
  z-index: 1;
}
.hero-orb, .hero-grid { z-index: 2; }
.hero-content { z-index: 3; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.map-btn {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.map-btn:hover { background: rgba(255,255,255,0.22); }

.nav-links { display: flex; align-items: center; gap: 12px; }

.location-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  transition: all 0.2s;
}
.location-link:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ─── GALLERY ─── */
.gallery-section {
  padding: 80px 0;
  background: var(--ink);
}
.gallery-section h2 { color: #fff; }
.section-header.center { text-align: center; flex-direction: column; align-items: center; }
.section-sub { color: rgba(255,255,255,0.5); font-size: 16px; margin-top: 8px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item.placeholder {
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  text-align: center;
}
.gallery-item.placeholder::after {
  content: 'Add your photo here';
  font-size: 13px;
}

.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 20px 16px 12px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-note {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  margin-top: 20px;
}

/* ─── LOCATION ─── */
.location-section {
  padding: 80px 0;
  background: var(--paper);
}
.location-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.location-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 8px;
}
.location-address {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 28px;
}
.location-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.loc-item { display: flex; flex-direction: column; gap: 2px; }
.loc-item strong { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.loc-item span { font-size: 15px; color: var(--ink); }

.directions-btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}
.directions-btn:hover { background: var(--accent); }

.map-embed { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }

/* ─── REQUIRED TAG ─── */
.required-tag {
  background: #fee2e2;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.screenshot-note {
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
}
.file-upload.has-file {
  border-color: var(--green);
  color: var(--green);
  background: #f0fdf4;
}

/* ─── PENDING APPROVAL CARDS ─── */
.pending-section {
  margin-bottom: 32px;
}
.pending-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pending-count {
  background: var(--red);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
}
.pending-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.pending-card {
  background: #fff;
  border: 2px solid #ffb74d;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(255,183,77,0.15);
}
.pending-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.pending-seat {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
}
.pending-plan-badge {
  background: #fff3e0;
  color: #e65100;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.pending-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.pending-card p strong { color: var(--ink); }
.pending-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.approve-big-btn {
  flex: 1;
  padding: 10px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.approve-big-btn:hover { background: #2d8a5a; }
.reject-big-btn {
  flex: 1;
  padding: 10px;
  background: none;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.reject-big-btn:hover { background: var(--red); color: #fff; }
.view-screenshot-btn {
  width: 100%;
  padding: 8px;
  background: #eff6ff;
  color: var(--blue);
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
}
.view-screenshot-btn:hover { background: #dbeafe; }
.no-pending {
  color: var(--muted);
  font-size: 14px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  text-align: center;
}

/* ─── SCREENSHOT MODAL ─── */
.screenshot-modal-inner {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}
.screenshot-modal-inner img {
  width: 100%;
  border-radius: 10px;
  margin-top: 12px;
}
.close-screenshot {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  margin-bottom: 8px;
}

/* ─── FOOTER ─── */
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-map-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
}
.footer-map-link:hover { text-decoration: underline; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .location-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .footer-inner { flex-direction: column; text-align: center; }
  .pending-cards { grid-template-columns: 1fr; }
}

/* ─── SEAT GRID FIX ─── */
.seat-grid {
  min-height: 120px;
}
.seat {
  min-width: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SEAT VISIBILITY FIX ─── */
#seatGrid {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 16px 0 !important;
}
#seatGrid .seat {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 40px !important;
  min-width: 0 !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  border-width: 2px !important;
  border-style: solid !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}
#seatGrid .seat.available {
  background-color: #e8f8ef !important;
  border-color: #a8e6c0 !important;
  color: #2d6a4f !important;
}
#seatGrid .seat.booked {
  background-color: #fce8e8 !important;
  border-color: #f0b0b0 !important;
  color: #d94f4f !important;
  cursor: not-allowed !important;
}
#seatGrid .seat.pending {
  background-color: #fff3e0 !important;
  border-color: #ffb74d !important;
  color: #e65100 !important;
  cursor: not-allowed !important;
}
#seatGrid .seat.selected {
  background-color: #f5c842 !important;
  border-color: #e0a800 !important;
  color: #4a3800 !important;
}

/* ─── ADMIN ACTIONS (now inside dashboard) ─── */
#adminDashboard .admin-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}
