/*
Theme Name: DB Traditional Minh
Author: DB Restaurant
Description: Traditional Hue heritage theme for DB Restaurant.
Version: 1.0.0
Text Domain: db-traditional-minh
*/

/* =========================================================
   1. Theme variables
========================================================= */

:root {
  --dbrh-red: #7A0E12;
  --dbrh-gold: #C9A227;
  --dbrh-green: #1d4934;
  --dbrh-ink: #1c1c1c;
  --dbrh-muted: #5f5f5f;
  --dbrh-cream: #FFF7E6;
  --dbrh-paper: #FFFCF5;
  --dbrh-border: #eadfcb;
  --dbrh-shadow: 0 18px 45px rgba(0, 0, 0, .10);
  --dbrh-radius: 22px;
  --dbrh-max: 1120px;

  --dbrh-title: "Playfair Display", "Cinzel", Georgia, serif;
  --dbrh-body: "Spectral", Georgia, serif;
}

/* =========================================================
   2. Base
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--dbrh-body);
  color: var(--dbrh-ink);
  background:
    url("./assets/paper.jpg") repeat,
    linear-gradient(180deg, var(--dbrh-cream), #ffffff);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
  color: var(--dbrh-muted);
}

h1,
h2,
h3,
.dbrh-sectionTitle h2 {
  color: var(--dbrh-ink);
  font-family: var(--dbrh-title);
  letter-spacing: -.3px;
}

ul {
  margin: 0;
}

/* =========================================================
   3. Layout helpers
========================================================= */

.dbrh-wrap {
  width: min(100% - 32px, var(--dbrh-max));
  margin: 0 auto;
}

.dbrh-section {
  padding: 26px 0;
}

.dbrh-paperBand {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, .85), rgba(255, 252, 245, .85)),
    url("./assets/paper.jpg") repeat;
  border-top: 1px solid rgba(201, 162, 39, .22);
  border-bottom: 1px solid rgba(201, 162, 39, .22);
}

.dbrh-divider {
  height: 2px;
  margin: 12px 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(122, 14, 18, .55),
    rgba(201, 162, 39, .65),
    rgba(122, 14, 18, .55),
    transparent
  );
}

.dbrh-pad {
  position: relative;
  padding: 24px;
}

.dbrh-split,
.dbrh-twoCols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* =========================================================
   4. Header / navigation
========================================================= */

.dbrh-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(255, 247, 230, .92), rgba(255, 247, 230, .92)),
    url("./assets/brocade.jpg") repeat;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 223, 203, .9);
}

.dbrh-topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.dbrh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: .3px;
}

.dbrh-brand small {
  display: block;
  color: var(--dbrh-muted);
  font-weight: 750;
  margin-top: 2px;
}

.dbrh-seal {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.dbrh-seal .custom-logo-link,
.dbrh-seal a {
  display: block;
  width: 44px;
  height: 44px;
}

.dbrh-seal img.custom-logo,
.custom-logo {
  max-height: 50px !important;
  width: auto !important;
  height: 100% !important;
  object-fit: contain;
  display: block;
}

.dbrh-nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.dbrh-nav a {
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 850;
}

.dbrh-nav a:hover {
  background: var(--dbrh-paper);
  border: 1px solid var(--dbrh-border);
}

/* =========================================================
   5. Buttons
========================================================= */

.dbrh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.dbrh-btn:active {
  transform: translateY(1px);
}

.dbrh-btn--primary {
  background: linear-gradient(180deg, #8f171b, #6b0b0e);
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, .25);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.dbrh-btn--primary:hover {
  box-shadow: 0 18px 36px rgba(122, 14, 18, .24);
}

.dbrh-btn--gold {
  background: linear-gradient(180deg, #e2c15a, #b88912);
  color: #111111;
  border: 1px solid rgba(0, 0, 0, .18);
  box-shadow: 0 14px 28px rgba(201, 162, 39, .20);
}

.dbrh-btn--outline {
  background: transparent;
  color: var(--dbrh-red);
  border-color: rgba(122, 14, 18, .35);
}

.dbrh-btn--outline:hover {
  background: var(--dbrh-paper);
  border-color: rgba(122, 14, 18, .55);
}

.dbrh-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================================================
   6. Panels and content pages
========================================================= */

.dbrh-panel,
.dbrh-card {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, .92), rgba(255, 252, 245, .92)),
    url("./assets/paper.jpg") repeat;
  border: 1px solid rgba(122, 14, 18, .18);
  border-radius: var(--dbrh-radius);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
  overflow: hidden;
  position: relative;
}

.dbrh-panel--pattern::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 15%, rgba(201, 162, 39, .24), transparent 40%),
    radial-gradient(circle at 80% 85%, rgba(122, 14, 18, .18), transparent 42%),
    repeating-linear-gradient(45deg, rgba(201, 162, 39, .055) 0 10px, transparent 10px 22px);
  transform: rotate(6deg);
  pointer-events: none;
}

