/* styles.css
   - Replace 'cocktail.jpg' with the path to your background image if needed.
   - This version:
     * réduit l'espacement des lettres pour coller mieux à la maquette,
     * ajoute un menu mobile (hamburger),
     * maintient la carte fixe à gauche sur desktop et la centre proprement sur mobile.
*/

:root{
  --blue: #1e66ff;
  --white: #ffffff;
  --muted-white: rgba(255,255,255,0.92);
  --card-bg: rgba(0,0,0,0.75);
  --border: rgba(255,255,255,0.9);
  --font: "Roboto Mono", monospace;

  /* Fixe la distance depuis le bord gauche (modifiable) */
  --hero-card-left: 60px;

  /* contrôles typographiques */
  --title-letter-spacing: 4px; /* réduit pour correspondre à la maquette */
  --title-gap: 10px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background:#000;
  color:var(--muted-white);
}

/* Header layout */
.site-header{ min-height:100vh; display:flex; flex-direction:column; }

/* Top bar */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:22px 28px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Logo */
.logo{ display:flex; flex-direction:column; align-items:flex-start; line-height:1; }
.logo-title{ display:flex; gap:8px; align-items:flex-end; }
.logo-title span{ font-size:28px; font-weight:700; letter-spacing:2px; }
.logo-blue{ color:var(--blue) }
.logo-white{ color:var(--white) }
.logo .sub{
  font-size:10px;
  color:#e74c3c;
  margin-top:4px;
  letter-spacing:2px;
  font-weight:600;
  align-self:center; /* centre "BAR VIP" sous le titre */
}

/* Mobile menu toggle (hidden on desktop) */
.menu-toggle{
  display:none;
  width:44px;
  height:40px;
  border:0;
  background:transparent;
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.menu-toggle .hamburger,
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after{
  display:block;
  width:26px;
  height:2px;
  background:var(--muted-white);
  position:relative;
  border-radius:2px;
  transition: transform .25s ease, opacity .18s ease;
}
.menu-toggle .hamburger::before{
  content:"";
  position:absolute;
  top:-8px;
  left:0;
  width:26px;
  height:2px;
  background:var(--muted-white);
}
.menu-toggle .hamburger::after{
  content:"";
  position:absolute;
  top:8px;
  left:0;
  width:26px;
  height:2px;
  background:var(--muted-white);
}

/* Navigation */
.main-nav ul{ list-style:none; margin:0; padding:0; display:flex; gap:28px; align-items:center; }
.main-nav a{
  color:var(--muted-white);
  text-decoration:none;
  font-size:16px;
  transition: color .18s ease;
  padding:6px 0;
}
.main-nav a:hover, .main-nav a:focus{ color:var(--blue); outline:none; }

/* HERO */
.hero{
  position:relative;
  flex:1 1 auto;
  background-image: url('depositphotos_151987956-stock-photo-cocktail-drink-on-night-club.jpg'); /* replace with your image */
  background-size:cover;
  background-position:right center;
  display:flex;
  align-items:center;
  box-shadow: inset 0 0 0 400px rgba(0,0,0,0.55);
  padding:0 40px;
}

/* HERO CARD - vertical box with centered structured content */
.hero-card{
  position:absolute;
  left:var(--hero-card-left);     /* fixed distance from left on desktop */
  top:50%;
  transform:translateY(-50%);
  width:420px;
  max-width: calc(100% - (var(--hero-card-left) + 20px));
  border:1px solid var(--border);
  padding:42px 38px;
  background:var(--card-bg);
  color:var(--muted-white);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:26px;
  z-index:2;
  overflow:hidden;
}

/* TITLE - reduced letter spacing and wrapping behavior */
.hero-title{
  margin:0;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:var(--title-gap);
  line-height:1;
}
.hero-title .hero-blue,
.hero-title .hero-white{
  display:inline-block;
  white-space:nowrap;             /* keep each word intact */
  font-weight:700;
  letter-spacing:var(--title-letter-spacing);
  font-size: clamp(28px, 5.6vw, 54px);
}

/* color specifics */
.hero-title .hero-blue{ color:var(--blue); }
.hero-title .hero-white{ color:var(--white); }

/* Subtitle */
.hero-sub{
  margin:0;
  color:var(--muted-white);
  font-size: clamp(12px, 1.6vw, 16px);
  letter-spacing:0.6px;
  max-width:90%;
  overflow-wrap:break-word;
}

/* CTA button */
.cta-btn{
  display:inline-block;
  text-decoration:none;
  color:var(--muted-white);
  border:1px solid var(--border);
  padding:12px 22px;
  font-size:16px;
  transition: background-color .18s ease, color .18s ease, transform .08s ease;
}
.cta-btn:hover, .cta-btn:focus{
  color:var(--blue);
  background:rgba(255,255,255,0.02);
  transform:translateY(-2px);
  outline:none;
}

/* Divider and address */
.divider{ width:100%; border:none; border-top:1px solid rgba(255,255,255,0.12); margin:8px 0; }
.hero-address{
  margin:0;
  font-size:14px;
  letter-spacing:0.8px;
  max-width:90%;
  overflow-wrap:break-word;
}

/* RESPONSIVE BEHAVIOR and MOBILE MENU */
/* show hamburger on small screens, hide desktop nav */
@media (max-width:920px){
  .menu-toggle{ display:flex; }
  .main-nav{ position:fixed; top:0; right:0; height:100vh; width:260px; background:rgba(0,0,0,0.88); transform:translateX(100%); transition:transform .28s ease; display:block; padding:80px 20px; z-index:999; }
  .main-nav.open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; gap:18px; }
  .main-nav a{ font-size:18px; display:block; padding:10px 8px; }
}

