/*
  Les Gamins - Style principal
  Design sombre et élégant, responsive, compatible hébergement statique OVH.
*/

:root {
  --bg-main: #0b0f0d;
  --bg-soft: #121915;
  --header-height: 74px;
  --card-bg: rgba(18, 25, 21, 0.85);
  --text-main: #f5f5f5;
  --text-muted: #c5c9c7;
  --accent: #9a7a3e;
  --accent-dark: #214032;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --transition: 0.3s ease;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

/* Ensure the fixed header doesn't overlap page content */
.site-header {
  height: var(--header-height);
}

main {
  padding-top: calc(var(--header-height) + 8px);
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #1a201d 0%, #252d29 100%);
  color: var(--text-main);
  line-height: 1.6;
}

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

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section {
  padding: 100px 0 70px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 15, 13, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(154, 122, 62, 0.16);
  color: #f9e6c0;
}

.nav-accordion details {
  position: relative;
  margin: 0;
}

.nav-accordion summary {
  display: block;
  list-style: none;
  cursor: pointer;
  padding: 8px 10px;
  line-height: 1.2;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav-accordion summary::-webkit-details-marker {
  display: none;
}

.nav-accordion summary:hover,
.nav-accordion details[open] > summary {
  background: rgba(154, 122, 62, 0.16);
  color: #f9e6c0;
}

.nav-submenu {
  list-style: none;
  margin: 8px 0 0;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #101612;
  display: grid;
  gap: 4px;
}

.nav-submenu a {
  display: block;
}

@media (min-width: 901px) {
  .nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 190px;
    z-index: 1001;
  }
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
}

.nav-reserve {
  white-space: nowrap;
  padding: 10px 14px;
  font-size: 0.82rem;
  line-height: 1;
  background: linear-gradient(135deg, #2d7a55, #3f9a6f);
  border: 1px solid rgba(126, 211, 159, 0.45);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(32, 94, 68, 0.32);
}

.nav-reserve:hover {
  background: linear-gradient(135deg, #368d63, #4eae7f);
  color: #ffffff;
}

.hero {
  min-height: clamp(360px, 54vh, 520px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38)),
    url('assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(154, 122, 62, 0.25), transparent 45%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding-top: 46px;
}

.hero h1,
.page-hero h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin: 0 0 14px;
}

.hero-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 28px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-dark), #2f5b47);
  color: #fff;
}

.btn-secondary {
  background: linear-gradient(135deg, #5d4924, var(--accent));
  color: #fff;
}

.inner-page main {
  padding-top: 70px;
}

.page-hero {
  text-align: center;
  margin-bottom: 26px;
}

.page-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.intro {
  text-align: center;
}

.intro p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
}

.intro-home-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 1.25fr) 1fr;
  gap: 18px;
  align-items: center;
}

.intro-home.section {
  padding-top: 34px;
  padding-bottom: 26px;
}

.intro-home-media {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.intro-home-image {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 0;
  border-radius: 14px;
  opacity: 0.94;
}

.intro-home-content {
  text-align: center;
}

.intro-home-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.intro-home-content p {
  max-width: 560px;
  margin: 0 auto;
}

.intro-line {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.intro-line + .intro-line {
  margin-top: 6px;
}

.intro-line-red {
  color: #b84a4f;
}

.intro-line-blue {
  color: #244678;
}

.highlights,
.info-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.highlights.section {
  padding-top: 26px;
  padding-bottom: 30px;
}

.info-layout {
  grid-template-columns: 1.2fr 1fr;
}

.info-layout-single {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 24px auto 20px;
}

.info-layout-single .card {
  background: linear-gradient(180deg, #f4f2ee 0%, #eeece7 100%);
  color: #1f2830;
  border: 1px solid rgba(52, 60, 68, 0.14);
  box-shadow: 0 14px 30px rgba(8, 12, 18, 0.1);
}

.info-layout-single .card p,
.info-layout-single .card a,
.info-layout-single .card h2 {
  color: #1f2830;
}

.hours-showcase {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(180deg, #f4f2ee 0%, #eeece7 100%);
  color: #1e2630;
  border-radius: var(--radius);
  border: 1px solid rgba(52, 60, 68, 0.14);
  padding: clamp(36px, 7vw, 64px) 20px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(8, 12, 18, 0.12);
}

.hours-showcase h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.01em;
  text-transform: none;
}

.hours-divider {
  position: relative;
  margin: 28px 0 34px;
  height: 36px;
}

.hours-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid rgba(36, 47, 58, 0.18);
}

.hours-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px solid rgba(36, 47, 58, 0.2);
  background: #f4f2ee;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hours-icon-svg {
  width: 20px;
  height: 20px;
  fill: #2f6771;
}

.hours-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
  margin: 0 auto;
}

