:root {
  --bg: #120b08;
  --bg-soft: #22130f;
  --surface: rgba(44, 24, 17, 0.78);
  --surface-strong: rgba(34, 19, 15, 0.92);
  --text: #f8efe7;
  --text-muted: #dcc9b9;
  --brand: #f0a52f;
  --brand-strong: #ffbe58;
  --brand-dark: #be7700;
  --border: rgba(240, 165, 47, 0.22);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 25% 10%, #422313 0%, var(--bg) 55%);
  line-height: 1.45;
}

a {
  color: var(--brand-strong);
}

a:hover {
  color: #fff1da;
}

#site-head {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 1.5rem 1rem 4.5rem;
  position: relative;
  overflow: hidden;
}

#site-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 5, 4, 0.25) 0%, rgba(8, 5, 4, 0.82) 70%, rgba(8, 5, 4, 0.97) 100%);
}

#header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#site-head-content {
  z-index: 2;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding-bottom: 3.2rem;
}

.hero-card {
  backdrop-filter: blur(8px);
  background: linear-gradient(140deg, rgba(17, 10, 8, 0.72), rgba(17, 10, 8, 0.9));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.hero-logo {
  width: clamp(120px, 28vw, 220px);
  height: auto;
  display: block;
  margin: 0 auto 1.2rem;
  background: #fff;
  border-radius: 50%;
  padding: clamp(0.45rem, 1.8vw, 0.8rem);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(240, 165, 47, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--brand-strong);
}

.hero-title {
  margin: 0;
  color: #fff;
  line-height: 1.05;
  font-weight: 800;
  font-size: clamp(1.7rem, 6.8vw, 3.2rem);
  text-wrap: balance;
}

.hero-subtitle {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 3.8vw, 1.35rem);
}

.hero-actions {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.7rem 1.1rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  color: #2a1408;
  background: linear-gradient(180deg, var(--brand-strong), var(--brand));
  box-shadow: 0 8px 20px rgba(240, 165, 47, 0.32);
}

.btn-primary:hover {
  color: #1d1007;
  filter: brightness(1.06);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: var(--brand);
  background: rgba(240, 165, 47, 0.1);
}

#header-arrow {
  position: absolute;
  left: 50%;
  bottom: 0.4rem;
  transform: translateX(-50%);
  margin: 0;
  z-index: 2;
  color: rgba(255, 255, 255, 0.85);
  font-size: 2.2rem;
}

.content {
  position: relative;
  z-index: 2;
}

.fixed-nav {
  display: none;
}

.post-holder {
  background: transparent;
  color: var(--text);
  padding: 0.8rem 1rem 0;
}

.post-holder.odd {
  background: transparent;
}

.post {
  width: min(100%, 1120px);
  max-width: none;
  margin: 0 auto;
  height: auto;
  padding: 0;
}

.post-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.2rem 1rem;
  box-shadow: var(--shadow);
}

.post-title {
  margin: 0;
  color: #fff4e1;
  font-size: clamp(1.4rem, 5.4vw, 2.2rem);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(240, 165, 47, 0.2);
}

.post-content {
  font-size: 1rem;
  color: #f7e7d8;
  line-height: 1.4;
}

.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  color: #ffd89f;
  margin-top: 1.25rem;
}

.post-content h3 {
  font-size: clamp(1.05rem, 4.3vw, 1.45rem);
}

.post-content h4 {
  font-size: clamp(0.98rem, 3.8vw, 1.25rem);
}

.post-content h5,
.post-content h6 {
  font-size: clamp(0.9rem, 3.2vw, 1.1rem);
}

.post-content p {
  margin: 0.8rem 0 0;
}

.post-content strong {
  color: #ffd089;
}

.post-content img {
  width: 100%;
  margin-top: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

#le-burger-truffade .post-content img {
  width: min(100%, 420px);
  margin-left: auto;
  margin-right: auto;
}

#le-bar-a-truffade .post-content img {
  width: min(100%, 420px);
  margin-left: auto;
  margin-right: auto;
}

.post-content ul {
  padding: 0;
  margin: 0.8rem 0 0;
}

.post-content li {
  list-style: none;
  margin: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.post-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-strong);
  text-shadow: 0 0 10px rgba(240, 165, 47, 0.32);
}

#offres-de-chaque-jour .post-body {
  background: linear-gradient(155deg, rgba(64, 34, 20, 0.92), rgba(35, 20, 14, 0.92));
  border-color: rgba(240, 165, 47, 0.42);
}

#offres-de-chaque-jour .post-content li {
  margin: 0.55rem 0;
  padding: 0.55rem 0.75rem 0.55rem 1.6rem;
  border: 1px solid rgba(240, 165, 47, 0.24);
  border-radius: 12px;
  background: rgba(240, 165, 47, 0.08);
}

#offres-de-chaque-jour .post-content h3 {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(240, 165, 47, 0.16);
  border: 1px solid rgba(240, 165, 47, 0.35);
}

.post-after {
  display: none;
}

.dishes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1rem;
}

.dish {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem;
}

.dish img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.dish h4 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  margin: 0.65rem 0 0;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(240, 165, 47, 0.3);
  font-size: 1.02rem;
}

.dish .price {
  font-weight: 800;
  color: var(--brand-strong);
  white-space: nowrap;
}

.dish p {
  margin: 0.55rem 0 0;
  font-size: 0.93rem;
}

.available_soon,
.new {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 700;
}

.new {
  color: var(--brand-strong);
}

.available_soon {
  color: #c6b9ad;
}

.socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
}

.social a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(240, 165, 47, 0.14);
  border: 1px solid rgba(240, 165, 47, 0.42);
  color: var(--brand-strong);
  font-size: 1.5rem;
}

.social a:hover {
  background: rgba(240, 165, 47, 0.3);
  color: #fff3df;
}

.mapouter-container {
  margin-top: 1rem;
}

.map-frame {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 16px;
}

#menu-head {
  min-height: 180px;
  padding: 1rem;
  display: grid;
  place-items: center;
  background-image: linear-gradient(0deg, rgba(18, 11, 8, 0.78), rgba(18, 11, 8, 0.78)), url("/images/cover-image2.png");
  background-position: center;
  background-size: cover;
}

#menu-head img {
  width: clamp(120px, 38vw, 220px);
}

.site-footer {
  margin-top: 1.4rem;
  padding: 1.2rem 1rem 2.2rem;
  background: #090605;
  color: #c3b2a4;
  font-size: 0.82rem;
}

.site-footer a {
  color: #f3cc8e;
}

@media (min-width: 740px) {
  .hero-card {
    padding: 2rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .post-holder {
    padding: 1.1rem 1.5rem 0;
  }

  .post-body {
    padding: 1.8rem;
  }

  .dishes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fixed-nav {
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0.9rem;
    left: 50%;
    transform: translateX(-50%);
    width: min(96%, 980px);
    overflow-x: auto;
    gap: 0.55rem;
    padding: 0.5rem;
    border-radius: 999px;
    background: rgba(10, 7, 6, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
  }

  a.fn-item {
    display: inline-flex;
    margin: 0;
    white-space: nowrap;
    color: #eedac6;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.04);
  }

  a.fn-item.active {
    background: rgba(240, 165, 47, 0.24);
    color: #fff2de;
    opacity: 1;
  }
}

@media (min-width: 1040px) {
  .dishes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