/* On smaller screens the hero-card becomes centered and placed closer to the top
   for better reading — this keeps it visually close to the maquette on mobile. */
@media (max-width:760px){
  :root { --hero-card-left: 24px; } /* still used for max-width calc */
  .hero-card{
    left:50%;
    top:120px;
    transform:translateX(-50%); /* center horizontally */
    width:calc(100% - 48px);
    max-width:520px;
    padding:28px;
  }

  /* slightly tighter title spacing on small screens */
  :root { --title-letter-spacing: 3px; --title-gap: 8px; }
  .hero-title .hero-blue, .hero-title .hero-white{ font-size: clamp(22px,7.8vw,40px); }
}

/* Very small screens: keep card readable */
@media (max-width:520px){
  :root { --hero-card-left: 18px; --title-letter-spacing: 2px; }
  .hero-card{ top:100px; width:calc(100% - 36px); padding:20px; gap:16px; }
  .hero-title .hero-blue, .hero-title .hero-white{ font-size: clamp(18px,9.5vw,32px); letter-spacing:2px; }
  .logo-title span{ font-size:20px; }
}

/* menu toggle animation when open: transform hamburger into X */
.menu-toggle.open .hamburger{ background:transparent; }
.menu-toggle.open .hamburger::before{
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open .hamburger::after{
  transform: translateY(-8px) rotate(-45deg);
}

:root{
  --bg: #000;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.92);
  --accent-red: #c51b22;
  --container-max: 1250px;


/* responsive sizes */
  --title-size: clamp(56px, 7.5vw, 110px);
  --subtitle-size: clamp(18px, 2.2vw, 28px);
  --center-size: clamp(24px, 4.6vw, 44px);
}

/* Basic reset for the standalone file */
*{box-sizing:border-box}
html,body{height:100%; margin:0; background:var(--bg); color:var(--text); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;}
body.about-page{font-family: "Roboto Mono", monospace;}

/* Section container */
.about-section{
  background:var(--bg);
  color:var(--muted);
  padding:48px 20px 36px;
}

/* Inner layout: 3-column visual (left title, center red text, right services) */
.about-inner{
  max-width:var(--container-max);
  margin:0 auto;
  position:relative;
  padding:0 28px;
  min-height:140px;
  display:block;
}

/* LEFT - big "A PROPOS" */
.about-left{
  float:left;
  width:40%;
  min-width:160px;
}
.about-title{
  margin:0;
  font-family: "Cinzel", serif;
  font-weight:200;
  font-size:var(--title-size);
  line-height:0.9;
  color:var(--text);
  letter-spacing:2px;
  /* small visual nudge left like in the mock */
  margin-left:-6px;
}
.about-sub{
  margin:12px 0 0;
  font-family: "Cinzel", serif;
  font-size:var(--subtitle-size);
  color:var(--muted);
  font-weight:400;
}

/* RIGHT - services / prestation */
.about-right{
  float:right;
  width:28%;
  min-width:220px;
  text-align:left;
}
.services-title{
  margin:0 0 12px 0;
  font-family: "Cinzel", serif;
  font-weight:700;
  font-size:20px;
  color:var(--text);
}
.services-list{
  list-style:none;
  margin:0;
  padding:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.9;
}
.services-list li{ margin:8px 0; }

/* CENTER - BAR VVIP (absolute center of the container) */
.about-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:18px;
  font-family: "Cinzel", serif;
  font-size:var(--center-size);
  color:var(--accent-red);
  font-weight:900;
  letter-spacing:2px;
  text-align:center;
  pointer-events:none; /* decorative */
}

