@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --coral: #FF5E45;
  --coral-light: #FFF0EE;
  --coral-dark: #D94530;
  --yellow: #FFD23F;
  --yellow-light: #FFFBEB;
  --teal: #00C4A0;
  --teal-light: #E0FAF5;
  --purple: #7B5EA7;
  --purple-light: #F0EBFA;
  --navy: #1A1A2E;
  --gray-100: #F8F7F4;
  --gray-200: #EDEBE6;
  --gray-300: #D5D2CA;
  --gray-500: #9D9A92;
  --gray-700: #5C5952;
  --gray-900: #2A2825;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --font-display: 'Fredoka One', cursive;
  --font-body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--coral);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.5px;
}
.navbar-logo .dot {
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 2px;
}
.navbar-links { display: flex; align-items: center; gap: 8px; }
.navbar-links a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: 14px;
  color: var(--gray-700);
  transition: all 0.15s;
}
.navbar-links a:hover { background: var(--gray-100); color: var(--gray-900); }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border-radius: var(--radius-full); font-weight: 700; font-size: 14px; border: none; transition: all 0.18s; letter-spacing: 0.2px; }
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,94,69,0.35); }
.btn-outline { background: transparent; color: var(--coral); border: 2px solid var(--coral); }
.btn-outline:hover { background: var(--coral-light); }
.btn-yellow { background: var(--yellow); color: var(--gray-900); }
.btn-yellow:hover { background: #f0c42e; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,210,63,0.4); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 7px 16px; font-size: 13px; }

/* ─── HERO ─── */
.hero {
  background: var(--coral);
  position: relative; overflow: hidden;
  padding: 80px 24px 0;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255,210,63,0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.2);
  color: var(--white); font-size: 13px; font-weight: 700;
  padding: 6px 16px; border-radius: var(--radius-full);
  margin-bottom: 20px; letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: 18px; color: rgba(255,255,255,0.88);
  font-weight: 500; margin-bottom: 36px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}

.search-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 10px 10px 10px 20px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 660px; margin: 0 auto 40px;
  flex-wrap: wrap;
}
.search-box input, .search-box select {
  border: none; outline: none; background: transparent;
  font-size: 15px; font-weight: 600; color: var(--gray-900);
  flex: 1; min-width: 140px; padding: 6px 0;
}
.search-box input::placeholder { color: var(--gray-500); font-weight: 500; }
.search-divider { width: 1px; height: 28px; background: var(--gray-200); flex-shrink: 0; }
.search-box .btn { flex-shrink: 0; }

.hero-stats {
  display: flex; justify-content: center; gap: 40px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat { color: var(--white); }
.hero-stat strong { font-family: var(--font-display); font-size: 28px; display: block; }
.hero-stat span { font-size: 13px; opacity: 0.8; font-weight: 600; }

.hero-wave {
  display: block; margin-top: 40px;
  width: 100%; height: 60px;
}

/* ─── SECTION ─── */
.section { padding: 72px 24px; }
.section-sm { padding: 48px 24px; }
.container { max-width: 1120px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  color: var(--gray-900);
  margin-bottom: 8px;
}
.section-subtitle { font-size: 16px; color: var(--gray-500); font-weight: 500; margin-bottom: 40px; }

/* ─── CATEGORIES ─── */
.categories-grid {
  display: flex; gap: 12px;
  overflow-x: auto; padding-bottom: 8px;
  scrollbar-width: none;
}
.categories-grid::-webkit-scrollbar { display: none; }
.category-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-weight: 700; font-size: 14px; color: var(--gray-700);
  white-space: nowrap; cursor: pointer;
  transition: all 0.15s;
}
.category-pill:hover, .category-pill.active {
  border-color: var(--coral); background: var(--coral-light); color: var(--coral);
}
.category-pill .emoji { font-size: 18px; }