.dbrh-content {
  padding: 22px 0;
}

.dbrh-article {
  padding: 18px;
}

.dbrh-article h1 {
  margin: 0 0 10px;
}

.dbrh-article .dbrh-pad {
  padding: 0;
}

/* =========================================================
   7. Legacy hero styles
   Kept for older pages that may still use .dbrh-hero
========================================================= */

.dbrh-hero {
  padding: 34px 0 22px;
}

.dbrh-hero__grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
  align-items: stretch;
}

.dbrh-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.8px;
}

.dbrh-hero__sub {
  margin: 0;
  color: var(--dbrh-muted);
  font-size: 1.02rem;
}

.dbrh-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.dbrh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 39, .14);
  border: 1px solid rgba(201, 162, 39, .35);
  color: rgba(255, 255, 255, .92);
  font-weight: 950;
}

.dbrh-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--dbrh-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .18);
}

.dbrh-hero .dbrh-panel--pattern {
  background:
    linear-gradient(180deg, rgba(40, 20, 10, .72), rgba(40, 20, 10, .62)),
    url("./assets/paper.jpg") repeat;
  color: #ffffff;
  border: 1px solid rgba(201, 162, 39, .35);
}

.dbrh-hero .dbrh-panel--pattern h1 {
  color: #ffffff;
}

.dbrh-hero .dbrh-panel--pattern p,
.dbrh-hero .dbrh-fact span {
  color: rgba(255, 255, 255, .82);
}

.dbrh-heroMedia {
  position: relative;
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .05), rgba(0, 0, 0, .35)),
    url("./assets/hero.jpg") center/cover no-repeat;
}

.dbrh-heroMedia img {
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.dbrh-heroMedia__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, 0), rgba(0, 0, 0, .18));
  pointer-events: none;
}

.dbrh-heroMedia__img {
  transition: opacity 450ms ease;
}

/* =========================================================
   8. Homepage hero
========================================================= */

.dbrh-hero2 {
  position: relative;
  min-height: auto;
  padding: 42px 0 34px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .78) 0%,
      rgba(0, 0, 0, .62) 38%,
      rgba(0, 0, 0, .38) 68%,
      rgba(0, 0, 0, .28) 100%
    ),
    url("./assets/hero.jpg") 60% center / cover no-repeat;
  border-bottom: 3px solid rgba(201, 162, 39, .25);
}

.dbrh-hero2__inner {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(460px, 560px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.dbrh-hero2__left {
  max-width: 680px;
  color: #ffffff;
  padding: 8px 0;
}

.dbrh-hero2__kicker {
  display: inline-block;
  font-weight: 900;
  letter-spacing: .4px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .18);
  text-shadow: 0 3px 12px rgba(0, 0, 0, .75);
}

.dbrh-hero2__title {
  max-width: 720px;
  margin: 12px 0;
  color: #ffffff;
  font-family: var(--dbrh-title);
  font-size: clamp(46px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -.8px;
  text-shadow:
    0 4px 10px rgba(0, 0, 0, .75),
    0 14px 34px rgba(0, 0, 0, .65);
}

.dbrh-hero2__sub {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.6;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .75);
}

.dbrh-hero2__sub br {
  display: block;
  margin-bottom: 6px;
}

.dbrh-hero2__right {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: 100%;
  max-width: 620px;
  margin-top: 24px;
  padding: 26px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(74, 45, 12, .58), rgba(45, 28, 8, .54));
  border: 1px solid rgba(255, 230, 180, .18);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
}

