:root {
  --bg: #f8f4ef;
  --text: #1f2430;
  --muted: #6b7280;
  --primary: #1b4d7a;
  --secondary: #b48a3b;
  --white: #ffffff;
  --border: #e7dccf;
  --success: #e9f7ef;
  --error: #fdecec;
  --shadow: 0 10px 25px rgba(0,0,0,0.06);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, sans-serif; color: var(--text); background: var(--bg); }
a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 86px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.logo-img { height: 68px; width: auto; }
.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a { color: var(--text); font-weight: 600; }
.lang-switcher { display: flex; gap: 10px; }
.lang-switcher a { border: 1px solid var(--border); padding: 8px 12px; border-radius: 999px; color: var(--text); }
.lang-switcher a.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; }
/* .hero { padding: 72px 0; background: linear-gradient(135deg, rgba(27,77,122,0.06), rgba(180,138,59,0.10)); }
 */
.hero {
    padding: 72px 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
        url('/uploads/hero-bg.jpg') center center / cover no-repeat;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; align-items: start; }
.eyebrow { display: inline-block; margin-bottom: 14px; color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; margin: 0 0 14px; }
h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.hero-copy, p { line-height: 1.8; }
.hero-card, .info-box, .venue-card, .admin-panel, .stat-card, .admin-form-block, .admin-login-card { background: var(--white); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); }
.hero-card, .info-box, .admin-panel, .admin-form-block, .admin-login-card { padding: 24px; }
.section { padding: 72px 0; }
.alt-bg { background: rgba(255,255,255,0.56); }
.section-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 28px; }
.card-grid { display: grid; gap: 24px; }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.venue-card { overflow: hidden; }
.venue-card img { height: 260px; width: 100%; object-fit: cover; }
.card-body { padding: 22px; }
.badge { display: inline-block; background: rgba(180,138,59,0.16); color: #8a6627; border-radius: 999px; padding: 8px 14px; font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 12px 22px; font-weight: 700; border: none; cursor: pointer; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-secondary { background: rgba(27,77,122,0.08); color: var(--primary); }
.text-link { font-weight: 700; color: var(--primary); }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-weight: 600; }
.form-group input, .form-group textarea, .form-group select, .admin-form-inline input, .admin-form-inline select, .admin-form-block input, .admin-form-block textarea, .admin-form-block select { width: 100%; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--border); background: #fff; font: inherit; }
.form-grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.alert { border-radius: 14px; padding: 12px 14px; margin-bottom: 16px; }
.alert.success { background: var(--success); color: #14532d; }
.alert.error { background: var(--error); color: #991b1b; }
.two-col-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: start; }
.service-list, .detail-list, .compact-meta { padding-left: 18px; line-height: 1.8; }
.page-banner { padding: 64px 0 28px; }
.page-banner p, .muted, .closing-copy { color: var(--muted); }
.card-top-row { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.venue-hero-detail { min-height: 380px; background-position: center; background-size: cover; position: relative; display: flex; align-items: end; }
.venue-hero-detail .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.18)); }
.venue-hero-inner { position: relative; color: #fff; padding-bottom: 40px; }
.venue-hero-inner h1 { color: #fff; margin-top: 12px; }
.site-footer { background: #0f1720; color: #fff; padding-top: 56px; }
.site-footer a { color: #d8e5f2; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 24px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-bottom { padding: 20px 0; margin-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); }
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: #111827; color: #fff; padding: 24px; }
.admin-sidebar nav { display: flex; flex-direction: column; gap: 12px; }
.admin-sidebar a { color: #cbd5e1; }
.admin-content { padding: 28px; }
.admin-topbar { margin-bottom: 24px; }
.admin-grid { display: grid; gap: 20px; margin-bottom: 24px; }
.admin-grid.four-col { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat-card { padding: 22px; }
.stat-card span { display: block; color: var(--muted); margin-bottom: 8px; }
.stat-card strong { font-size: 2rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid var(--border); vertical-align: top; text-align: left; }
.panel-header-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 16px; }
.admin-form-inline { display: grid; grid-template-columns: 1fr 1fr 120px auto auto auto; gap: 10px; align-items: center; margin-bottom: 12px; }
.checkbox-row { display: flex; gap: 20px; margin: 14px 0 22px; }
.admin-login-body { min-height: 100vh; display: grid; place-items: center; }
.admin-login-card { width: min(460px, calc(100% - 30px)); }
hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
@media (max-width: 992px) {
  .hero-grid, .two-col-content, .three-col, .footer-grid, .admin-grid.four-col, .form-grid-3 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { padding-bottom: 10px; }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 86px; left: 16px; right: 16px; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .main-nav.open { display: flex; }
  .lang-switcher { margin-left: auto; }
  .nav-wrap { flex-wrap: wrap; }
  .admin-form-inline { grid-template-columns: 1fr; }
}


.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  padding: 20px;
}

.cookie-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 8px;
}

.cookie-banner__text p {
  margin: 0;
  max-width: 760px;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-modal[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.cookie-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 32px));
  margin: 8vh auto 0;
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.cookie-option p {
  margin: 6px 0 0;
}

.cookie-modal__actions {
  margin-top: 20px;
}

.cookie-settings-link {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9998;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 14px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}

.whatsapp-sticky {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 9997;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 16px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-sticky:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.whatsapp-sticky svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.whatsapp-sticky span {
  font-size: 0.95rem;
  line-height: 1;
}

@media (max-width: 768px) {
.whatsapp-sticky {
  right: 12px;
  bottom: 12px;
  padding: 11px 14px;
}

  .whatsapp-sticky span {
    display: none;
  }
}
.blog-card h2 {
  font-size: 1.5rem;
}

.article-content img {
  width: 100%;
  height: auto;
}

.article-content p,
.article-content li {
  line-height: 1.8;
}

.article-content h2,
.article-content h3 {
  margin-top: 1.5rem;
}

.supplier-account-fields {
  margin-bottom: 16px;
}
