@charset "UTF-8";
:root {
  --burger-paper: #ffffff;
  --burger-bg: rgba(245, 242, 237, 0.98);
  --burger-beige: #efe6db;
  --burger-ink: #1f1f1f;
  --burger-muted: #6b6b6b;
  --burger-rule: #d8d1c8;
  --burger-shadow: rgba(0, 0, 0, 0.12);
  --burger-accent: #ffc107;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(to right, #ebeae8 0, #ebeae8 calc(100% - 320px), #ebe2d6 calc(100% - 320px), #ebe2d6 100%);
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--beige);
  z-index: -2;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 26px 60px;
  position: relative;
}

/* petite “forme” décorative (léger clin d’œil au livret) */
.page::before {
  content: "";
  position: absolute;
  left: -90px;
  top: 110px;
  width: 220px;
  height: 220px;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  z-index: -1;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.hero-left {
  flex: 1;
  min-width: 280px;
}

.hero-script {
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero h1 {
  margin: 0;
  font-size: 44px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-right {
  width: 320px;
  text-align: right;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.cats {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid var(--rule);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.cat:hover {
  background: var(--paper);
}

.cat.is-active {
  background: var(--paper);
  border-color: rgba(0, 0, 0, 0.28);
}

.alert {
  margin: 16px 0;
  padding: 10px 12px;
  background: #ffd7d7;
  border: 1px solid #ffb0b0;
  border-radius: 10px;
}

.empty {
  margin-top: 26px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--rule);
  border-radius: 12px;
  color: var(--muted);
}

.list {
  margin-top: 18px;
}

.item {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 26px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.item-title {
  margin: 0 0 4px 0;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 800;
}

.item-place {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 8px;
}

.item-body {
  font-size: 14px;
  line-height: 1.55;
}

.item-body p {
  margin: 0 0 10px 0;
}

.item-body ul,
.item-body ol {
  margin: 8px 0 10px 18px;
}

.item-body blockquote {
  margin: 10px 0;
  padding: 10px 12px;
  border-left: 4px solid rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.55);
}

.item-infos {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.item-infos a {
  color: inherit;
  text-decoration: underline;
  word-break: break-word;
}

.item-media img {
  width: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.img-placeholder {
  width: 100%;
  min-height: 180px;
  border-radius: 4px;
  border: 1px dashed rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-right {
    width: auto;
    text-align: left;
  }
  .item {
    grid-template-columns: 1fr;
  }
}
.nav-bas {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  width: 100vw;
  height: 10vh;
  min-height: 40px;
  color: black;
  margin: 0px;
  padding: 15px;
  margin-bottom: 0px;
  bottom: 0;
}
@media screen and (max-width: 320px) {
  .nav-bas {
    width: 310px;
  }
}

.translation-note {
  max-width: 720px;
  margin: 0.8rem 0 1rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid #c8a35a;
  background: rgba(255, 255, 255, 0.75);
  color: #3b3128;
  font-size: 0.95rem;
  line-height: 1.45;
}

.hero-title {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 100px;
  font-family: "Hello Darling";
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: bold;
  color: #3b3128;
  text-align: center;
  white-space: nowrap;
}

#titreVisitesH2 {
  margin-top: 0;
}

.titreTexte {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.selectLangue {
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 1000;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.langMenu {
  position: relative;
}

.langMenu__summary {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.94);
  color: #1f1f1f;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  line-height: 1;
}

.langMenu__summary::-webkit-details-marker {
  display: none;
}

.langMenu__summary::marker {
  content: "";
}

.langMenu__list {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  min-width: 13rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.98);
  color: #1f1f1f;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.langMenu__link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.75rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.langMenu__link:hover,
.langMenu__link:focus {
  background: #f1e5d4;
  outline: none;
}

.langMenu__link[aria-current=page] {
  background: #ead7bb;
  font-weight: 700;
}

.langMenu__code {
  margin-left: auto;
  font-size: 0.78rem;
  opacity: 0.7;
}

@media (max-width: 640px) {
  .selectLangue {
    top: 8px;
    right: 8px;
  }
  .langMenu__summary {
    padding: 0.42rem 0.6rem;
  }
  .langMenu__list {
    min-width: 11.5rem;
  }
}