.dbrh-hero2__right::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 201, 90, .16), transparent 34%),
    radial-gradient(circle at 80% 100%, rgba(255, 180, 70, .10), transparent 36%);
}

.dbrh-hero2__right > * {
  position: relative;
  z-index: 1;
}

.dbrh-hero2__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.dbrh-hero2__actions .dbrh-btn--outline {
  background: linear-gradient(180deg, #2f5f45, #183b2b);
  color: #ffffff;
  border-color: rgba(255, 255, 255, .28);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.dbrh-hero2__actions .dbrh-btn--outline:hover {
  background: linear-gradient(180deg, #376f50, #1d4934);
  color: #ffffff;
  border-color: rgba(255, 255, 255, .42);
}

.dbrh-hero2__facts {
  margin-top: 0 !important;
  gap: 14px;
}

.dbrh-hero2__right .dbrh-fact {
  width: 100%;
  min-height: 96px;
  padding: 16px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
}

.dbrh-hero2__right .dbrh-badge {
  width: 170px;
  height: 58px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.dbrh-hero2__right .dbrh-badge small {
  margin: 0;
  line-height: 1;
}

.dbrh-hero2__right .dbrh-fact__text {
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.3;
}

.dbrh-hero2__bowlFrame {
  display: none !important;
}

/* =========================================================
   9. Facts and badges
========================================================= */

.dbrh-facts {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dbrh-fact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--dbrh-border);
}

.dbrh-fact > div {
  flex: 1;
  text-align: center;
}

.dbrh-fact strong,
.dbrh-fact span {
  font-weight: 900;
  color: var(--dbrh-ink);
}

.dbrh-fact__text {
  color: var(--dbrh-ink) !important;
  font-weight: 900;
  text-align: left;
}

.dbrh-badge {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  place-items: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(122, 14, 18, .08);
  border: 1px solid rgba(122, 14, 18, .14);
  color: var(--dbrh-red);
  font-size: 16px;
  font-weight: 950;
}

.dbrh-badge small {
  color: var(--dbrh-red) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
}

.dbrh-fact--link {
  color: inherit;
  text-decoration: none;
}

.dbrh-fact--link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

/* =========================================================
   10. Section titles, blocks, and cards
========================================================= */

.dbrh-sectionTitle {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.dbrh-sectionTitle h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
}

.dbrh-hint {
  color: var(--dbrh-muted);
  font-weight: 850;
}

.dbrh-ribbonTitle {
  text-align: center;
  margin: 0 0 14px;
}

.dbrh-ribbonTitle span {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--dbrh-title);
  font-weight: 900;
  background:
    linear-gradient(180deg, rgba(201, 162, 39, .35), rgba(201, 162, 39, .18)),
    url("./assets/paper.jpg") repeat;
  border: 1px solid rgba(122, 14, 18, .22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
}

.dbrh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dbrh-card {
  background: #ffffff;
  border: 1px solid var(--dbrh-border);
  border-radius: var(--dbrh-radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.dbrh-card .dbrh-pad {
  padding: 16px;
}

.dbrh-card h3 {
  margin: 0 0 6px;
}

.dbrh-card p {
  margin: 0;
  color: var(--dbrh-muted);
}

.dbrh-thumb {
  aspect-ratio: 16 / 10;
  background: #f2ead7;
}

.dbrh-block {
  padding: 18px;
  border-radius: var(--dbrh-radius);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, .88), rgba(255, 252, 245, .88)),
    url("./assets/paper.jpg") repeat;
  border: 1px solid rgba(122, 14, 18, .18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
}

.dbrh-block__title {
  margin: 0;
  font-family: var(--dbrh-title);
}

.dbrh-block__media {
  margin-top: 12px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, .25);
}

.dbrh-block__media img {
  width: 100%;
  height: auto;
  display: block;
}

.dbrh-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--dbrh-muted);
  font-weight: 800;
}

.dbrh-checklist span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(201, 162, 39, .22);
  border: 1px solid rgba(201, 162, 39, .35);
  color: var(--dbrh-red);
}

