/* ==========================================================================
   IRISH PUB O'BRIAN — Stylesheet (refonte fidèle + améliorations)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

@font-face {
  font-family: 'Irish Penny';
  src: url('../assets/IrishPenny.ttf') format('truetype');
  font-display: swap;
}

/* ============== Tokens ============== */
:root {
  --green-deep: #012A13;
  --green-darker: #010C05;
  --cream: #E7E8CB;
  --cream-soft: #E9E7D8;
  --pill: #0E0E0E;
  --gold: #E3941E;
  --gold-deep: #b87514;
  --white: #ffffff;
  --shadow-sm: 0 4px 12px -4px rgba(1, 12, 5, 0.25);
  --shadow-md: 0 14px 30px -16px rgba(1, 12, 5, 0.35);
  --shadow-lg: 0 30px 60px -28px rgba(1, 12, 5, 0.5);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  color: var(--green-deep);
  overflow-x: hidden;
  line-height: 1.5;
  background: var(--cream-soft);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--white); }

/* ============== A11y ============== */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--green-deep);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 12px;
  z-index: 999;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============== Grid (subset bootstrap) ============== */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 15px; }
.fluid-container { width: 100%; padding: 0; margin: 0; }
.row { display: flex; flex-wrap: wrap; }
.col-1  { flex: 0 0 8.333%;  max-width: 8.333%; }
.col-3  { flex: 0 0 25%;     max-width: 25%; }
.col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5  { flex: 0 0 41.666%; max-width: 41.666%; }
.col-6  { flex: 0 0 50%;     max-width: 50%; }
.col-7  { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.col-sm-4 { flex: 0 0 33.333%; max-width: 33.333%; }

/* ============== Typography ============== */
h1 {
  text-align: center;
  font-family: 'Irish Penny', serif;
  color: var(--cream);
  padding-bottom: 30px;
  font-size: clamp(36px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.05;
}
h2 {
  text-align: center;
  font-family: 'Irish Penny', serif;
  color: var(--cream);
  font-size: clamp(32px, 4.5vw, 50px);
  padding-bottom: 80px;
  font-weight: 400;
  line-height: 1.1;
}
h3.vert {
  font-size: clamp(28px, 3vw, 40px);
  font-family: 'Irish Penny', serif;
  color: var(--green-deep);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.1;
}
h3.blanc {
  font-size: clamp(28px, 3vw, 40px);
  font-family: 'Irish Penny', serif;
  color: var(--cream);
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.1;
}
p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
}

/* ============== Boutons (double bordure orange offset + hover orange) ============== */
.bouton { display: block; width: fit-content; position: relative; }
.bouton::before {
  content: "";
  position: absolute;
  top: 7px; left: 7px; right: -7px; bottom: -7px;
  border: 3px solid var(--gold);
  border-radius: 999px;
  pointer-events: none;
  transition: top .45s var(--ease), left .45s var(--ease), right .45s var(--ease), bottom .45s var(--ease);
  z-index: 0;
}
.bouton.vert a, .bouton.blanc a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 15px 30px;
  font-size: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: 3px solid var(--gold);
  width: fit-content;
  transition: background-color .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.bouton.vert a { background: var(--green-deep); color: var(--white); }
.bouton.blanc a { background: var(--cream); color: var(--green-deep); }
.bouton:hover::before { top: 0; left: 0; right: 0; bottom: 0; }
.bouton.vert a:hover, .bouton.blanc a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ============== NAV (pill compact, logo intégré) ============== */
nav.navbar {
  position: fixed;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 16px;
  z-index: 99;
  top: 0;
  left: 0;
  pointer-events: none;
}
.navbar-collapse { justify-content: center; pointer-events: auto; }
ul#menu-header {
  pointer-events: auto;
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(6px, 1vw, 18px);
  padding: 6px;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 999px;
  border: 1px solid rgba(231, 232, 203, 0.08);
  box-shadow:
    0 18px 40px -18px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
ul#menu-header > li { position: relative; display: flex; align-items: center; }
/* Pont invisible pour conserver le hover entre le pill et le sous-menu */
ul#menu-header > li.has-children::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 220px;
  height: 14px;
  transform: translateX(-50%);
  pointer-events: none;
}
ul#menu-header > li.has-children:hover::before,
ul#menu-header > li.has-children:focus-within::before { pointer-events: auto; }
ul#menu-header > li.has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
  transition: transform .25s var(--ease), opacity .2s ease;
}
ul#menu-header > li.has-children:hover > a::after,
ul#menu-header > li.has-children:focus-within > a::after { opacity: 1; transform: rotate(225deg) translateY(2px); }