/* Bottom divider (full width line with subtle gradient) */
.about-divider{
  margin:36px 0 0 0;
  height:1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  width:100%;
}

/* Clear floats */
.about-inner::after{
  content:"";
  display:table;
  clear:both;
}

/* RESPONSIVE BEHAVIOR */
@media (max-width:1000px){
  :root { --title-size: clamp(48px, 9.2vw, 88px); --center-size: clamp(20px, 5.6vw, 40px); }
  .about-left{ width:46%; }
  .about-right{ width:28%; }
  .about-center{ top:28px; }
}

@media (max-width:760px){
  /* Stack layout on small screens */
  .about-left, .about-right{ float:none; width:100%; min-width:0; text-align:center; }
  .about-left{ margin-bottom:14px; }
  .about-right{ margin-top:8px; }
  .about-center{
    position:relative;
    left:50%;
    transform:translateX(-50%);
    top:0;
    margin:12px 0;
  }
  .about-divider{ margin-top:22px; }
}

@media (max-width:420px){
  :root { --title-size: clamp(32px, 12vw, 56px); --subtitle-size: 16px; --center-size: clamp(18px, 8vw, 30px); }
  .about-title{ font-size:var(--title-size); margin-left:0; }
  .about-sub{ font-size:var(--subtitle-size); }
  .services-list{ font-size:14px; }
  .about-inner{ padding:0 16px; }
}


/* Import Montserrat font (si disponible) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

.gene-section,
.actualite-section {
  background: #000;
  color: #fff;
  padding: 60px 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.actualite-title {
  font-size: 4rem;
  font-weight: 400;
  margin-left: 5vw;
  margin-bottom: 48px;
  letter-spacing: -1.5px;
}

.actualite-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 62px;
  margin-left: 5vw;
}

.actualite-image img {
  width: 800px;
  max-width: 95vw;
  height: 420px;
  max-height: 55vw;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  background: #333;
}

.actualite-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 340px;
  margin-top: 50px;
}

.actualite-type {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 18px;
  opacity: 0.95;
}

.actualite-offer {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.22;
  letter-spacing: -1px;
}

.actualite-days {
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 36px;
  opacity: 0.90;
}

.reserve-btn {
  display: inline-block;
  padding: 14px 38px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 1.15rem;
  font-family: inherit;
  border-radius: 0;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.18s, color 0.18s, border 0.18s;
  cursor: pointer;
  box-sizing: border-box;
  margin-top: 10px;
  outline: none;
}

.reserve-btn:hover,
.reserve-btn:focus {
  background: #fff;
  color: #18171b;
  border-color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 990px) {
  .actualite-title {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
  .actualite-content {
    gap: 28px;
  }
  .actualite-image img {
    width: 100%;
    height: 280px;
    max-width: 100vw;
    max-height: none;
  }
  .actualite-info {
    min-width: 0;
    margin-top: 20px;
  }
}

@media (max-width: 750px) {
  .actualite-content {
    flex-direction: column;
    gap: 0;
    margin-left: 0;
    align-items: center;
  }
  .actualite-image img {
    width: 100%;
    height: 230px;
    margin-bottom: 24px;
  }
  .actualite-info {
    margin-top: 0;
    align-items: center;
    text-align: center;
  }
  .actualite-title {
    margin-left: 0;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .actualite-offer {
    font-size: 1.5rem;
  }
  .actualite-type,
  .actualite-days {
    font-size: 1rem;
  }
  .reserve-btn {
    font-size: 1rem;
    padding: 10px 22px;
    margin-bottom: 18px;
  }
}

@media (max-width: 440px) {
  .actualite-title {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
  .actualite-offer {
    font-size: 1.1rem;
  }
  .actualite-image img {
    height: 140px;
  }
}



.bieres-section {
  background: #000;
  padding: 60px 0 0 0;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}

.bieres-title {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.bieres-album {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 2vw;
}

.bieres-main {
  flex: 2;
  min-width: 240px;
  display: flex;
  align-items: stretch;
}
.bieres-main img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  min-height: 410px;
  background: #402c2d;
}

.bieres-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 260px;
}

.bieres-row {
  display: flex;
  gap: 18px;
  height: calc((410px - 18px) / 2);
}

.bieres-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #302226;
  border-radius: 2px;
  min-width: 0;
}

/* Responsive design */
@media (max-width: 1200px) {
  .bieres-title {
    font-size: 2.1rem;
  }
  .bieres-album {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .bieres-main img, .bieres-row { min-height: 220px; }
}

@media (max-width: 750px) {
  .bieres-album {
    flex-direction: column;
    gap: 22px;
    padding: 0;
  }
  .bieres-main {
    flex: none;
    min-width: 0;
  }
  .bieres-main img {
    min-height: 220px;
    border-radius: 2px;
  }
  .bieres-side {
    flex: none;
    min-width: 0;
    gap: 12px;
  }
  .bieres-row {
    gap: 12px;
    height: 110px;
  }
  .bieres-row img {
    border-radius: 2px;
    height: 100%;
  }
}

@media (max-width: 490px) {
  .bieres-title {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }
  .bieres-main img {
    min-height: 110px;
  }
  .bieres-row {
    height: 50px;
    gap: 4px;
  }
}


.reservation-section {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 0 0 80px 0;
}

.reservation-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 48px;
  margin-top: 0;
}