/* =========================================================
   11. Popular dishes slider
========================================================= */

.dbrh-dishes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dbrh-slider {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.dbrh-sliderTrack {
  display: flex;
  transition: transform .4s ease;
  will-change: transform;
  touch-action: pan-y;
}

.dbrh-slide {
  flex: 0 0 33.3333%;
  padding: 0 8px;
}

.dbrh-slideArrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(122, 14, 18, .9);
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}

.dbrh-slidePrev {
  left: -10px;
}

.dbrh-slideNext {
  right: -10px;
}

.dbrh-dishCard {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, .88), rgba(255, 252, 245, .88)),
    url("./assets/paper.jpg") repeat;
  border: 1px solid rgba(122, 14, 18, .22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .14);
}

.dbrh-dishCard__img {
  border-bottom: 1px solid rgba(201, 162, 39, .20);
}

.dbrh-dishCard__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.dbrh-dishCard__cap {
  padding: 12px 14px;
  text-align: center;
}

.dbrh-dishCard__name {
  font-family: var(--dbrh-title);
  color: var(--dbrh-red);
  font-weight: 900;
}

.dbrh-dishCard__desc {
  color: var(--dbrh-muted);
  font-size: .95rem;
  font-weight: 750;
}

/* =========================================================
   12. Restaurant gallery
========================================================= */

.dbrh-galleryIntro {
  max-width: 760px;
  margin: 0 auto 14px;
  text-align: center;
}

.dbrh-galleryIntro h2 {
  margin: 0 0 8px;
  font-family: var(--dbrh-title);
  color: var(--dbrh-red);
  font-size: clamp(24px, 2.4vw, 34px);
}

.dbrh-galleryIntro p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--dbrh-muted);
  font-size: 16px;
  font-weight: 750;
}

.dbrh-gallerySlider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.dbrh-galleryViewport {
  height: 360px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(122, 14, 18, .20);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, .92), rgba(255, 252, 245, .92)),
    url("./assets/paper.jpg") repeat;
}

.dbrh-galleryTrack {
  display: flex;
  height: 100%;
  transition: transform .45s ease;
  will-change: transform;
}

.dbrh-gallerySlide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  position: relative;
}

.dbrh-gallerySlide img,
.dbrh-gallerySlide .dbrh-imgPlaceholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  margin: 0;
}

.dbrh-gallerySlide > * {
  margin-bottom: 0 !important;
}

.dbrh-galleryArrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(122, 14, 18, .88);
  color: #ffffff;
  font-size: 20px;
  font-weight: 950;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .24);
}

.dbrh-galleryArrow:hover {
  background: rgba(90, 9, 12, .95);
}

.dbrh-galleryPrev {
  left: -18px;
}

.dbrh-galleryNext {
  right: -18px;
}

.dbrh-galleryNote {
  max-width: 760px;
  margin: 12px auto 0;
  padding: 14px 18px;
  border-radius: 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, .92), rgba(255, 252, 245, .92)),
    url("./assets/paper.jpg") repeat;
  border: 1px solid rgba(122, 14, 18, .18);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .10);
  color: var(--dbrh-muted);
  font-size: 15px;
  font-weight: 750;
}

.dbrh-galleryNote strong {
  color: var(--dbrh-red);
  font-weight: 950;
}

.dbrh-galleryNote br {
  display: block;
  margin-bottom: 6px;
}

/* =========================================================
   13. Visit section
========================================================= */

.dbrh-visitGrid {
  display: grid;
  grid-template-columns: 1fr 1fr .85fr;
  gap: 16px;
}

#visit .dbrh-visitGrid {
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(74, 45, 12, .58), rgba(45, 28, 8, .54));
  border: 1px solid rgba(255, 230, 180, .18);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
}