a.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--cream);
  padding: 11px 18px;
  font-size: 15px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease;
}
a.nav-link:hover, a.nav-link:focus-visible {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  outline-offset: 4px;
}
a[aria-current="page"].nav-link {
  color: var(--gold);
  background: rgba(227, 148, 30, 0.12);
}

/* Logo central */
.nav-logo-link {
  padding: 0 !important;
  background: transparent !important;
  margin: 0 6px;
}
.nav-logo-img,
.nav-logo {
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.5);
  transition: transform .4s var(--ease);
}
.nav-logo-link:hover .nav-logo-img,
.nav-logo-link:hover .nav-logo,
.nav-logo-link:focus-visible .nav-logo {
  transform: rotate(-6deg) scale(1.08);
}
.menu-image-title-hide { display: none; }

/* Sub-menu (dropdown sous Nos boissons) */
ul.sub-menu {
  list-style: none;
  display: none;
  position: absolute;
  z-index: 3;
  padding: 8px;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(231, 232, 203, 0.08);
  border-radius: 18px;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.65);
  flex-direction: column;
  gap: 2px;
}
ul.sub-menu li { display: block; }
ul.sub-menu a.nav-link {
  padding: 9px 16px;
  font-size: 14px;
  border-radius: 10px;
  display: block;
}
ul#menu-header > li.has-children:hover ul.sub-menu,
ul#menu-header > li.has-children:focus-within ul.sub-menu {
  display: flex;
  animation: submenuIn .25s var(--ease);
}
@keyframes submenuIn { from { opacity: 0; transform: translateX(-50%) translateY(-6px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

.navbar-toggler {
  display: none;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--cream);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 1.4rem;
  pointer-events: auto;
  border: 1px solid rgba(231, 232, 203, 0.08);
}

/* ============== HERO commun ============== */
.accueil-haut, .nos-soirees-haut, .nos-boissons-haut, .liste-boisson-haut {
  height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ============== Cocktails hero (image full-width naturelle) ============== */
.cocktails-hero {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  background: var(--green-deep);
}
.cocktails-hero .hero-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 88vh;
  object-fit: cover;
  object-position: center;
}
.cocktails-hero .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  padding: 20px;
}
.cocktails-hero .overlay .accueil-presentation {
  max-width: 720px;
}
.cocktails-hero .accueil-presentation p {
  color: #ffffff;
}
.accueil-haut    { background-image: url('../assets/pub-accueil.jpg'); }
.nos-soirees-haut { background-image: url('../assets/soirees-photo-haut.jpg'); }
.nos-boissons-haut { background-image: url('../assets/nos-boissons-haut.jpg'); background-position: left; }
.liste-boisson-haut { background-image: url('../assets/liste-boisson-fond.jpg'); }

.row.presentation { justify-content: center; color: var(--cream); }
.presentation p { text-align: center; font-size: 20px; font-weight: 500; }
.accueil-presentation {
  padding: clamp(30px, 5vw, 60px) clamp(25px, 7vw, 100px) !important;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 30px;
  animation: heroFadeUp 0.9s var(--ease) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============== L'OB c'est quoi ============== */
.OB-c-est-quoi {
  background: url('../assets/fond-ob.png') var(--green-deep) center/cover no-repeat;
  padding: 100px 0 80px 0;
}
.OB-c-est-quoi h2 { color: var(--cream); }
.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.nbr-bieres, .pub-convivial, .mais-festif {
  background: url('../assets/fond-16-bieres.svg') center/contain no-repeat;
  padding: 75px 110px;
  flex: 1;
  min-width: 280px;
  text-align: center;
  transition: transform .4s var(--ease);
}
.nbr-bieres:hover, .pub-convivial:hover, .mais-festif:hover { transform: translateY(-8px); }
.nbr-bieres img, .pub-convivial img, .mais-festif img {
  display: block;
  margin: auto;
  padding-bottom: 20px;
  max-width: 80px;
  height: auto;
}
.nbr-bieres p, .pub-convivial p, .mais-festif p {
  text-align: center;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
}

/* ============== Références ============== */
.references {
  background: url('../assets/fond-reference.jpg') top center/cover no-repeat;
  padding-top: clamp(80px, 20vw, 300px);
  max-width: 100vw;
  position: relative;
}
.references .row { align-items: stretch; }
.references .col-7.contenu {
  padding: clamp(40px, 14vw, 200px) clamp(20px, 8vw, 100px) clamp(40px, 8vw, 100px) clamp(20px, 14vw, 200px);
}
.references p { font-size: 20px; color: var(--green-deep); margin-bottom: 16px; }
.references p:last-of-type { margin-bottom: 40px; }
.col-5.image {
  background: url('../assets/photo-references.png') center/contain no-repeat;
  margin: 70px 0 0 0;
  min-height: 500px;
}

/* ============== Pub convivial ============== */
.pubConvivial {
  background: url('../assets/fond-pub-convivial.jpg') bottom center/cover no-repeat;
  padding: 100px 0;
}
.pubConvivial .col-7.image { display: flex; justify-content: center; }
.pubConvivial .col-7.image img { max-width: 500px; }
.pubConvivial .col-5 { display: flex; align-self: center; flex-direction: column; }
.pubConvivial p { color: var(--cream); font-size: 20px; margin-bottom: 40px; }

/* ============== Mais festif ============== */
.pubConvivialMaisFestif {
  background: url('../assets/fond-bulles.jpg') center/cover no-repeat;
  padding: 100px 0;
}
.pubConvivialMaisFestif .col-5 { display: flex; flex-direction: column; align-self: center; }
.pubConvivialMaisFestif img { display: block; margin: auto; width: 500px; max-width: 100%; }
.pubConvivialMaisFestif p { color: var(--green-deep); font-size: 20px; margin-bottom: 16px; }
.pubConvivialMaisFestif p:last-of-type { margin-bottom: 40px; }

/* ============== Saint Patrick ============== */
.StPatrick {
  background: url('../assets/fond-patrick.jpg') center/cover no-repeat;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 8vw, 100px);
}
.StPatrick .col-3 { display: flex; align-items: center; }
.StPatrick img { width: 200px; height: auto; display: block; margin: auto; }
.StPatrick h3 { text-align: center; }
.StPatrick p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  color: var(--cream);
  font-size: 20px;
}
.StPatrick p:last-of-type { margin-bottom: 40px; }
.StPatrick .bouton { margin: 0 auto; }
.StPatrick .col-6 { display: flex; justify-content: center; flex-direction: column; }