.hours-tile {
  background: #fbfbfa;
  border: 1px solid rgba(49, 58, 65, 0.12);
  border-radius: 8px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(20, 26, 34, 0.08);
}

.hours-tile h2 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.hours-tile p {
  margin: 0;
  color: #253140;
  font-size: 1.02rem;
  font-weight: 500;
}

.info-layout-single .btn-secondary {
  background: linear-gradient(135deg, #3d5a4c, #557b67);
}

.card-light {
  background: rgba(255, 255, 255, 0.92);
  color: #1f2830;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-light p,
.card-light a {
  color: #1f2830;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.menu-grid {
  display: grid;
  gap: 18px;
}

.boissons-filters {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.boissons-search-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.boissons-search-input {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  outline: none;
  margin-bottom: 12px;
}

.boissons-search-input::placeholder {
  color: var(--text-muted);
}

.boissons-search-input:focus {
  border-color: rgba(154, 122, 62, 0.55);
  box-shadow: 0 0 0 2px rgba(154, 122, 62, 0.2);
}

.boissons-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.boissons-content-wrap {
  position: relative;
}

.boissons-side-decor {
  position: absolute;
  top: 140px;
  width: 180px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.62;
  pointer-events: none;
  z-index: 0;
}

.boissons-side-left {
  left: -280px;
}

.boissons-side-right {
  right: -280px;
  opacity: 0.9;
}

.boissons-side-top {
  left: -210px;
  top: -170px;
  width: 190px;
  opacity: 0.72;
  transform: rotate(-18deg);
}

.boissons-content-wrap .boissons-filters,
.boissons-content-wrap #boissons-container {
  position: relative;
  z-index: 1;
}

.boissons-photos-section {
  min-height: 0;
  padding: 8px 0;
  display: block;
}

.boissons-photos-section h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.boissons-photos-note {
  margin: 0;
  color: var(--text-muted);
}

.boissons-top-quote {
  margin: 0 auto 20px;
  max-width: 900px;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(184, 74, 79, 0.95), rgba(138, 53, 59, 0.95));
  color: #d9e6ff;
  border: 1px solid rgba(138, 53, 59, 0.65);
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-style: italic;
  text-align: center;
  box-shadow: 0 8px 16px rgba(138, 53, 59, 0.2);
}

.boissons-left-image,
.boissons-panel-image {
  width: 100%;
  max-width: 330px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  border: 0;
  box-shadow: none;
  opacity: 0.34;
}

.boissons-left-image {
  grid-column: 1;
  justify-self: start;
}

.boissons-photos-panel {
  grid-column: 3;
  background: rgba(120, 128, 138, 0.2);
  border-radius: 12px;
  padding: 14px;
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.boissons-panel-image {
  display: block;
  margin: 0 auto;
}

.boissons-photos-text {
  text-align: center;
  max-width: 760px;
  padding: 8px 10px;
  margin: 0 auto;
}

.boissons-filter-btn {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.boissons-filter-btn:hover {
  background: rgba(154, 122, 62, 0.16);
  border-color: rgba(154, 122, 62, 0.45);
}

.boissons-filter-btn.active {
  background: linear-gradient(135deg, #b84a4f, #cc767a);
  color: #ffffff;
  border-color: rgba(138, 53, 59, 0.75);
  font-weight: 600;
}

.menu-language-toolbar {
  margin: 0;
  padding: 10px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}

.menu-content-layout {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.menu-main-column {
  min-width: 0;
}

.menu-filters {
  margin-top: 0;
}

.menu-language-label {
  font-weight: 600;
}

.menu-language-flags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.menu-language-flag {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 1.28rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.menu-language-flag img {
  width: 26px;
  height: 18px;
  display: block;
  border-radius: 2px;
  object-fit: cover;
}

.menu-language-flag:hover,
.menu-language-flag.active {
  background: rgba(154, 122, 62, 0.16);
  color: #f9e6c0;
  border-color: rgba(154, 122, 62, 0.45);
}

.menu-language-select {
  min-width: 180px;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  color-scheme: dark;
}

.menu-language-select option {
  background: #101612;
  color: #f5f5f5;
}

.menu-language-select:focus {
  outline: none;
  border-color: rgba(154, 122, 62, 0.55);
  box-shadow: 0 0 0 2px rgba(154, 122, 62, 0.2);
}

@media (max-width: 900px) {
  .menu-content-layout {
    grid-template-columns: 1fr;
  }

  .menu-language-toolbar {
    width: fit-content;
  }

  .intro-home-layout {
    grid-template-columns: 1fr;
  }

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

.boissons-animating .menu-category {
  animation: boissons-fade-in 0.22s ease;
}

@keyframes boissons-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tapas-ardoises-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.tapas-ardoises-grid > .menu-grid {
  height: 100%;
}

.tapas-ardoises-grid .menu-category {
  height: 100%;
}

.menu-category h2 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #f3d9a6;
}

.menu-category-note {
  margin: -6px 0 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.menu-item {
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.menu-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.menu-item h3 {
  margin: 0;
  font-size: 1rem;
}

.price {
  color: #f3d9a6;
  white-space: nowrap;
  font-weight: 600;
}

.menu-item p {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.menu-item-prices {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.menu-item-price-cell {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-item-price-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu-item-price-value {
  color: #f3d9a6;
  font-weight: 600;
  font-size: 0.95rem;
}

.schedule {
  list-style: none;
  margin: 0;
  padding: 0;
}

.schedule li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.schedule li:last-child {
  border-bottom: 0;
}

.form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(154, 122, 62, 0.35);
  outline-offset: 1px;
}

.form-status {
  margin-top: 14px;
  min-height: 22px;
  color: #f3d9a6;
}

.events-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.event-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.event-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.event-date {
  color: #f3d9a6;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.event-title {
  color: var(--text-main);
  font-weight: 500;
  text-align: right;
}

.insta-spotlight {
  display: grid;
  gap: 14px;
}

.insta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.insta-head h2 {
  margin: 0;
}

.insta-note {
  margin: 0;
  color: var(--text-muted);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.map-embed {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(52, 60, 68, 0.2);
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.photos-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.photo-genre-btn {
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: none;
}

.photo-genre-btn:hover {
  transform: translateY(-1px);
  background: rgba(154, 122, 62, 0.28);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.photo-genre-btn.active {
  background: rgba(154, 122, 62, 0.42);
  color: #fff;
  border-color: rgba(154, 122, 62, 0.6);
  box-shadow: 0 6px 18px rgba(154,122,62,0.12);
}

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

.photo-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}


.noscript-message {
  text-align: center;
  color: var(--text-muted);
}

.legal-content h2 {
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.footer-links {
  margin: 0 0 8px;
  color: var(--text-muted);
}

.footer-links a {
  color: #f3d9a6;
}

.admin-layout {
  display: grid;
  gap: 18px;
}

.admin-site-settings {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.admin-reservation-block {
  display: grid;
  gap: 10px;
}

.admin-display-block {
  display: grid;
  gap: 8px;
}

.admin-reservation-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.admin-toolbar {
  display: grid;
  gap: 12px;
}

.admin-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-tools-label {
  color: var(--text-muted);
  align-self: center;
}

.admin-price-select,
.admin-price-input {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.admin-price-input {
  width: 110px;
}

.admin-search-input {
  flex: 1;
  min-width: 260px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.admin-import-btn {
  cursor: pointer;
}

.admin-hint {
  margin: 0;
  color: var(--text-muted);
}

.admin-status {
  margin: 0;
  min-height: 22px;
  color: #1f5f3a;
  font-weight: 600;
}

.admin-status.error {
  color: #a12a33;
}

.admin-categories {
  display: grid;
  gap: 16px;
}

.admin-category {
  display: grid;
  gap: 14px;
}

.admin-category-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.admin-select-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.86rem;
  padding-bottom: 10px;
}

.admin-select-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.admin-item-select {
  padding-bottom: 0;
  align-self: flex-end;
  margin-bottom: 10px;
}

.admin-global-select {
  padding-bottom: 0;
  align-self: center;
}

.admin-category-meta {
  color: var(--text-muted);
  font-size: 0.86rem;
  padding-bottom: 10px;
}

.admin-collapse-btn {
  padding: 10px 12px;
}

.admin-category.collapsed .admin-items {
  display: none;
}

.admin-items {
  display: grid;
  gap: 10px;
}

.admin-item-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-field-group {
  display: grid;
  gap: 6px;
}

.admin-field-group label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.admin-field-group input {
  min-width: 180px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.admin-field-grow {
  flex: 1;
}

.admin-danger {
  background: rgba(139, 41, 41, 0.5);
}

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding: 22px 0;
  color: var(--text-muted);
  text-align: center;
}

.social-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1e2a24;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  background: #f3d9a6;
  color: #1a221e;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .highlights,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .tapas-ardoises-grid {
    grid-template-columns: 1fr;
  }

  .nav-reserve {
    margin-left: auto;
    margin-right: 8px;
    padding: 10px 12px;
    font-size: 0.78rem;
  }

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

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

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

  .boissons-photos-section {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
    padding: 0;
  }

  .boissons-left-image,
  .boissons-photos-panel,
  .boissons-photos-text {
    grid-column: 1;
    justify-self: stretch;
    max-width: none;
  }

  .boissons-photos-panel {
    background: rgba(120, 128, 138, 0.16);
    padding: 10px;
  }

  .boissons-photos-text {
    padding: 0;
  }

  .boissons-left-image,
  .boissons-panel-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    opacity: 0.82;
  }

  .boissons-side-decor {
    display: none;
  }

  .hours-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    right: 4%;
    width: min(250px, 90vw);
    flex-direction: column;
    background: #101612;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-submenu {
    position: static;
    margin-top: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    background-position: center left;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 90px 0 54px;
  }

  .card {
    padding: 18px;
  }

  .events-gallery {
    grid-template-columns: 1fr;
  }

  .insta-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .photos-gallery {
    grid-template-columns: 1fr;
  }

  .event-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-title {
    text-align: left;
  }

  .menu-item-header {
    flex-direction: column;
    gap: 4px;
  }

  .menu-item-prices {
    grid-template-columns: 1fr;
  }

  .admin-item-row,
  .admin-category-top {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-field-group input {
    min-width: 100%;
  }

  .intro-home-media {
    grid-template-columns: 1fr;
  }
}

:root {
  --bg-main: #f7f3e8;
  --bg-soft: #f2ede0;
  --card-bg: rgba(255, 255, 255, 0.78);
  --text-main: #244678;
  --text-muted: #355b90;
  --accent: #b84a4f;
  --accent-dark: #8a353b;
  --border: rgba(36, 70, 120, 0.24);
  --shadow: 0 8px 18px rgba(30, 51, 95, 0.1);
}

body {
  background-color: #f7f3e8;
  background-image:
    linear-gradient(to bottom, rgba(184, 74, 79, 0.34) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(to bottom, transparent 0 57px, rgba(89, 124, 184, 0.32) 57px 58px);
  color: var(--text-main);
}

.site-header {
  background: rgba(247, 243, 232, 0.9);
  border-bottom: 1px solid rgba(184, 74, 79, 0.28);
}

.logo,
.nav-links a,
.nav-accordion summary {
  color: #244678;
}

.nav-links a:hover,
.nav-links a.active,
.nav-accordion summary:hover,
.nav-accordion details[open] > summary {
  background: rgba(184, 74, 79, 0.1);
  color: #b84a4f;
}

.nav-submenu {
  background: #fffdf8;
}

.hero {
  background-image:
    linear-gradient(120deg, rgba(20, 28, 44, 0.45), rgba(25, 36, 58, 0.28)),
    linear-gradient(to bottom, rgba(184, 74, 79, 0.24) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(to bottom, transparent 0 57px, rgba(89, 124, 184, 0.2) 57px 58px),
    url('assets/images/hero.jpg');
  background-size: auto, auto, auto, cover;
  background-position: center;
}

.hero-overlay {
  background: radial-gradient(circle at top, rgba(39, 75, 140, 0.08), transparent 55%);
}

.hero h1,
.page-hero h1,
h2,
h3,
.menu-category h2,
.price,
.menu-item-price-value,
.event-date,
.form-status,
.hero-kicker {
  color: #b84a4f;
}

p,
.menu-item p,
.intro p,
.hero-subtitle,
.insta-note,
.menu-category-note,
.event-title,
.hours-tile p,
.footer-links,
.footer-links a {
  color: #244678;
}

.hero .hero-subtitle {
  color: #f3f5fb;
  text-shadow: 0 1px 2px rgba(16, 24, 38, 0.45);
}

.card,
.boissons-filters,
.menu-language-toolbar,
.event-row,
.menu-item-price-cell,
.hours-tile,
.nav-toggle,
.contact-form input,
.contact-form textarea,
.admin-price-select,
.admin-price-input,
.admin-search-input,
.photo-genre-btn,
.boissons-filter-btn,
.menu-language-flag {
  background: rgba(255, 255, 255, 0.82);
  color: #244678;
}

.btn-primary {
  background: linear-gradient(135deg, #b84a4f, #cc767a);
  color: #ffffff;
}

.btn-secondary,
.nav-reserve {
  background: linear-gradient(135deg, #244678, #4f73ad);
  color: #ffffff;
  border-color: rgba(36, 70, 120, 0.36);
}