.dbrh-visitCard {
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(122, 14, 18, .18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

.dbrh-visitCard__img {
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  line-height: 0;
}

.dbrh-visitCard__img img,
.dbrh-visitCard__img iframe {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 20%;
  border: 0;
  margin: 0;
}

.dbrh-visitCard__body {
  padding: 18px 18px 20px !important;
}

.dbrh-visitCard__body h3 {
  margin: 0 0 6px;
  font-family: var(--dbrh-title);
  color: var(--dbrh-red);
}

.dbrh-link {
  color: var(--dbrh-red);
  font-weight: 950;
}

.dbrh-mapCard {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* =========================================================
   14. Location card
========================================================= */

#visit .dbrh-locationCard,
#visit .dbrh-visitGrid > .dbrh-visitCard:first-child {
  height: auto !important;
  background: #ffffff !important;
  background-image: none !important;
  border: 1px solid rgba(122, 14, 18, .18) !important;
  border-radius: 24px;
  overflow: hidden;
}

#visit .dbrh-locationCard .dbrh-visitCard__body,
#visit .dbrh-visitGrid > .dbrh-visitCard:first-child .dbrh-visitCard__body {
  height: auto !important;
  padding: 24px 24px 18px !important;
  display: block !important;
  background: #ffffff !important;
  background-image: none !important;
}

#visit .dbrh-locationCard h3,
#visit .dbrh-visitGrid > .dbrh-visitCard:first-child h3 {
  margin: 0 0 8px;
  color: var(--dbrh-red) !important;
  font-size: 24px;
  font-weight: 950 !important;
}

.dbrh-locationAddress,
#visit .dbrh-locationCard p,
#visit .dbrh-visitGrid > .dbrh-visitCard:first-child .dbrh-visitCard__body p {
  margin: 0;
  color: #111111 !important;
  font-size: 24px !important;
  font-weight: 950 !important;
  line-height: 1.35;
}

#visit .dbrh-locationCard .dbrh-link,
#visit .dbrh-visitGrid > .dbrh-visitCard:first-child .dbrh-link {
  display: none !important;
}

.dbrh-mapEmbed,
#visit .dbrh-locationCard .dbrh-mapEmbed {
  height: 190px !important;
  overflow: hidden;
  line-height: 0;
  border-top: 1px solid rgba(122, 14, 18, .12);
}

.dbrh-mapEmbed iframe,
#visit .dbrh-locationCard .dbrh-mapEmbed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   15. Opening hours card
========================================================= */

#visit .dbrh-hoursCard {
  height: auto !important;
  align-self: stretch;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff !important;
  background-image: none !important;
  border: 1px solid rgba(122, 14, 18, .18) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

#visit .dbrh-hoursCard .dbrh-visitCard__img,
#visit .dbrh-hoursCard .dbrh-visitCard__body,
#visit .dbrh-hoursCard__top,
#visit .dbrh-hoursCard__bottom {
  display: none !important;
}

#visit .dbrh-hoursCard__inner {
  min-height: 100%;
  padding: 24px;
  background: #ffffff !important;
}

#visit .dbrh-hoursCard__title {
  margin: 0 0 18px;
  color: var(--dbrh-red);
  font-family: var(--dbrh-title);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
}

#visit .dbrh-hoursList {
  display: grid;
  gap: 10px;
  margin: 0;
  max-width: none;
}

#visit .dbrh-hoursRow {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: baseline;
  color: var(--dbrh-ink);
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 1.35;
  letter-spacing: normal;
}

#visit .dbrh-hoursRow span,
#visit .dbrh-hoursRow span:first-child,
#visit .dbrh-hoursRow span:last-child {
  font-weight: 400 !important;
}

#visit .dbrh-hoursRow span:last-child {
  text-align: left;
  white-space: nowrap;
}

/* =========================================================
   16. Contact / social cards
========================================================= */

#visit .dbrh-contactStack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

#visit .dbrh-contactBox {
  min-height: 122px;
  padding: 26px 22px;
  border-radius: 24px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(122, 14, 18, .18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  transition: transform .15s ease, box-shadow .15s ease;
}

#visit .dbrh-contactBox:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
}

#visit .dbrh-contactBox h3 {
  margin: 0 0 12px;
  color: var(--dbrh-red);
  font-family: var(--dbrh-title);
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
}

#visit .dbrh-contactBox p {
  margin: 0;
  color: var(--dbrh-ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

#visit .dbrh-contactBox--email {
  background: #fffdf9;
}