/* ============== Bottom (footer info) ============== */
.bottom {
  background: url('../assets/fond-bottom.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 100px 0;
  position: relative;
}
.bottom::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,12,5,0.4), rgba(1,12,5,0.1));
  pointer-events: none;
}
.bottom > * { position: relative; z-index: 1; }
.bottom h3 {
  font-family: 'Irish Penny', serif;
  text-align: center;
  color: var(--white);
  padding-bottom: 60px;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
}
.bottom h4 {
  margin-bottom: 30px;
  font-family: 'Irish Penny', serif;
  font-size: clamp(26px, 2.5vw, 35px);
  font-weight: 400;
  text-align: center;
}
.bottom p { font-size: 18px; }
.bottom .row { display: flex; justify-content: center; flex-wrap: wrap; }
.bottom .coordonnees {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin: auto;
  text-align: center;
  gap: 8px;
}
.coordonnees .ligne {
  display: flex; align-items: center; gap: 10px; justify-content: center;
}
.coordonnees svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }
.horaires { margin-top: 16px; }
.horaires p { font-size: 16px; opacity: 0.92; }
.socials { margin-top: 16px; display: flex; gap: 14px; justify-content: center; }
.socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--cream);
  border-radius: 50%;
  transition: background .25s ease, color .25s ease, transform .25s var(--ease);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.review-card {
  background: rgba(0,0,0,0.35);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 12px;
  font-size: 14px;
  text-align: left;
  border: 1px solid rgba(231,232,203,0.08);
}
.review-card .review-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-card .review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #c8884a, #6a4a2a);
  flex-shrink: 0;
}
.review-card .review-name { font-weight: 700; flex: 1; }
.review-card .review-stars { color: #FCD24E; letter-spacing: 0.1em; font-size: 13px; }
.review-card p { font-size: 14px; opacity: 0.92; }

footer {
  background: var(--green-darker);
  padding: 30px 0;
}
footer p { text-align: center; color: var(--white); margin-bottom: 4px; font-size: 14px; }
footer p.grand { font-size: 16px; opacity: 0.9; }
footer a { color: var(--white); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* ============== Page Nos boissons (5 catégories) ============== */
.fond-boissons {
  background: url('../assets/soirees-fond.jpg') center/cover no-repeat;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}
.row.boissons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 4;
}
.row.boissons > div { width: fit-content; padding: 0; }
.row.boissons img {
  max-width: 350px;
  height: auto;
  border-radius: 30px;
  margin: 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: var(--shadow-md);
}
.row.boissons a:hover img,
.row.boissons a:focus-visible img {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.lutin-fond {
  position: absolute; width: auto; height: 400px; right: 0; top: 110%; z-index: 0;
  opacity: 0.95;
}
.tonneau-fond {
  position: absolute; width: auto; height: 400px; left: 0; top: 170%; z-index: 0;
  opacity: 0.95;
}

/* ============== Liste boissons (cards) ============== */
.liste-boisson {
  background: var(--cream-soft);
  padding: 100px 0;
  position: relative;
}
.liste-boisson .filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 50px;
}
.liste-boisson .filter {
  padding: 10px 20px;
  border: 2px solid var(--green-deep);
  border-radius: 999px;
  background: transparent;
  color: var(--green-deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all .25s var(--ease);
}
.liste-boisson .filter:hover { background: rgba(1,42,19,0.08); }
.liste-boisson .filter.active {
  background: var(--green-deep);
  color: var(--cream);
}
.liste-boisson .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 15px;
}
.drink-card {
  border-radius: 24px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  color: var(--green-deep);
  position: relative;
  cursor: default;
}
.drink-card .img {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: #d8d6c4;
  position: relative;
}
.drink-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
}
.drink-card .body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--green-deep);
  color: var(--cream);
}
.drink-card h3 {
  font-family: 'Irish Penny', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.drink-card .ingredients {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 12px;
  font-style: italic;
}
.drink-card .price {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 8px;
  border-top: 1px solid rgba(231,232,203,0.15);
}
.drink-card .price strong {
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}
.drink-card .price small { font-size: 12px; opacity: 0.8; }
.drink-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px -4px rgba(227,148,30,0.6);
}