/* ─── VENUE CARDS ─── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.venue-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  display: block;
}
.venue-card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.venue-card-img {
  height: 200px; position: relative;
  background: var(--gray-100);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.venue-card-img .placeholder-emoji { font-size: 64px; opacity: 0.4; }
.venue-card-img img { width: 100%; height: 100%; object-fit: cover; }
.venue-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--coral); color: var(--white);
  font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: var(--radius-full);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.venue-badge-teal { background: var(--teal); }
.venue-badge-yellow { background: var(--yellow); color: var(--gray-900); }
.venue-card-body { padding: 16px 18px 18px; }
.venue-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.venue-card-name { font-family: var(--font-display); font-size: 18px; color: var(--gray-900); }
.venue-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: var(--gray-700); }
.venue-rating .star { color: #FFB800; }
.venue-location { font-size: 13px; color: var(--gray-500); font-weight: 600; margin-bottom: 10px; }
.venue-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.tag {
  font-size: 12px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--gray-100); color: var(--gray-700);
}
.tag-coral { background: var(--coral-light); color: var(--coral); }
.tag-teal { background: var(--teal-light); color: #007a63; }
.tag-purple { background: var(--purple-light); color: var(--purple); }
.venue-card-footer { display: flex; justify-content: space-between; align-items: center; }
.venue-price { font-size: 13px; color: var(--gray-500); font-weight: 600; }
.venue-price strong { font-family: var(--font-display); font-size: 20px; color: var(--gray-900); }
.venue-avail { font-size: 12px; font-weight: 700; color: var(--teal); display: flex; align-items: center; gap: 4px; }
.venue-avail::before { content: ''; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; display: inline-block; }

/* ─── HOW IT WORKS ─── */
.how-bg { background: var(--gray-100); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--coral); color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-display); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-emoji { font-size: 36px; margin-bottom: 12px; display: block; }
.step h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--gray-500); font-weight: 500; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,94,69,0.3) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute; left: 200px; bottom: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,210,63,0.2) 0%, transparent 70%);
}
.cta-text { position: relative; }
.cta-text h2 { font-family: var(--font-display); font-size: 32px; color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.6); font-weight: 500; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* ─── FILTERS PAGE ─── */
.page-header {
  background: var(--coral);
  padding: 40px 24px 48px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,210,63,0.25) 0%, transparent 60%);
}
.page-header-inner { position: relative; max-width: 1120px; margin: 0 auto; }
.page-header h1 { font-family: var(--font-display); font-size: 32px; color: var(--white); margin-bottom: 16px; }
.page-header .search-box { margin: 0; max-width: 700px; }

.listing-layout { display: flex; gap: 28px; align-items: flex-start; }
.filters-panel {
  width: 260px; flex-shrink: 0;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky; top: 80px;
}
.filter-group { margin-bottom: 24px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-label {
  font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray-500); margin-bottom: 12px;
}
.filter-check {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--gray-700);
}
.filter-check input[type=checkbox] { accent-color: var(--coral); width: 16px; height: 16px; }
.filter-check:hover { color: var(--coral); }
.price-range-wrap { padding: 4px 0; }
.price-range-wrap input[type=range] {
  width: 100%; accent-color: var(--coral);
  margin: 8px 0;
}
.price-range-vals { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: var(--gray-700); }
.filter-rating { display: flex; gap: 4px; }
.rating-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  border: 2px solid var(--gray-200); background: var(--white);
  font-size: 14px; font-weight: 800; color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s;
}
.rating-btn:hover, .rating-btn.active {
  border-color: var(--yellow); background: var(--yellow-light); color: var(--gray-900);
}
.listing-main { flex: 1; min-width: 0; }
.listing-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.listing-count { font-size: 15px; font-weight: 700; color: var(--gray-700); }
.sort-select {
  padding: 8px 14px; border-radius: var(--radius-full);
  border: 2px solid var(--gray-200); background: var(--white);
  font-size: 14px; font-weight: 700; color: var(--gray-700);
  cursor: pointer; outline: none;
}
.sort-select:focus { border-color: var(--coral); }

