@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --bg: #f3f5f9;
  --panel: #ffffff;
  --panel-soft: #f7f8fc;
  --card: #ffffff;
  --card-contrast: #fdfdfd;
  --text-dark: #0f1117;
  --text: #0f1117;
  --muted: #596074;
  --accent: #0f7bff;
  --accent-strong: #0a63d6;
  --accent-soft: rgba(15, 123, 255, 0.12);
  --divider: #e6e8f0;
  --radius: 12px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-title: 'Playfair Display', serif;
  --h1: 32px;
  --h2: 24px;
  --h3: 18px;
  --body: 15px;
  --meta: 13px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% 20%, rgba(15, 123, 255, 0.06), transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(255,255,255,0.7), transparent 30%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.wrapper {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: #fff; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  letter-spacing: 1px;
}

.nav-links { display:flex; gap: 18px; align-items:center; }
.nav-links a { font-weight:600; color:#fdf3ea; text-transform: uppercase; font-size:0.9rem; letter-spacing:0.03em; }
.nav-links a:hover { color:#fff; }

.cta {
  padding: 10px 16px;
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  border-radius: 999px;
  border: none;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 10px 25px rgba(178,96,36,0.35);
  min-height: 38px;
}

.cta:hover { transform: translateY(-1px) scale(1.01); }

.chip-btn {
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(178,96,36,0.18);
  line-height: 1.1;
}

.hero-banner {
  position: relative;
  margin: 0 auto;
  background: url('https://images.unsplash.com/photo-1481391032119-d89fee407e44?auto=format&fit=crop&w=1600&q=80') center/cover;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.55));
}

.hero-copy {
  position: relative;
  padding: 26px;
  color: #fff;
  max-width: 540px;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-copy p { margin: 0; line-height: 1.5; color: #f5f1ec; }

.page-shell {
  background: var(--card);
  color: var(--text-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 0;
  padding: clamp(18px, 3vw, 32px);
}

.section-title { display: flex; align-items: center; gap: 10px; margin: 30px 0 14px; color: var(--text-dark); }
.section-title span { height: 1px; flex: 1; background: rgba(0,0,0,0.08); }
.section-title h2 { margin:0; font-family:'Playfair Display', serif; letter-spacing:0.02em; }

.intro {
  line-height: 1.7;
  color: #3d3d3d;
  max-width: 860px;
  font-size: 1.03rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  display: grid;
  gap: 10px;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9a4f18;
  font-weight: 700;
  font-size: 0.78rem;
  min-height: 22px;
  white-space: nowrap;
}

.card h3 { margin: 0; font-size: 1.1rem; color: #1e1e1e; }
.card p { margin: 0; color: #3f3f3f; line-height: 1.55; }

.price { font-weight: 700; color: #1e1e1e; font-size: 1.02rem; }

.meta-small { color:#6b6b6b; font-size:0.92rem; }

.timeline { display: grid; gap: 14px; }

.event {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  background: #fdfaf7;
  box-shadow: 0 12px 24px rgba(0,0,0,0.07);
}

.event strong { display: block; font-size: 1.05rem; color:#1f1f1f; }
.event .meta { color: #7c7c7c; font-size: 0.9rem; margin-top: 4px; }
.event p { margin: 8px 0 0; color:#333; }

.footer {
  margin: 40px 0 30px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.admin-link { color: var(--muted); text-decoration: underline; }
.admin-link:hover { color:#fff; }

.pill { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; background:rgba(255,255,255,0.06); border-radius:999px; font-size:0.9rem; }
.thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; border:1px solid rgba(0,0,0,0.08); }
.form-card { background:#fdfaf7; padding:16px; border-radius:16px; border:1px solid rgba(0,0,0,0.06); box-shadow:0 8px 18px rgba(0,0,0,0.06); }
.form-card .field { display:grid; gap:6px; }
.form-card input, .form-card textarea, .form-card select { width:100%; }
.grid.two-col { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:14px; }
.slot-list { display:grid; gap:10px; }
.slot-row { display:grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)) auto; gap:8px; align-items:end; }
.slot-row .remove-slot { padding:6px 10px; border-radius:10px; background:#2b0c14; color:#ffc9d6; border:none; cursor:pointer; }

.contact-card { display:grid; gap:14px; }
.contact-actions { display:flex; gap:10px; flex-wrap:wrap; }
.contact-details div { margin-bottom:6px; }

.filter-form { display:grid; gap:12px; background:#fdfaf7; border:1px solid rgba(0,0,0,0.05); border-radius: var(--radius); padding:16px; box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.filter-form .field { display:grid; gap:6px; }
.filter-form label { font-weight:700; color:#1f1f1f; }
.filter-form input, .filter-form select {
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-size: 1rem;
  color: #1f1f1f;
  min-height: 38px;
}
.filter-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:12px; }
.filter-actions { display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.multiselect { position: relative; }
.multi-trigger { width: 100%; padding: 7px 10px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.12); background:#fff; cursor:pointer; text-align:left; display:flex; justify-content:space-between; align-items:center; min-height:36px; }
.multi-trigger input { border:none; outline:none; width:100%; font-size:0.95rem; }
.multi-trigger .caret { margin-left:8px; font-size:0.9rem; }
.multi-panel { position: absolute; z-index: 5; background:#fff; border:1px solid rgba(0,0,0,0.12); border-radius:12px; padding:8px 10px; box-shadow:0 8px 16px rgba(0,0,0,0.12); width:100%; max-height:220px; overflow:auto; display:none; }
.multi-option { display:flex; gap:8px; align-items:center; padding:4px 2px; font-size:0.95rem; }
.multiselect.open .multi-panel { display:block; }

.logo img { display:block; }
.media-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:10px; }
.media-grid select, .media-grid input[type="file"] { width: 100%; max-width: 100%; }

@media (max-width: 900px) {
  header { position: sticky; }
  .nav { flex-wrap: wrap; gap:12px; }
  .hero-banner { min-height: 260px; }
}

@media (max-width: 640px) {
  .cards { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .cta { width: 100%; text-align: center; }
  .hero-copy { padding: 20px; }
  .nav-links { width: 100%; justify-content: space-between; }
}
.subtle-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 24px 0;
}

.search {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 999px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.search input {
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  width: 120px;
  font-weight: 600;
  font-size: 0.9rem;
}
.search input::placeholder { color: #f3e5d8; opacity: 0.85; }
.search button {
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  cursor: pointer;
}