/* keep legacy bieres list compatible */
.liste-boisson .col-sm-4 { max-width: 320px; flex: 0 0 320px; }
.liste-boisson .card {
  border-radius: 20px;
  height: 100%;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.liste-boisson .card:hover { transform: translateY(-6px); }
.liste-boisson .card-img-top {
  width: 100%;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.liste-boisson h4 {
  font-size: 22px;
  text-align: center;
  font-family: 'Irish Penny', serif;
  font-weight: 400;
  color: var(--green-deep);
  padding: 18px 10px;
  margin: 0;
}

/* ============== Article (fiche bière/boisson) ============== */
.article-solo {
  background: var(--cream-soft);
  padding: 130px 0 100px 0;
}
.article-solo h1 {
  color: var(--green-deep);
  margin: 0;
  padding-bottom: 30px;
  text-align: left;
  font-size: clamp(32px, 4vw, 50px);
  position: relative;
}
.article-solo h1::after {
  content: ""; display: block; width: 80px; height: 4px; background: var(--gold);
  border-radius: 2px; margin-top: 14px;
}
.article-solo img {
  display: block;
  margin: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.article-solo p { font-size: 16px; font-weight: 400; margin-bottom: 12px; }
.article-solo .col-6.droite { text-align: right; }
.article-solo a { color: #212529; }
.article-solo a:hover { color: var(--green-deep); }
.article-solo .price-list { padding: 18px 22px; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-sm); margin-bottom: 30px; display: inline-block; }
.article-solo .price-list p { font-size: 17px; margin-bottom: 6px; }
.article-solo .price-list p:last-child { margin-bottom: 0; }
.article-solo h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--green-deep);
}

/* ============== Soirées ============== */
.fond { background: url('../assets/soirees-fond.jpg') center/cover no-repeat; position: relative; overflow: hidden; }
.quand { padding: 100px 0; }
.quand p { text-align: left; font-weight: 400; margin: 0; color: var(--cream); font-size: 20px; }
.quand h3 { color: var(--cream); }
.quand .col-6 { padding: 0 50px; }
.quand .bouton.blanc { margin: 80px auto auto auto; display: block; width: fit-content; }

.gallerie { padding-bottom: 100px; }
.gallerie .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 15px;
}
.gallerie .grid > div {
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  background-color: #222;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s ease;
  box-shadow: var(--shadow-md);
}
.gallerie .grid > div:hover { transform: translateY(-3px) scale(1.01); box-shadow: var(--shadow-lg); }
.g-tall { grid-row: span 2; aspect-ratio: 3 / 5; }
.g-wide { aspect-ratio: 4 / 3; }
.g-sq   { aspect-ratio: 1 / 1; }