#visit .dbrh-contactBox--social {
  background: #ffffff;
}

#visit .dbrh-contactBox--social h3 {
  margin-bottom: 14px;
}

#visit .dbrh-socialIcons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

#visit .dbrh-socialIcons a {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
  transition: transform .15s ease, box-shadow .15s ease;
}

#visit .dbrh-socialIcons a:first-child {
  background: #1877f2;
  font-family: Arial, sans-serif;
}

#visit .dbrh-socialIcons a:last-child {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

#visit .dbrh-socialIcons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .22);
}

/* Legacy contact layouts kept for older templates */
.dbrh-contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dbrh-contactCard,
.dbrh-contactSplit {
  background:
    linear-gradient(180deg, rgba(255, 252, 245, .95), rgba(255, 252, 245, .95)),
    url("./assets/paper.jpg") repeat;
  border: 1px solid rgba(122, 14, 18, .18);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.dbrh-contactCard {
  padding: 30px;
}

.dbrh-contactCard h3,
.dbrh-contactHalf h3 {
  margin: 0 0 10px;
  font-family: var(--dbrh-title);
  color: var(--dbrh-red);
}

.dbrh-contactCard p,
.dbrh-contactHalf p {
  max-width: 100%;
  margin-bottom: 16px;
  color: var(--dbrh-ink);
  font-weight: 900;
  text-align: center;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.dbrh-contactSplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.dbrh-contactHalf {
  min-height: 260px;
  padding: 34px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.dbrh-contactHalf:first-child {
  border-right: 1px solid rgba(122, 14, 18, .15);
}

.dbrh-contactHalf:first-child p {
  white-space: nowrap;
}

.dbrh-contactHalf .dbrh-btn {
  margin-top: auto;
}

/* =========================================================
   17. Menu page
========================================================= */

.dbrh-menuIntro {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.dbrh-menuIntro h1 {
  margin: 0 0 8px;
  color: var(--dbrh-red);
  font-family: var(--dbrh-title);
  font-size: clamp(36px, 4vw, 56px);
}

.dbrh-menuIntro p {
  margin: 0;
  color: var(--dbrh-muted);
  font-size: 18px;
  font-weight: 650;
}

.dbrh-menuOptions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.dbrh-menuOption {
  display: block;
  padding: 34px 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(122, 14, 18, .18);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.dbrh-menuOption:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .16);
}

.dbrh-menuOption h3 {
  margin: 0 0 10px;
  color: var(--dbrh-red);
  font-family: var(--dbrh-title);
  font-size: 30px;
  font-weight: 950;
}

.dbrh-menuOption p {
  margin: 0 0 22px;
  color: var(--dbrh-ink);
  font-size: 17px;
  line-height: 1.5;
}

.dbrh-menuOption span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--dbrh-red);
  color: #ffffff;
  font-weight: 900;
}

.dbrh-menuOption:nth-child(2) span {
  background: var(--dbrh-gold);
  color: #111111;
}

/* =========================================================
   18. Forms and alerts
========================================================= */

.dbrh-form label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 900;
}

.dbrh-form input,
.dbrh-form select,
.dbrh-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(122, 14, 18, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  font: inherit;
}

.dbrh-formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dbrh-alert {
  padding: 12px 14px;
  border-radius: 14px;
  margin: 12px 0;
  font-weight: 800;
}

.dbrh-alert--ok {
  background: rgba(201, 162, 39, .18);
  border: 1px solid rgba(201, 162, 39, .35);
}

.dbrh-alert--bad {
  background: rgba(122, 14, 18, .10);
  border: 1px solid rgba(122, 14, 18, .25);
}

/* =========================================================
   19. Arrows
========================================================= */

.dbrh-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(0, 0, 0, .35);
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.dbrh-arrow:hover {
  background: rgba(122, 14, 18, .75);
}

.dbrh-arrow:active {
  transform: translateY(-50%) translateY(1px);
}

.dbrh-arrow--prev,
.dbrh-arrow--hero.dbrh-arrow--prev {
  left: 14px;
}

.dbrh-arrow--next,
.dbrh-arrow--hero.dbrh-arrow--next {
  right: 14px;
}

