/*
  Umberto Cuisine — refresh layer (2026)
  Loaded AFTER style.css / responsive.css so it overrides cleanly.
  Light visual refresh only: keeps the dark + gold identity and all layouts.
  Vendor style.css is intentionally left untouched.
*/

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

:root {
  /* Flip every heading to the new display serif via the existing token.
     (Was Fraunces — swap this + the @import to change the heading face.) */
  --title-fonts: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --primary-color-light: #d9bd8f; /* brighter gold for hovers/accents */
}

/* ── Headings: Fraunces, with optical sizing + tighter tracking ────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-fonts);
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.pq-section-title-style-1 .pq-section-title {
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

/* Eyebrow (Miniver gold) — add a delicate centered hairline accent */
.pq-section-title-style-1.text-center .pq-section-sub-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* ── Hero (Revolution Slider): scrim for legible headline ──────────────── */
#rev_slider_16_1_wrapper rs-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;            /* above bg image, below text layers (z 10–13) */
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 11, 14, 0.55) 0%,
    rgba(8, 11, 14, 0.28) 45%,
    rgba(8, 11, 14, 0.68) 100%
  );
}

#rev_slider_16_1 .rs-layer {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* ── Buttons: gold fill with dark text on hover (was white-on-gold) ────── */
.pq-button {
  border-color: rgba(255, 255, 255, 0.4);
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.pq-button:hover,
.pq-button:focus {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--dark-color);
}

.pq-button:hover .pq-button-text {
  color: var(--dark-color);
}

/* Keyboard focus visibility (a11y floor) */
a:focus-visible,
button:focus-visible,
.pq-button:focus-visible {
  outline: 2px solid var(--primary-color-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .pq-button span { transition: none; }
  .pq-award-card { transition: none; }
}

/* ── Awards & Milestones (Phase 4) ─────────────────────────────────────── */
.awards {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.awards .row.justify-content-center > [class*="col-"] {
  margin-bottom: 30px;
}

.pq-award-card {
  height: 100%;
  text-align: center;
  background: var(--custom-bg-color);
  border: 1px solid rgba(198, 168, 125, 0.18);
  border-radius: 4px;
  padding: 38px 28px 32px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.pq-award-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.pq-award-badge img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.pq-award-year {
  display: block;
  font-family: var(--sub-title-fonts);
  font-size: 18px;
  color: var(--primary-color);
  letter-spacing: 0.08em;
  margin: 16px 0 4px;
}

.pq-award-title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.pq-award-caption {
  color: var(--text-color);
  font-size: 16px;
  line-height: 26px;
  margin: 0 auto 18px;
  max-width: 30ch;
}

.pq-award-link {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--primary-color);
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.pq-award-link:hover,
.pq-award-link:focus {
  color: var(--primary-color-light);
  border-color: var(--primary-color-light);
}