/* ============== Bandeau légal permanent ============== */
.legal-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(1, 12, 5, 0.96);
  color: var(--cream);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  z-index: 80;
  border-top: 1px solid rgba(231,232,203,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body { padding-bottom: 40px; }
@media (max-width: 600px) {
  .legal-banner { font-size: 12px; padding: 7px 12px; line-height: 1.3; }
  body { padding-bottom: 48px; }
}

/* ============== Age gate overlay ============== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--green-darker);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(227,148,30,0.15), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(231,232,203,0.08), transparent 50%),
    url('../assets/fond-bottom.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: gateIn 0.4s var(--ease) both;
}
@keyframes gateIn { from { opacity: 0; } to { opacity: 1; } }
.age-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 12, 5, 0.78);
  pointer-events: none;
}
.age-gate-card {
  position: relative;
  z-index: 1;
  background: rgba(14, 14, 14, 0.92);
  border: 1.5px solid rgba(227,148,30,0.5);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  color: var(--cream);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  animation: gateUp 0.55s var(--ease) both;
}
@keyframes gateUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.age-gate-card .logo {
  width: 70px; height: 70px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--cream);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Irish Penny', serif;
  font-size: 22px;
  font-weight: 700;
}
.age-gate-card h2 {
  color: var(--cream);
  font-family: 'Irish Penny', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  padding-bottom: 12px;
  font-weight: 400;
}
.age-gate-card p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 15px;
  margin-bottom: 24px;
}
.age-gate-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.age-gate-form input {
  width: 70px;
  padding: 12px 8px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(231,232,203,0.25);
  border-radius: 10px;
  color: var(--cream);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  text-align: center;
  transition: border-color .2s ease, background .2s ease;
}
.age-gate-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(227,148,30,0.08);
}
.age-gate-form input.year { width: 95px; }
.age-gate-form input::placeholder { color: rgba(231,232,203,0.4); }
.age-gate-error {
  color: #ff8a80;
  font-size: 14px;
  min-height: 20px;
  margin: 4px 0 14px;
}
.age-gate-btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  letter-spacing: 0.01em;
}
.age-gate-btn:hover { background: var(--gold-deep); transform: translateY(-2px); }
.age-gate-card .footer {
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.55;
  border-top: 1px solid rgba(231,232,203,0.1);
  padding-top: 14px;
}
.age-gate-blocked {
  text-align: center;
}
.age-gate-blocked h2 { color: var(--gold); }
.age-gate-blocked p { font-size: 16px; opacity: 1; }
body.age-locked { overflow: hidden; }

/* ============== Reveal on scroll (élément par élément) ============== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Cascade automatique pour les enfants d'un container .reveal-stagger */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1)  { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2)  { transition-delay: 60ms; }
.reveal-stagger.visible > *:nth-child(3)  { transition-delay: 120ms; }
.reveal-stagger.visible > *:nth-child(4)  { transition-delay: 180ms; }
.reveal-stagger.visible > *:nth-child(5)  { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(6)  { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(7)  { transition-delay: 360ms; }
.reveal-stagger.visible > *:nth-child(8)  { transition-delay: 420ms; }
.reveal-stagger.visible > *:nth-child(9)  { transition-delay: 480ms; }
.reveal-stagger.visible > *:nth-child(n+10) { transition-delay: 540ms; }

/* ============== Responsive ============== */
@media (max-width: 991px) {
  .navbar-toggler { display: block; }
  nav.navbar { justify-content: flex-end; padding: 0 16px; }
  ul#menu-header {
    display: none;
    flex-direction: column;
    padding: 16px;
    width: calc(100vw - 32px);
    border-radius: 20px;
    margin-top: 60px;
    align-items: stretch;
  }
  ul#menu-header.open {
    display: flex;
    animation: navIn 0.35s var(--ease) both;
  }
  @keyframes navIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
  ul#menu-header > li { width: 100%; text-align: center; }
  a.nav-link { padding: 12px 0; }
  ul.sub-menu {
    position: static;
    transform: none;
    padding: 4px 0 12px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-top: 1px solid rgba(231,232,203,0.15);
    margin-top: 6px;
  }
  ul#menu-header > li.has-children:hover ul.sub-menu { display: none; }
  ul#menu-header > li.has-children.open-sub ul.sub-menu { display: block; }

  .col-1, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8 { flex: 0 0 100%; max-width: 100%; }

  h2 { padding-bottom: 50px; }

  .col-5.image { min-height: 280px; margin: 0; }

  .pubConvivial { padding: 60px 0; }
  .pubConvivialMaisFestif { padding: 60px 0; }
  .StPatrick img { width: 120px; }

  .nbr-bieres, .pub-convivial, .mais-festif { padding: 60px 30px; }

  .gallerie .grid { grid-template-columns: repeat(2, 1fr); }
  .quand .col-6 { padding: 0 15px 30px; }
  .quand .col-6 + .col-6 { border-top: 1px solid rgba(231,232,203,0.2); padding-top: 30px; }

  .row.boissons img { max-width: 280px; margin: 15px; }
  .lutin-fond, .tonneau-fond { display: none; }

  .bottom { padding: 60px 0; }

  .article-solo { padding: 100px 15px 60px; }
  .article-solo .col-6.droite { text-align: center; margin-top: 30px; }
}

@media (max-width: 600px) {
  .gallerie .grid { grid-template-columns: 1fr; }
  .liste-boisson .grid { grid-template-columns: 1fr; gap: 20px; }
  .liste-boisson { padding: 60px 0; }
  .row.boissons img { max-width: 90%; margin: 12px auto; }
  .OB-c-est-quoi { padding: 60px 0 40px; }
  .references .col-7.contenu { padding: 30px 20px; }
}