/* ─── DETAIL PAGE ─── */
.detail-hero {
  height: 360px; background: var(--gray-100);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.detail-hero .placeholder-emoji { font-size: 120px; opacity: 0.2; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-layout { display: flex; gap: 36px; align-items: flex-start; padding: 40px 0; }
.detail-main { flex: 1; min-width: 0; }
.detail-name { font-family: var(--font-display); font-size: 36px; color: var(--gray-900); margin-bottom: 6px; }
.detail-meta { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.detail-rating { display: flex; align-items: center; gap: 6px; font-weight: 800; font-size: 15px; }
.detail-rating .star { color: #FFB800; font-size: 16px; }
.detail-location { font-size: 15px; font-weight: 600; color: var(--gray-500); }
.detail-hours { font-size: 14px; font-weight: 700; color: var(--teal); }
.detail-desc { font-size: 16px; color: var(--gray-700); line-height: 1.7; margin-bottom: 28px; }
.detail-features { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-bottom: 32px; }
.feature-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: var(--radius-md);
  background: var(--gray-100); border: 2px solid var(--gray-200);
  font-size: 13px; font-weight: 700; color: var(--gray-700);
}
.feature-item .fi { font-size: 20px; }

/* Packages */
.packages-title { font-family: var(--font-display); font-size: 22px; margin-bottom: 16px; }
.packages-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.package-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: all 0.15s;
}
.package-card:hover { border-color: var(--coral); background: var(--coral-light); }
.package-card.selected { border-color: var(--coral); background: var(--coral-light); }
.package-name { font-family: var(--font-display); font-size: 17px; margin-bottom: 2px; }
.package-desc { font-size: 13px; color: var(--gray-500); font-weight: 600; }
.package-price { text-align: right; }
.package-price strong { font-family: var(--font-display); font-size: 22px; display: block; }
.package-price span { font-size: 12px; color: var(--gray-500); }

/* Booking sidebar */
.booking-sidebar {
  width: 320px; flex-shrink: 0;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: sticky; top: 80px;
  box-shadow: var(--shadow-md);
}
.booking-sidebar h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); display: block; margin-bottom: 6px; }
.form-input, .form-select {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--gray-200); border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600; color: var(--gray-900);
  outline: none; transition: border-color 0.15s;
  background: var(--white);
}
.form-input:focus, .form-select:focus { border-color: var(--coral); }
.time-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.time-slot {
  padding: 7px 14px; border-radius: var(--radius-full);
  border: 2px solid var(--gray-200); background: var(--white);
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: all 0.15s; color: var(--gray-700);
}
.time-slot:hover { border-color: var(--coral); color: var(--coral); }
.time-slot.selected { border-color: var(--coral); background: var(--coral); color: var(--white); }
.time-slot.taken { opacity: 0.35; cursor: not-allowed; border-color: var(--gray-200); background: var(--gray-100); }
.booking-summary {
  margin: 20px 0; padding: 16px;
  background: var(--gray-100); border-radius: var(--radius-md);
}
.booking-summary-row { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; padding: 3px 0; }
.booking-summary-row.total { font-family: var(--font-display); font-size: 18px; border-top: 2px solid var(--gray-200); margin-top: 8px; padding-top: 10px; }
.btn-block { width: 100%; justify-content: center; padding: 14px; font-size: 16px; }

/* Reviews */
.reviews-section { margin-top: 40px; }
.review-card {
  border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 20px; margin-bottom: 14px;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--coral-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; color: var(--coral);
}
.reviewer-name { font-weight: 800; font-size: 15px; }
.review-date { font-size: 12px; color: var(--gray-500); }
.review-stars { color: #FFB800; font-size: 13px; margin-top: 1px; }
.review-text { font-size: 14px; color: var(--gray-700); line-height: 1.65; }

/* ─── MODAL ─── */
.modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(26,26,46,0.5); backdrop-filter: blur(4px);
  z-index: 200; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-xl);
  max-width: 480px; width: 100%;
  padding: 40px; position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--gray-200); background: var(--white);
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray-500);
  transition: all 0.15s;
}
.modal-close:hover { border-color: var(--coral); color: var(--coral); }
.modal h2 { font-family: var(--font-display); font-size: 26px; margin-bottom: 6px; }
.modal p { font-size: 14px; color: var(--gray-500); font-weight: 500; margin-bottom: 24px; }
.modal-tabs { display: flex; gap: 8px; margin-bottom: 24px; border-bottom: 2px solid var(--gray-200); padding-bottom: 0; }
.modal-tab {
  padding: 8px 18px 10px; font-weight: 700; font-size: 14px;
  cursor: pointer; color: var(--gray-500); border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all 0.15s;
}
.modal-tab.active { color: var(--coral); border-bottom-color: var(--coral); }
.modal-section { display: none; }
.modal-section.active { display: block; }
.success-modal { text-align: center; padding: 20px 0; }
.success-emoji { font-size: 72px; margin-bottom: 16px; display: block; }
.success-modal h2 { color: var(--teal); }