.reservation-form {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.reservation-fields {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  width: auto;
}

.reservation-field {
  display: flex;
  flex-direction: column;
  min-width: 210px;
}

.reservation-field label {
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 0;
}

.input-wrap {
  position: relative;
}

.select-wrap select,
.input-wrap input[type="date"] {
  width: 100%;
  padding: 13px 44px 13px 16px;
  font-size: 1.12rem;
  color: #1e66ff;
  border: 1.5px solid #fff;
  background: transparent;
  border-radius: 0;
  font-family: inherit;
  font-weight: 400;
  outline: none;
  appearance: none;
  box-sizing: border-box;
  transition: border-color 0.17s;
}

.select-wrap select:focus,
.input-wrap input[type="date"]:focus {
  border-color: #de8728;
}

.select-wrap .arrow,
.date-wrap .calendar {
  position: absolute;
  right: 16px;
  top: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}

.input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.reservation-btn {
  padding: 13px 26px;
  margin-left: 4px;
  font-size: 1.11rem;
  font-family: inherit;
  color: #fff;
  background: #de8728;
  border: none;
  border-radius: 0;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.15s;
  box-sizing: border-box;
  min-width: 190px;
  height: 48px;
  outline: none;
  letter-spacing: 0.2px;
}

.reservation-btn:hover,
.reservation-btn:focus {
  background: #c11313;
  color: #fff;
}

.reservation-btn:active {
  background: #c11313;
}

@media (max-width: 990px) {
  .reservation-title {
    font-size: 2.3rem;
    margin-bottom: 26px;
  }
  .reservation-fields {
    gap: 11px;
  }
  .reservation-field {
    min-width: 160px;
  }
}

@media (max-width: 730px) {
  .reservation-fields {
    flex-direction: column;
    align-items: center;
    width: 96vw;
    gap: 18px;
  }
  .reservation-btn {
    margin: 20px 0 0 0;
    width: 100%;
    min-width: 100px;
  }
  .reservation-field {
    width: 100%;
    min-width: 100px;
  }
}

@media (max-width: 410px) {
  .reservation-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  .reservation-fields {
    gap: 12px;
  }
  .reservation-btn {
    font-size: 0.9rem;
    height: 42px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

.footer-bar {
  width: 100%;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding: 54px 0 30px 0;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 145px;
  padding-left: 2vw;
  padding-right: 2vw;
}

.bar-logo {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  gap: 8px;
}
.bar-sun {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: none;
  box-shadow: 0 0 3px 1px #fff inset;
}
.bar-name {
  font-size: 2.1rem;
  font-weight: 200;
  letter-spacing: -1px;
}
.bar-num { font-size: 1.1rem; font-weight: 200; vertical-align: super;}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #fff;
  font-size: 1.09rem;
  text-decoration: none;
  font-weight: 200;
  transition: color 0.17s;
}
.footer-menu a:hover { color: #de8728; }

.footer-col.contact h2,
.footer-col.horaires h2 {
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 13px;
}
.contact-tel, .contact-mail {
  font-size: 1.14rem;
  margin-bottom: 5px;
  font-weight: 200;
  display: block;
}
.contact-mail {
  color: #fff;
  text-decoration: none;
  border-bottom: 1.5px solid #fff;
  padding-bottom: 1px;
  transition: color 0.17s, border-color 0.17s;
  word-break: break-all;
}
.contact-mail:hover { color: #de8728; border-bottom: 1.5px solid #de8728; }

.footer-update h3 {
  margin-top: 22px;
  font-size: 1.23rem;
  font-weight: 400;
  margin-bottom: 13px;
}
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
.footer-icon {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.13s;
  opacity: 0.93;
  padding: 0;
}
.footer-icon:hover, .footer-icon:focus { opacity: 1; }

.footer-col.club {
  max-width: 340px;
  padding-left: 4vw;
  padding-right: 4vw;
}
.club-title {
  font-size: 1.25rem;
  font-weight: 200;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
.subscribe-form {
  display: flex;
  flex-direction: column;
}
.subscribe-form input[type="email"] {
  background: none;
  border: none;
  border-bottom: 1.5px solid #fff;
  padding: 12px 5px;
  font-size: 0.92rem;
  color: #fff;
  font-family: inherit;
  font-weight: 200;
  outline: none;
  margin-bottom: 18px;
  transition: border-color 0.17s;
}
.subscribe-form input[type="email"]:focus {
  border-color: #de8728;
}
.sr-only {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.footer-btn {
  background: none;
  color: #fff;
  border: 1.5px solid #fff;
  padding: 11px 30px;
  font-size: 0.87rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  margin-top: 4px;
  border-radius: 0;
  transition: background .15s, color .15s, border-color .15s;
  font-weight: 200;
}
.footer-btn:hover, .footer-btn:focus {
  background: #de8728;
  border-color: #de8728;
  color: #fff;
}
.footer-btn:active {
  background: #c11313;
  border-color: #c11313;
  color: #fff;
}

.footer-col.horaires {
  padding-left: 3vw;
  padding-right: 3vw;
}
.horaires-list {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 18px;
}

@media (max-width: 990px) {
  .footer-bar {
    flex-wrap: wrap;
    gap: 18px;
    padding: 38px 0 24px 0;
  }
  .footer-title { font-size: 1.3rem; }
  .club-title { font-size: 1.08rem; margin-bottom: 18px; }
  .footer-col { min-width: 120px; }
  .footer-col.club { max-width: 360px; }
}

@media (max-width: 768px) {
  .footer-bar {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px 0 14px 0;
    gap: 0;
  }
  .footer-col {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 25px;
    width: 100%;
    min-width: 0;
  }
  .footer-col.club { max-width: 90vw; }
  .bar-logo .bar-name { font-size: 1.5rem; }
  .footer-btn { padding: 9px 20px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .footer-bar {
    padding: 14px 0 5px 0;
  }
  .bar-logo .bar-name { font-size: 1.08rem; }
  .club-title { font-size: 0.98rem; }
  .footer-col { margin-bottom: 17px; }
  .footer-menu a, .contact-tel, .contact-mail, .horaires-list { font-size: 0.89rem; }
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

.footer-fin {
  width: 100%;
  background: #000;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0 10px 0;
  text-align: center;
  font-size: 0.50rem;
}

.footer-fin-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.footer-fin-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 50;
  font-size: 0.50rem;
  transition: color 0.17s;
  opacity: 0.94;
}

.footer-fin-copyright span {
  color: #de8728;
}
.footer-fin-links a:hover {
  color: #de8728;
  opacity: 1;
}

.footer-fin-copyright {
  color: #fff;
  font-size: 0.50rem;
  opacity: 0.91;
}

.footer-fin-wix {
  text-decoration: underline;
  color: #fff;
  font-size: inherit;
  font-weight: 50;
  transition: color .17s;
}

.footer-fin-wix:hover {
  color: #de8728;
}

@media (max-width: 690px) {
  .footer-fin-links {
    gap: 20px;
    font-size: 0.50rem;
  }
  .footer-fin {
    font-size: 0.50rem;
  }
}