/* =========================================================
   20. Footer
========================================================= */

.dbrh-footer {
  margin-top: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 162, 39, .35);
  background:
    linear-gradient(180deg, rgba(122, 14, 18, .92), rgba(122, 14, 18, .92)),
    url("./assets/brocade.jpg") repeat;
  color: rgba(255, 255, 255, .88);
}

.dbrh-footer a {
  color: #ffd77a;
  font-weight: 950;
}

/* =========================================================
   21. Responsive
========================================================= */

@media (max-width: 1100px) {
  .dbrh-hero2__inner {
    grid-template-columns: 1fr;
  }

  .dbrh-hero2__right {
    justify-self: stretch;
    max-width: 100%;
    margin-top: 0;
  }

  .dbrh-hero2__title {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .dbrh-hero__grid,
  .dbrh-twoCols,
  .dbrh-split,
  .dbrh-dishes,
  .dbrh-visitGrid,
  .dbrh-contactGrid,
  .dbrh-menuOptions {
    grid-template-columns: 1fr;
  }

  .dbrh-grid {
    grid-template-columns: 1fr;
  }

  .dbrh-nav {
    display: none;
  }

  .dbrh-heroMedia {
    min-height: 280px;
  }

  .dbrh-arrow {
    width: 42px;
    height: 42px;
  }

  .dbrh-hero2 {
    padding: 28px 0 22px;
  }

  .dbrh-hero2__right {
    padding: 18px;
  }

  .dbrh-slide {
    flex: 0 0 100%;
  }

  .dbrh-contactSplit {
    grid-template-columns: 1fr;
  }

  .dbrh-contactHalf:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(122, 14, 18, .15);
  }
}

@media (max-width: 768px) {
  .dbrh-btn {
    font-size: 14px;
    padding: 10px 12px;
  }

  #visit .dbrh-visitGrid {
    padding: 18px;
    border-radius: 24px;
  }

  .dbrh-gallerySlider {
    max-width: 100%;
  }

  .dbrh-galleryViewport,
  .dbrh-gallerySlide img,
  .dbrh-gallerySlide .dbrh-imgPlaceholder {
    height: 260px;
  }

  .dbrh-galleryPrev {
    left: 10px;
  }

  .dbrh-galleryNext {
    right: 10px;
  }

  .dbrh-galleryArrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  #visit .dbrh-locationCard h3,
  #visit .dbrh-visitGrid > .dbrh-visitCard:first-child h3,
  #visit .dbrh-hoursCard__title,
  #visit .dbrh-contactBox h3 {
    font-size: 22px;
  }

  .dbrh-locationAddress,
  #visit .dbrh-locationCard p,
  #visit .dbrh-visitGrid > .dbrh-visitCard:first-child .dbrh-visitCard__body p {
    font-size: 20px !important;
  }

  .dbrh-mapEmbed,
  #visit .dbrh-locationCard .dbrh-mapEmbed {
    height: 180px !important;
  }

  #visit .dbrh-hoursRow {
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 15px;
  }

  #visit .dbrh-hoursRow span:last-child {
    white-space: normal;
  }

  #visit .dbrh-contactBox {
    min-height: 120px;
    padding: 22px 18px;
  }

  #visit .dbrh-contactBox p {
    font-size: 16px;
  }

  .dbrh-formGrid {
    grid-template-columns: 1fr;
  }

  .dbrh-menuOption {
    padding: 28px 24px;
  }
}

@media (max-width: 680px) {
  .dbrh-hero2__inner {
    grid-template-columns: 1fr;
  }

  .dbrh-hero2__right .dbrh-fact {
    grid-template-columns: 1fr;
  }

  .dbrh-hero2__right .dbrh-badge {
    width: 100%;
  }

  .dbrh-hero2__right .dbrh-fact__text {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .dbrh-hero2__title {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.08;
  }

  .dbrh-hero2__actions .dbrh-btn {
    width: 100%;
  }

  .dbrh-hero2__right .dbrh-fact {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .dbrh-galleryViewport,
  .dbrh-gallerySlide img,
  .dbrh-gallerySlide .dbrh-imgPlaceholder {
    height: 220px;
  }
}
