/* =================================================================
   Diana's Event Center — phase 1
   Placeholder brand palette (D6): deep plum + gold + cream.
   Swap the :root tokens when the client supplies real brand colors.
   ================================================================= */

:root {
  --ink: #1d1626;          /* deep plum, near-black */
  --ink-soft: #3a3047;
  --gold: #c9a24b;         /* accent */
  --gold-dark: #a9842f;
  --cream: #faf6ef;        /* page background */
  --white: #ffffff;
  --text: #2b2530;
  --muted: #6c6577;
  --line: #e7ded0;

  --maxw: 1140px;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(29, 22, 38, 0.12);
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold-dark); }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 .4em; }
h3 { font-size: 1.3rem; margin: 0 0 .4em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.section { padding: 72px 0; }
.section--tint { background: var(--white); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section__head p { color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em;
  font-size: .78rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 10px;
}

/* ---- buttons ---- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 50px;
  font-weight: 600; text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  font-size: .98rem;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold); color: var(--ink); }
.btn--primary:hover { background: var(--gold-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); }

/* ---- header / nav ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(29, 22, 38, .92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(201, 162, 75, .25);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: .01em; }
.brand span { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: #efe9f2; text-decoration: none; font-size: .95rem; font-weight: 500; }
.nav__links a:hover { color: var(--gold); }
.nav__lang { display: flex; gap: 6px; align-items: center; font-size: .85rem; }
.nav__lang a { color: #b9b1c4; text-decoration: none; padding: 2px 6px; border-radius: 4px; }
.nav__lang a.is-active { color: var(--ink); background: var(--gold); font-weight: 700; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .2s; }

/* ---- hero ---- */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center;
  color: var(--white); text-align: center;
  background: linear-gradient(rgba(20,14,28,.55), rgba(20,14,28,.7)), url("/assets/img/hero-sweetheart.jpg") center/cover no-repeat;
}
.hero__inner { max-width: 760px; margin: 0 auto; padding: 110px 20px 80px; }
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 0 0 .25em; }
.hero p { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: #f0ebf3; margin: 0 auto 30px; max-width: 600px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- about ---- */
.about { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.about img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about ul { list-style: none; padding: 0; margin: 18px 0 0; }
.about li { padding-left: 28px; position: relative; margin-bottom: 8px; }
.about li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ---- packages ---- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; display: flex; flex-direction: column; box-shadow: var(--shadow);
}
.pkg--featured { border-color: var(--gold); border-width: 2px; position: relative; }
.pkg__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; padding: 5px 14px; border-radius: 50px;
}
.pkg__name { font-family: var(--font-head); font-size: 1.9rem; color: var(--ink); margin: 0 0 4px; }
.pkg__tier { color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.pkg__list { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.pkg__list li { padding: 7px 0 7px 26px; position: relative; border-bottom: 1px dashed var(--line); font-size: .96rem; }
.pkg__list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.pkg .btn { text-align: center; }
.pkg__note { text-align: center; color: var(--muted); font-size: .92rem; margin-top: 28px; }

/* ---- gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery button {
  padding: 0; border: 0; cursor: pointer; background: none; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery button:hover img { transform: scale(1.06); }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(15,10,20,.92); display: none; align-items: center; justify-content: center; z-index: 100; padding: 24px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
.lightbox__close { position: absolute; top: 18px; right: 24px; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* ---- reviews ---- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* Yelp embed widgets render their own cards — center and wrap them. */
.reviews-embed { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; align-items: flex-start; }
.reviews-embed .yelp-review { max-width: 100%; }
.review { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.review__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.review p { font-style: italic; color: var(--text); margin: 0 0 14px; }
.review cite { font-style: normal; font-weight: 600; color: var(--ink); }

/* ---- contact ---- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact__info p { margin: 0 0 6px; }
.contact__info .label { text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; color: var(--gold-dark); font-weight: 700; margin-top: 22px; }
.contact__info a { color: var(--ink); text-decoration: none; font-weight: 600; }
.map { margin-top: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 260px; border: 0; display: block; }

form { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 5px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 8px;
  font: inherit; color: var(--text); background: var(--cream);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field textarea { min-height: 110px; resize: vertical; }
.hp { position: absolute; left: -9999px; }   /* honeypot */
.form-note { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.form-status { margin-top: 14px; font-weight: 600; min-height: 1.4em; }
.form-status.ok { color: #1f7a4d; }
.form-status.err { color: #b3261e; }

/* ---- footer ---- */
.site-footer { background: var(--ink); color: #d7cfe0; padding: 48px 0 28px; }
.site-footer a { color: var(--gold); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 28px; }
.footer-grid h3 { color: var(--white); font-size: 1.1rem; }
.footer-grid p, .footer-grid li { font-size: .92rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; text-align: center; font-size: .82rem; color: #9d94ab; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; top: 64px; right: 0; width: min(78vw, 300px);
    background: var(--ink); flex-direction: column; align-items: flex-start;
    gap: 0; padding: 12px 0; height: calc(100vh - 64px);
    transform: translateX(100%); transition: transform .25s ease; box-shadow: var(--shadow);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 14px 24px; width: 100%; }
  .nav__toggle { display: block; }
  .about, .contact { grid-template-columns: 1fr; gap: 28px; }
  .packages, .gallery, .reviews, .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .field--row { grid-template-columns: 1fr; }
}
