/*
 * Variante A – Klassisch modernisiert.
 * Das Vokabular der bestehenden Seite (rote Topbar, rote Linie unter dem Header, Radial-Hero mit
 * dem freigestellten Porträt, Karten mit 20px-Rundung und rotem Rand, rote Bogen-Sektion)
 * bleibt erhalten – aufgeräumt, mit besserer Typografie und mobilem Layout.
 */

@font-face { font-family: "Open Sans"; src: url(../assets/fonts/open-sans-latin.woff2) format("woff2"); font-weight: 300 800; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Open Sans"; src: url(../assets/fonts/open-sans-latin-ext.woff2) format("woff2"); font-weight: 300 800; font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Noto Sans Arabic"; src: url(../assets/fonts/noto-sans-arabic.woff2) format("woff2"); font-weight: 100 900; font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC; }

:root {
  --red: #660000;
  --red-deep: #4a0000;
  --red-hover: #7d0f0f;
  --ink: #2b2626;
  --muted: #6b6464;
  --line: #e7e2e0;
  --mist: #f2f0ef;
  --charcoal: #232323;
  --focus: #660000;
  --wrap: 1180px;
  --gutter: 16px;
  --bookbar-h: 76px;
}

body {
  font-family: "Open Sans", "Noto Sans Arabic", system-ui, sans-serif;
  font-size: 16px; line-height: 1.65; color: var(--ink); background: #fff;
  padding-bottom: calc(var(--bookbar-h) + env(safe-area-inset-bottom));
}
:lang(ar) body, body:lang(ar) { font-family: "Noto Sans Arabic", "Open Sans", system-ui, sans-serif; line-height: 1.85; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
@media (min-width: 720px) { :root { --gutter: 32px; } }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 44px; padding: 0 20px; border-radius: 9px; border: 2px solid transparent;
  font-weight: 600; font-size: 15px; line-height: 1.2; text-decoration: none; white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s;
}
.btn--large { min-height: 52px; padding: 0 24px; font-size: 16px; }
.btn--small { min-height: 40px; padding: 0 16px; font-size: 14px; }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-hover); }
.btn--outline { border-color: var(--red); color: var(--red); background: #fff; }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--light { border-color: #fff; color: #fff; background: transparent; }
.btn--light:hover { background: #fff; color: var(--red); }

/* ---------- Topbar & Header ---------- */

.topbar { background: var(--red); color: #fff; font-size: 14px; }
.topbar__inner { display: flex; align-items: center; gap: 18px; min-height: 42px; }
.topbar a { color: #fff; text-decoration: none; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social .icon { width: 19px; height: 19px; }
.topbar__phone { display: inline-flex; align-items: center; gap: 8px; margin-inline-start: auto; font-weight: 600; }
.topbar__phone .icon { width: 17px; height: 17px; }
.topbar__lang { padding: 4px 12px; border: 1px solid rgb(255 255 255 / .5); border-radius: 999px; font-size: 13px; line-height: 1.3; }
.topbar__lang:hover { background: rgb(255 255 255 / .12); }
.topbar__lang:lang(ar) { font-family: "Noto Sans Arabic", sans-serif; }

.header { position: sticky; top: 0; z-index: 20; background: #fff; border-bottom: 3px solid var(--red); }
.header__inner { display: flex; align-items: center; gap: 16px; min-height: 72px; }
.header__logo { margin-inline-end: auto; }
.header__logo img { width: 172px; }
.header__book { display: none; }
.header__burger {
  position: relative; width: 44px; height: 44px; margin-inline-end: -8px; border: 0; background: none; color: var(--red);
}
.header__burger span, .header__burger span::before, .header__burger span::after {
  position: absolute; left: 11px; width: 22px; height: 2px; background: currentColor; border-radius: 2px; content: "";
  transition: transform .25s, opacity .2s;
}
.header__burger span { top: 21px; }
.header__burger span::before { left: 0; top: -7px; }
.header__burger span::after { left: 0; top: 7px; }
.header__burger[aria-expanded="true"] span { background: transparent; }
.header__burger[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.header__burger[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.nav { display: none; }
.nav[data-open="true"] {
  display: block; position: fixed; inset: calc(42px + 75px) 0 0; z-index: 30; overflow-y: auto;
  background: #fff; border-top: 1px solid var(--line);
}
.nav__list { list-style: none; padding-block: 8px 40px; }
.nav__list a { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; font-size: 17px; }
.nav__list a[aria-current="page"] { color: var(--red); font-weight: 600; }

@media (min-width: 1024px) {
  .header__logo img { width: 206px; }
  .header__book { display: inline-flex; }
  .header__burger { display: none; }
  .nav, .nav[data-open="true"] { display: block; position: static; border-top: 1px solid var(--line); overflow: visible; }
  .nav__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 4px; padding-block: 0; }
  .nav__list a { padding: 11px 10px; border: 0; font-size: 14px; color: #555; }
  .nav__list a:hover { color: var(--red); }
  .nav__list a[aria-current="page"] { color: var(--red); box-shadow: inset 0 -2px 0 var(--red); }
}

/* ---------- Hero ---------- */

.hero { background: radial-gradient(circle at top left, #dadada 0%, #fff 34%); overflow: hidden; }
[dir="rtl"] .hero { background: radial-gradient(circle at top right, #dadada 0%, #fff 34%); }
.hero__inner { display: grid; gap: 8px; padding-top: 36px; }
.hero h1 { font-weight: 400; font-size: clamp(30px, 7.4vw, 50px); line-height: 1.15; letter-spacing: -.01em; color: var(--red); max-width: 16ch; }
:lang(ar) .hero h1 { line-height: 1.45; letter-spacing: 0; }
.hero__lead { margin-top: 16px; font-size: 17px; max-width: 42ch; }
/* Mobil übernimmt die feste Buchungsleiste die Buttons */
.hero__actions { display: none; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero__img { justify-self: end; width: min(58%, 240px); margin-top: -12px; }
@media (min-width: 1024px) { .hero__actions { display: flex; } }

.status { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 14px; font-weight: 600; }
.status:empty { display: none; }
.status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #b3261e; }
.status[data-open="true"]::before { background: #2e7d4f; box-shadow: 0 0 0 4px rgb(46 125 79 / .15); }

@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.15fr 1fr; align-items: end; padding-top: 56px; }
  .hero__text { padding-bottom: 72px; }
  .hero__img { width: min(100%, 420px); margin: 0; }
}

/* ---------- Schnellkontakt ---------- */

.quick {
  display: grid; grid-template-columns: repeat(4, 1fr); margin-top: -1px;
  border: 1px solid rgb(102 0 0 / .45); border-radius: 20px; background: #fff;
  box-shadow: 0 12px 32px -16px rgb(60 0 0 / .3); position: relative; z-index: 1;
}
.quick__item {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 4px 14px;
  color: var(--ink); text-decoration: none; font-size: 13px; font-weight: 600; text-align: center;
}
.quick__item + .quick__item { border-inline-start: 1px solid var(--line); }
.quick__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--red); color: var(--red); transition: background-color .2s, color .2s; }
.quick__item:hover .quick__icon { background: var(--red); color: #fff; }
@media (min-width: 880px) {
  .quick { margin-top: -36px; max-width: 760px; }
  .quick__item { flex-direction: row; justify-content: center; gap: 12px; padding: 18px 12px; font-size: 15px; }
}

/* ---------- Karten ---------- */

.cards { display: grid; gap: 20px; padding-block: 40px 64px; }
.card {
  padding: 24px 20px; border: 1px solid rgb(102 0 0 / .45); border-radius: 20px; background: #fff;
  box-shadow: 0 12px 32px -18px rgb(60 0 0 / .28);
}
.card > * + * { margin-top: 14px; }
.card__title { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 400; line-height: 1.3; color: var(--red); }
.card__title .icon { width: 24px; height: 24px; }
.card__subtitle { display: flex; align-items: center; gap: 8px; padding-top: 6px; font-size: 16px; font-weight: 600; color: var(--red); }
.card__lead { font-size: 17px; }
.card .map { margin-inline: -20px; border-block: 1px solid var(--line); }
.card__links { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 15px; font-weight: 600; }
.card__links a, .card__phone a, .contact-list a { color: var(--red); text-underline-offset: 3px; }
.card__note { padding: 14px 16px; border-radius: 12px; background: var(--mist); font-size: 14px; line-height: 1.55; }
.card__note h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.card__phone { font-weight: 600; }

.hours { display: grid; }
.hours__row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 12px; margin-inline: -12px; border-radius: 10px; }
.hours__row + .hours__row { border-top: 1px solid var(--line); }
.hours__row.is-today { background: #f7eeee; border-color: transparent; font-weight: 700; }
.hours__row.is-today + .hours__row { border-color: transparent; }
.hours dd { white-space: nowrap; font-variant-numeric: tabular-nums; }
.status--card { margin-top: 10px; }

.contact-list { list-style: none; display: grid; }
.contact-list li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list span { color: var(--muted); }
.contact-list a { font-weight: 600; text-decoration: none; }

@media (min-width: 880px) {
  .cards { grid-template-columns: repeat(6, 1fr); gap: 24px; padding-block: 56px 88px; }
  .card { padding: 28px; }
  .card .map { margin-inline: -28px; }
  .card--address { grid-column: span 4; grid-row: span 2; }
  .card--hours { grid-column: span 2; }
  .card--contact { grid-column: span 2; }
  .card--parking, .card--visit { grid-column: span 3; }
}

/* ---------- Rote Bogen-Sektion (wie die Bewertungen auf der Startseite) ---------- */

.teaser {
  position: relative; color: #fff; text-align: center;
  background: radial-gradient(ellipse at 50% 30%, #8c1d1d 0%, #660000 55%, #4a0000 100%);
  padding: 88px 0 72px;
}
.teaser__curve { position: absolute; top: 0; left: 0; width: 100%; height: 56px; }
.teaser__inner { display: grid; justify-items: center; gap: 16px; }
.teaser h2 { font-weight: 400; font-size: clamp(28px, 5.6vw, 40px); line-height: 1.2; }
.teaser p { max-width: 46ch; font-size: 17px; color: rgb(255 255 255 / .88); }
.teaser .btn { margin-top: 8px; }

/* ---------- Footer ---------- */

.footer { background: var(--charcoal); color: #e6e6e6; font-size: 15px; }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__main { display: grid; gap: 20px; padding-block: 44px 36px; }
.footer__main strong { color: #fff; }
.footer__nav { background: #2d2d2d; }
.footer__nav ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 24px; padding-block: 16px; font-size: 14px; }
.footer__nav a { color: #cfcfcf; }
.footer__bottom { background: var(--red); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 24px; padding-block: 16px; font-size: 14px; text-align: center; }
.footer__social { display: flex; gap: 18px; }
.footer__social .icon { width: 24px; height: 24px; }
@media (min-width: 720px) { .footer__main { grid-template-columns: 1fr 1fr; } }

/* ---------- Fester Buchungs-Button (mobil) ---------- */

.bookbar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 25;
  display: flex; gap: 10px; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgb(255 255 255 / .96); backdrop-filter: blur(8px);
  box-shadow: 0 -6px 24px rgb(40 0 0 / .12); border-top: 1px solid var(--line);
}
.bookbar__main { flex: 1; }
.bookbar__call { width: 52px; padding: 0; flex: none; }
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .bookbar { display: none; }
}

/* ---------- Buchung in Variante A ---------- */

.bk {
  --bk-font: "Open Sans", "Noto Sans Arabic", system-ui, sans-serif;
  --bk-accent: var(--red);
  --bk-accent-soft: #f7eeee;
  --bk-surface: var(--mist);
  --bk-radius: 20px;
  --bk-radius-sm: 10px;
}
.bk:lang(ar) { --bk-font: "Noto Sans Arabic", "Open Sans", system-ui, sans-serif; }
.bk__head { border-bottom: 3px solid var(--red); }
.bk__title { font-weight: 400; color: var(--red); font-size: 23px; }
