/* ============================================================
   M.P Events & Tours — Base Styles
   base.css — Global typography, links, and base elements
   ============================================================ */

/* ── Font Import ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Body ────────────────────────────────────────────────────── */
body {
  background-color: var(--clr-white);
  overflow-x: hidden;
}

/* ── Headings ────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--clr-secondary);
  letter-spacing: var(--ls-tight);
}

h1 { font-size: var(--fs-h1); font-weight: var(--fw-semibold); }
h2 { font-size: var(--fs-h2); font-weight: var(--fw-semibold); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-medium); }

h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--clr-text);
  letter-spacing: var(--ls-base);
}
h4 { font-size: var(--fs-h4); font-weight: var(--fw-semibold); }
h5 { font-size: var(--fs-body); font-weight: var(--fw-semibold); }
h6 { font-size: var(--fs-sm);   font-weight: var(--fw-semibold); letter-spacing: var(--ls-wide); text-transform: uppercase; }

/* ── Paragraph & Lists ───────────────────────────────────────── */
p {
  font-size: var(--fs-body);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}
p:last-child { margin-bottom: 0; }

p.lead {
  font-size: var(--fs-lead);
  color: var(--clr-text);
  line-height: var(--lh-relaxed);
}

ul, ol {
  padding-left: var(--sp-6);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}
li { margin-bottom: var(--sp-2); }

/* ── Inline ──────────────────────────────────────────────────── */
strong, b { font-weight: var(--fw-semibold); color: var(--clr-text); }
em, i     { font-style: italic; }

mark {
  background-color: var(--clr-gold-soft);
  color: var(--clr-gold-dark);
  padding: 0 var(--sp-1);
  border-radius: var(--radius-xs);
}

/* ── Links ───────────────────────────────────────────────────── */
a {
  color: var(--clr-primary);
  transition: color var(--transition-base);
}
a:hover {
  color: var(--clr-primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Blockquote ─────────────────────────────────────────────── */
blockquote {
  border-left: 4px solid var(--clr-primary);
  padding-left: var(--sp-6);
  margin: var(--sp-8) 0;
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-style: italic;
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
}
blockquote cite {
  display: block;
  margin-top: var(--sp-4);
  font-size: var(--fs-sm);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-caps);
}

/* ── Code ────────────────────────────────────────────────────── */
code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--clr-cream-dark);
  padding: 0.1em 0.3em;
  border-radius: var(--radius-xs);
}

/* ── Images in content ───────────────────────────────────────── */
.prose img {
  border-radius: var(--radius-lg);
  margin: var(--sp-8) 0;
}

/* ── Label style ─────────────────────────────────────────────── */
.label {
  font-size: var(--fs-xxs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}

/* ── TBD / Placeholder indicator (honest placeholders) ────────── */
.tbd-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-warning);
  background: var(--clr-gold-soft);
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  padding: var(--sp-1) var(--sp-3);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

/* ── Content width override for prose ───────────────────────── */
.prose p,
.prose li {
  max-width: 68ch;
}

/* ── Smooth scroll for anchor links ─────────────────────────── */
:target {
  scroll-margin-top: calc(var(--header-h) + var(--sp-6));
}

/* ── Print basics ────────────────────────────────────────────── */
@media print {
  .no-print { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.75em; }
}
/*  Global Accessibility Focus States  */
*:focus-visible {
  outline: 2px solid var(--clr-gold, #CFA35B);
  outline-offset: 3px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--clr-gold, #CFA35B);
  outline-offset: 0px;
}