/* ─── DASHBOARD ─── */
.dash-layout { display: flex; min-height: calc(100vh - 64px); }
.dash-sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--navy);
  padding: 24px 16px;
}
.dash-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-md);
  font-weight: 700; font-size: 14px; color: rgba(255,255,255,0.6);
  cursor: pointer; transition: all 0.15s; margin-bottom: 4px;
}
.dash-nav-item:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.dash-nav-item.active { background: var(--coral); color: var(--white); }
.dash-nav-item .di { font-size: 18px; }
.dash-content { flex: 1; padding: 32px; background: var(--gray-100); overflow-y: auto; }
.dash-section { display: none; }
.dash-section.active { display: block; }
.dash-title { font-family: var(--font-display); font-size: 28px; margin-bottom: 24px; }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 32px; }
.metric-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 20px 22px; border: 2px solid var(--gray-200);
}
.metric-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 8px; }
.metric-val { font-family: var(--font-display); font-size: 32px; color: var(--gray-900); }
.metric-sub { font-size: 13px; font-weight: 600; color: var(--teal); margin-top: 2px; }
.dash-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 2px solid var(--gray-200); margin-bottom: 20px;
}
.dash-card-title { font-family: var(--font-display); font-size: 18px; margin-bottom: 16px; }
.reservations-table { width: 100%; border-collapse: collapse; }
.reservations-table th {
  text-align: left; font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray-500); padding: 0 12px 12px 0;
  border-bottom: 2px solid var(--gray-200);
}
.reservations-table td { padding: 12px 12px 12px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; font-weight: 600; color: var(--gray-700); vertical-align: middle; }
.reservations-table tr:last-child td { border-bottom: none; }
.status-badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
}
.status-confirmed { background: var(--teal-light); color: #007a63; }
.status-pending { background: var(--yellow-light); color: #8a6d00; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.photo-upload-area {
  border: 3px dashed var(--gray-300); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; cursor: pointer;
  transition: all 0.15s; color: var(--gray-500); font-weight: 600;
}
.photo-upload-area:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; margin-top: 16px; }
.photo-thumb {
  aspect-ratio: 1; border-radius: var(--radius-md);
  background: var(--gray-200); overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: 56px 24px 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1120px; margin: 0 auto 40px; }
.footer-logo { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 12px; }
.footer-tagline { font-size: 14px; line-height: 1.6; }
.footer-col h4 { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; font-weight: 600; padding: 4px 0; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 13px; max-width: 1120px; margin: 0 auto; }

/* ─── UTILS ─── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.hidden { display: none !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .search-box { flex-direction: column; padding: 16px; border-radius: var(--radius-lg); }
  .search-box .search-divider { display: none; }
  .search-box input, .search-box select { width: 100%; }
  .hero-stats { gap: 20px; }
  .listing-layout { flex-direction: column; }
  .filters-panel { width: 100%; position: static; }
  .detail-layout { flex-direction: column; }
  .booking-sidebar { width: 100%; position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-banner { padding: 32px 24px; }
  .dash-layout { flex-direction: column; }
  .dash-sidebar { width: 100%; display: flex; overflow-x: auto; gap: 4px; padding: 12px; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.fade-up { animation: fadeUp 0.4s ease both; }
.fade-up-1 { animation-delay: 0.05s; }
.fade-up-2 { animation-delay: 0.10s; }
.fade-up-3 { animation-delay: 0.15s; }
.fade-up-4 { animation-delay: 0.20s; }
.fade-up-5 { animation-delay: 0.25s; }

/* notification */
.notif {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--navy); color: var(--white);
  padding: 14px 22px; border-radius: var(--radius-lg);
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); z-index: 300;
  animation: slideIn 0.3s ease;
  transform-origin: bottom right;
}
.notif.success { background: var(--teal); }
.notif.error { background: var(--coral); }
@keyframes slideIn { from { opacity: 0; transform: translateY(16px) scale(0.95); } to { opacity: 1; transform: none; } }
/* ─── MVP V2: zajednički upit ─── */
.venue-card { position: relative; }
.venue-card.is-selected { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0,196,160,0.14); }
.venue-select {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.96); border: 2px solid var(--gray-200);
  border-radius: var(--radius-full); padding: 6px 10px;
  font-size: 12px; font-weight: 800; color: var(--gray-700);
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.venue-select input { accent-color: var(--teal); }
.selected-venues-bar {
  position: sticky; top: 76px; z-index: 20;
  align-items: center; justify-content: space-between; gap: 16px;
  background: var(--navy); color: var(--white);
  padding: 16px 18px; border-radius: var(--radius-lg);
  margin-bottom: 24px; box-shadow: var(--shadow-md);
}
.selected-venues-bar span { color: rgba(255,255,255,0.68); font-size: 13px; font-weight: 600; }
.selected-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.selected-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.selected-actions .btn-outline:hover { background: rgba(255,255,255,0.12); }
.inquiry-note {
  background: var(--yellow-light); border: 2px solid #FAC775;
  border-radius: var(--radius-md); padding: 12px 14px;
  font-size: 13px; font-weight: 700; color: var(--gray-700);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .selected-venues-bar { position: static; flex-direction: column; align-items: flex-start; }
  .selected-actions { width: 100%; }
  .selected-actions .btn { flex: 1; justify-content: center; }
}
