
/* Variables CSS */
:root {
  --primary: #ff4713;
  --white: #ffffff;
  --black: #000000;
  --gray-dark: #333333;
  --margeleft: max(0px, calc((100% - 1400px) / 2));
}
/*
html, body {
  height: auto;
  overflow: visible;
}
 */
@font-face {
  font-family: 'gt_pressura_boldbold';
  src: url('../font/gt-pressura-bold-webfont.woff2') format('woff2'),
       url('../font/gt-pressura-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007E, U+00A0-00FF, U+0152-0153, U+02C6, U+02DC, U+2013-2014, U+2018-2019, U+201C-201D, U+2022, U+2026, U+20AC;
}

@font-face {
  font-family: 'gt_pressura_lightlight';
  src: url('../font/gt-pressura-light-webfont.woff2') format('woff2'),
       url('../font/gt-pressura-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0020-007E, U+00A0-00FF, U+0152-0153, U+02C6, U+02DC, U+2013-2014, U+2018-2019, U+201C-201D, U+2022, U+2026, U+20AC;
}


/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'gt_pressura_lightlight', sans-serif;
  line-height: 1.6;
  color: var(--black);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'gt_pressura_boldbold';
}

.pt-200 {
  padding-top: 200px;
}
.mb-30 {
  margin-bottom: 30px;
}

.container .wp-block-button__link,
.cta-button {
  background: transparent;
  border: 2px solid black;
  color: black;
  padding: 3px 26px;
  font-size: 20px;
  font-family: 'gt_pressura_boldbold';
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  line-height: normal;
}

.container .wp-block-button__link:hover,
.cta-button:hover {
  background: black;
  color: white;
  transform: translateY(-2px);
}

.container .wp-block-button__link {
  background-color: white;
  color: black;
  padding: 8px 27px;
  line-height: normal;
}

.cta-button.red {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.cta-button.red:hover {
  background: var(--primary);
  color: white;
}
.cta-button.white {
  border: 1px solid white;
  color: white;
}
.cta-button.white:hover {
  background: white;
  color: var(--primary);
}

/* Header */
.header-section {
  position: relative;
  z-index: 1000;
}

.header-logo {
  position: absolute;
  display: block;
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
}


.header-logo .coq {
  overflow: hidden;
  height: 0px;
  width: 30px;
  text-align: center;
  margin: auto;
  padding: 0;
  align-items: center;
  display: flex;
  transition: 0.4s ease;
}
.header-logo .coq img {
  width: 30px;
  max-width: 100%;
}
.header-logo .txt {
  overflow: hidden;
  height: 68px;
  transition: 0.4s ease;
  transform: rotate(-15deg);
}
.header-logo .txt img {
  transform: rotate(15deg);
  position: relative;
  transition: 0.4s ease;
  left: 0;
}
.page-template-page-tables-carte-php .header-logo .txt img,
.fixed-top .header-logo .txt img {
  left: -7px;
}
.page-template-page-tables-carte-php .header-logo .txt,
.fixed-top .header-logo .txt {
  overflow: hidden;
  height: 0px;
  transition: 0.4s ease;
}
.header-logo .slash.last {
  position: relative;
  top: -6px;
}
.page-template-page-tables-carte-php .header-logo .slash,
.fixed-top .header-logo .slash {
  position: relative;
  top: 7px;
}
.page-template-page-tables-carte-php .header-logo .slash.last,
.fixed-top .header-logo .slash.last {
  top: -11px;
}

.page-template-page-tables-carte-php .header-logo:hover .coq,
.fixed-top .header-logo:hover .coq {
  height: 50px;
}

.no-scroll .navbar,
.navbar {
  height: 130px;
  padding: 1rem 2rem;
  transition: all 0.5s ease-in-out;
  position: fixed;
  width: 100%;
  top: -150px;
  z-index: 10000;
  animation: slideDown 0.5s ease-in-out forwards;
}

@keyframes slideDown {
  from {
    top: -150px;
  }
  to {
    top: 0;
  }
}

.show-op {
  opacity: 0;
  animation: opacityShow 0.8s ease forwards;
  animation-delay: 0.5s;
}

@keyframes opacityShow {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.page-template-page-tables-carte-php .navbar {
  position: relative;
}

.page-template-page-tables-carte-php .navbar,
.navbar.fixed-top {
  height: 80px;
}
.navbar-nav ul li a,
.navbar-nav .nav-link {
  color: var(--black) !important;
  font-family: 'gt_pressura_boldbold';
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0 65px 0 0;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar-nav ul li a:hover,
.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

.navbar-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.navbar-nav ul li {
  list-style-type: none;
  display: inline-block;
}

.btn-outline-dark {
  border: 2px solid var(--black);
  color: var(--black);
  font-family: 'gt_pressura_boldbold';
  font-size: 14px;
  width: 40px;
  height: 27px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-dark:hover {
  background-color: var(--black);
  color: var(--white);
}


.btn-outline-white {
  border: 2px solid white;
  color: white;
  background: var(--black);
  font-family: 'gt_pressura_boldbold';
  font-size: 14px;
  width: 40px;
  height: 27px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-white:hover {
  background-color: white;
  color: var(--black);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Menu hamburger personnalisé */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--black);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover span {
  background-color: var(--primary);
}
.hamburger-menu:hover span:nth-child(2) {
  margin: 5px 0;
}


/* Conteneur principal pour permettre la translation */
.site-container {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 1;
  background-color: white;
  overflow-y: hidden;
}

.page-template-page-association .site-container,
.page-template-page-association-v2 .site-container {
   overflow-y: inherit;
}


.site-container.menu-open {
  transform: translateX(-100%); /* Ajuste selon la largeur de ton menu */
}

.header-section {
  position: fixed;
  width: 100%;
  z-index: 1001;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.no-scroll .header-section {
  position: fixed;
  transform: translateX(-100%);
}


/* Modifications de l'overlay */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  right: -100%; /* Commence hors écran à droite */
  width: 100%; /* Largeur fixe du menu */
  height: 100vh;
  background-color: #000;
  z-index: 9999;
  display: flex;
  transition: right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1; /* Toujours visible */
  transform: none; /* Supprime les anciennes transformations */
}

.fullscreen-overlay.show {
  right: 0; /* Glisse depuis la droite */
}

/* Ajustements pour le contenu du menu */
.fullscreen-nav {
  width: 100%;
  padding: 0 30px;
}

.nav-content {
  width: 100%;
  max-width: none;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  .fullscreen-overlay {
    width: 100vw;
    right: -100vw;
  }

  .site-container.menu-open {
    transform: translateX(-100vw);
  }
}


.fullscreen-overlay .coq-logo {
  filter: invert(100%);
  max-width: 290px;
}

/* Bouton de fermeture */
.close-btn {
    position: absolute;
    top: 50px;
    right: 46px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.close-btn.animate {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.close-btn:hover {
    color: #ccc;
}

.close-btn svg {
    width: 20px;
    height: auto;
}


/* Navigation principale */
.fullscreen-nav {
    display: flex;
    height: 100vh;
    align-items: center;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.nav-content .cta-button {
  font-size: 25px;
  margin-top: 30px;
  padding: 4px 35px;
}
.nav-content .btn-outline-white:hover,
.nav-content .cta-button:hover {
  color: var(--black);
  background: var(--primary);
  border-color: var(--primary);
}



.nav-left {
  flex: 1;
}

.nav-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-left li {
  margin-bottom: 0px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-left li:nth-child(2) {
  margin-bottom: 100px;
}
.nav-left li.animate {
    opacity: 1;
    transform: translateX(0);
}

.nav-left a {
    color: white;
    text-decoration: none;
    font-size: 50px;
    font-family: 'gt_pressura_boldbold';
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: block;
}

.nav-left a:hover {
    color: var(--primary);
    transform: translateX(10px);
}
.nav-left .current-menu-item a {
    color: var(--primary);
    transform: translateX(10px);
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coq-logo {
    max-width: 400px;
    height: auto;
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coq-logo.animate {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Navigation du bas */
.bottom-nav {
    position: relative;
    transform: translateX(0%) translateY(30px);
    opacity: 0;
    margin-top: 90px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bottom-nav.animate {
    opacity: 1;
    transform: translateX(0%) translateY(0);
}

.bottom-nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-family: 'gt_pressura_boldbold';
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.bottom-nav .btn-outline-white {
  font-size: 14px;
}

.bottom-nav a:hover {
    color: var(--primary);
}

/* Bouton de langue */
.lang-btn {
    position: relative;
    width: 40px;
    background: none;
    border: 2px solid white;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lang-btn.animate {
    opacity: 1;
    transform: translateY(0);
}

.lang-btn:hover {
    background-color: white;
    color: black;
}

/* Style pour la démonstration */
.demo-container {
    background: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


#scrollDiv {
  background-color: #20294e;
  height: 3px;
  position: absolute;
  width: 0;
  bottom: -2px;
  left: 0;
}

/* Pour Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px; /* épaisseur verticale */
  height: 10px; /* épaisseur horizontale */
}

::-webkit-scrollbar-track {
  background: transparent; /* couleur du fond de la barre */
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary); /* couleur du "pouce" */
  border-radius: 0px;
  border: 4px solid transparent; /* pour un effet d'espace autour */
}

/* Pour Firefox */
* {
  scrollbar-width: thin; /* "auto", "thin", ou "none" */
  scrollbar-color: var(--primary) transparent; /* thumb | track */
}

.no-scroll {
  overflow: hidden;
  background-color: black;
}


.line-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.bt-more {
  background: transparent;
  color: #000;
  text-decoration: none;
  font-family: 'gt_pressura_boldbold';
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.8s ease;
  font-size: 20px;
  display: inline-flex;
  gap: 10px;
  min-width: 300px;
  justify-content: end;
}
.bt-more img {
  display: inline-block;
  max-width: 14px;
}
.bt-more:hover {
  gap: 25px;
  text-decoration: none;
}


/* Section Hero */
.hero-section {
  background-color: var(--primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
}

.section-logo {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-logo .cta-arrow-circle {
  border-color: var(--black);
  color: var(--black);
  transform: rotate(90deg) !important;
  position: absolute;
  bottom: 50px;
}
.section-logo .cta-arrow-circle img {
    filter: invert(0);
}


.section-logo.go-scroll .cta-arrow-circle {
  border-color: white;
  color: white;
  transform: rotate(-90deg) !important;
}
.section-logo.go-scroll .cta-arrow-circle img {
    filter: invert(1);
}



.hero-logo {
  animation: float 3s ease-in-out infinite;
  max-width: 260px;
  text-align: center;
  margin: 150px auto 60px;
}

.hero-logo img {
  max-width: 100%;
  filter: invert(100%);
  margin-right: -50px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-tagline {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 100px;
  opacity: 1;
  text-transform: uppercase;
  font-family: 'gt_pressura_lightlight';
  font-weight: 300;
}

.hero-title {
  font-size: 120px;
  line-height: 1.05;
  margin-bottom: 100px;
  letter-spacing: 5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-description {
  font-size: 40px;
  font-family: 'gt_pressura_boldbold';
  line-height: normal;
  margin-bottom: 80px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 1px;
  opacity: 1;
}

.hero-content {
  max-width: 660px;
  transform: translateX(15px);
  margin-bottom: 250px;
}

.hero-content .cta-button.white {
  padding: 9px 56px;
}

/* Responsive */

@media (max-width: 768px) {
  .navbar {
      padding: 0.5rem 1rem;
  }

  .hero-title {
      font-size: 2.8rem;
      line-height: 1.1;
      margin-bottom: 2.5rem;
      letter-spacing: -1px;
  }

  .hero-description {
      font-size: 1rem;
      padding: 0 1rem;
      margin-bottom: 2.5rem;
      line-height: 1.6;
  }

  .hero-btn {
      padding: 12px 30px;
      font-size: 0.9rem;
      letter-spacing: 1.5px;
  }

  .btn-outline-dark {
      width: 35px;
      height: 35px;
      font-size: 0.7rem;
  }

  .bt-lang {
    font-size: 14px;
    width: 40px;
    height: 27px;
  }

  .hero-logo svg {
      width: 100px;
      height: 100px;
  }
}

/* Section Nos Tables */
.nos-tables-section {
  background-color: #fff;
  padding: 160px 0;
  z-index: 100;
  position: relative;
}

.nos-tables-title,
.nos-tables-title a {
  font-size: 70px;
  color: var(--black);
  margin-bottom: 80px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.restaurant-card {
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.restaurant-card:hover {
}

.restaurant-image {
  position: relative;
  overflow: hidden;
  display: block;
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.restaurant-card:hover .restaurant-image img {
  transform: scale(1.05);
}

.restaurant-info {
  padding: 20px 0;
  text-align: left;
}

.restaurant-name,
.restaurant-name a {
  font-size: 20px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
.magazine-card:hover a,
.restaurant-card:hover a {
  color: var(--primary);
}
.restaurant-location {
  font-size: 15px;
  font-family: 'gt_pressura_boldbold';
  color: var(--black);
  position: relative;
  top: -8px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nos-tables-section .cta-button {
  margin-top: 40px;
}


/* /// CSS pour les animations et styles spécifiques aux tables  /// */

.restaurant-card {
    transition: all 0.3s ease;
}

.loading-spinner {
    color: var(--primary);
}

.loading-spinner .spinner-border {
    color: var(--primary);
}

.end-of-content,
.no-results {
    color: #666;
    font-style: italic;
}

.end-of-content p,
.no-results p {
    margin: 0;
    font-size: 18px;
}

.search-results-info {
    margin: 40px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.search-results-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.search-term-display {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'gt_pressura_boldbold';
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clear-search-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    background: rgba(0,0,0,0.1);
}

.clear-search-btn img {
    width: 16px;
    height: 16px;
}

.results-count-display {
    font-family: 'gt_pressura_boldbold';
    font-size: 16px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-btn.loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .search-results-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .search-results-info {
        margin: 20px 0;
        padding: 15px;
    }
}


/* Magazine Section */
.magazine-section {
  background: #1d1d1b;
  padding: 125px 0;
  color: white;
}

.magazine-header {
  text-align: center;
  margin-bottom: 3rem;
}

.magazine-title {
  font-size: 70px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0px;
}

.magazine-subtitle {
  font-size: 20px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 30px;
  position: relative;
  top: -5pxs;
}

.magazine-card {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.magazine-card:hover {

}

.magazine-image {
  position: relative;
  overflow: hidden;
  display: block;
}

.magazine-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.magazine-card:hover .magazine-image img {
  transform: scale(1.05);
}

.magazine-content {
  padding: 30px 0;
}

.magazine-category a,
.magazine-category {
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'gt_pressura_boldbold';
  display: block;
  margin-bottom: 0.8rem;
  text-decoration: none;
}

.hero-category .article-date,
.magazine-category .article-date {
  color: white;
}

.magazine-article-title,
.magazine-article-title a {
  font-size: 25px;
  color: white;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.magazine-excerpt {
  font-size: 20px;
  color: #fff;
  margin: 0;
  line-height: 25px;
}

/* Evenements */

.events-section {
  padding: 140px 0 80px;
  overflow: hidden;
}


.section-title {
  font-size: 70px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
}

.events-slider-container {
  position: relative;
  overflow: visible;
}

.swiper {
  overflow: visible;
  padding-left: 0;
}

.swiper-wrapper {
  align-items: stretch;
  height: auto;
}
.events-section .swiper-slide {
  min-width: 400px;
}

.event-card {
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.event-card:hover {
  transform: translateY(-10px);
}
.event-card:hover .event-date {
  background: var(--primary);
  color: var(--black);
}
.event-image {
  position: relative;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.event-image .cover {
  overflow: hidden;
  position: relative;
  display: block;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-date {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: white;
  padding: 5px 35px;
  border-radius: 90px;
  font-size: 29px;
  font-family: 'gt_pressura_boldbold';
  width: max-content;
  text-transform: uppercase;
}

.event-content {
  padding: 50px 35px;
  display: flex;
  flex-direction: column;
}

.event-title,
.event-title a {
  font-size: 25px;
  font-family: 'gt_pressura_boldbold';
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #000;
  letter-spacing: 0.75px;
  text-decoration: none;
  transition: 0.4s;
}

.horizontal-content .event-title,
.horizontal-content .event-title a {
  color: var(--primary);
}

.horizontal-content .event-location {
  font-size: 15px;
}


.event-location {
  color: #000;
  font-size: 13px;
  font-family: 'gt_pressura_boldbold';
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.slider-nav {
  display: flex;
  gap: 30px;
  height: 20px;
  align-items: center;
}

.nav-button {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid #d4d4d4;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #000000;
  font-weight: 600;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 13px;
}

.nav-button:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.nav-button.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.view-all {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  padding: 3px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-family: 'gt_pressura_boldbold';
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-size: 12px;
  display: inline-flex;
  gap: 5px;
  justify-content: center;
}
.view-all img {
  display: inline-block;
  max-width: 14px;
}
.view-all:hover {
  background: #1a1a1a;
  color: white;
  text-decoration: none;
}
.view-all:hover img {
  filter: invert(100%);
}

.view-all.large {
  font-size: 20px;
  line-height: normal;
  padding: 5px 20px;
}

/* Animation d'entrée */
.event-card {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.6s ease forwards;
}

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

/* Message "aucun résultat" */
.no-results-message {
    display: none;
    padding: 80px 0;
    text-align: center;
    margin: 40px 0;
}

.no-results-content {
    max-width: 600px;
    margin: 0 auto;
}

.no-results-content h3 {
    font-family: 'gt_pressura_boldbold';
    font-size: 35px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.no-results-content p {
    font-size: 20px;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 40px;
}

.no-results-content .cta-button {
    padding: 8px 35px;
    font-size: 18px;
}

/* Animation d'apparition */
.no-results-message {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.no-results-message[style*="block"] {
    opacity: 1;
    transform: translateY(0);
}


/* Container pour les boutons de chargement */
.load-more-container {
    text-align: center;
    padding: 60px 0;
    margin-top: 40px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    padding: 12px 35px;
    font-size: 18px;
    font-family: 'gt_pressura_boldbold';
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.load-more-btn:hover {
    background: var(--black);
    color: var(--white);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Spinner de chargement */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animation des nouveaux éléments chargés */
.event-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .load-more-container {
        padding: 40px 20px;
    }

    .load-more-btn {
        padding: 10px 25px;
        font-size: 16px;
    }
}




/* Responsive */
@media (max-width: 768px) {
    .no-results-message {
        padding: 60px 20px;
        margin: 30px 0;
    }

    .no-results-content h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .no-results-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .no-results-content h3 {
        font-size: 24px;
        line-height: 1.2;
    }

    .no-results-content p {
        font-size: 16px;
    }

    .no-results-content .cta-button {
        padding: 6px 25px;
        font-size: 16px;
    }
}



 /* Section texte défilant */
.scrolling-text-section {
  background: var(--primary);
  padding: 25px 0;
  overflow: hidden;
  position: relative;
  top: -10px;
}

.scrolling-text-container {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}

.scrolling-text {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}

.scrolling-text span {
  color: white;
  font-size: 70px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'gt_pressura_boldbold';
}

.scrolling-text .square {
  display: block;
  width: 15px;
  height: 15px;
  background: white;
}


.scrolling-text span:nth-child(even) {
  font-size: 1.5rem;
  opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Pause de l'animation au hover */
.scrolling-text-section:hover .scrolling-text-container {
    /* animation-play-state: paused; */
}

/* Main Content Area */
.main-content {
  padding-top: 200px;
  background: white;
}

.main-content-anime .restaurant-hero {
    padding: 250px 0 0;
}

/* Restaurant Hero Section */
.restaurant-hero {
  background: white;
  padding: 4rem 0;
}
.restaurant-hero .cta-button {
  padding: 5px 41px;
}

.restaurant-hero .restaurant-info {
  position: relative;
  top: -100px;
}

.restaurant-location {
  font-size: 15px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  font-family: 'gt_pressura_boldbold';
}

.address-info .badge-restaurant {
  color: var(--primary);
}

.restaurant-hero .restaurant-name {
  font-size: 70px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
  line-height: 1;
}

.restaurant-hero .restaurant-description {
  font-size: 20px;
  color: black;
  line-height: 1.5;
  margin-bottom:60px;
    max-width: 460px;
}

.restaurant-small-image {
  max-width: 275px;
  position: relative;
  top: -100px;
  left: 0px;
}

.restaurant-small-image img {
  border-radius: 0px;
}

.restaurant-main-image {
  text-align: right;
}

.restaurant-main-image img {
  border-radius: 0px;
  width: 100%;
  max-width: 550px;
}

/* Restaurant Details Section */
.restaurant-details {
  background: #1d1d1b;
  padding: 190px 0 100px;
  color: white;
}

.chefs-image img {
  width: 100%;
}
.chefs-image.rellax {
  margin-top: -150px;
}
.details-content {
  padding-left: 3rem;
}

.chefs-names {
  margin-top: 80px;
  margin-bottom: 180px;
}

.chef-name {
  font-size: 20px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-align: right;
  margin-right: 10px;
  font-family: 'gt_pressura_boldbold';
}

.description-content h2,
.section-title-chef {
  font-size: 70px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
}

.description-content {
  margin-bottom: 3rem;
}

.description-content p {
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.meta-table {
  margin-top: 90px;
  align-items: flex-start;
}

.contact-info {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-details a,
.contact-details p,
.address-info p {
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'gt_pressura_boldbold';
  margin: 0;
  text-decoration: none;
}
.address-info p {
  font-size: 15px;
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.action-buttons .cta-button {
  padding: 10px 32px;
}

.table-social {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}

.table-social .social-link {
  color: var(--white);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(255,255,255,1);
}

.table-social .social-link svg {
  max-width: 20px;
}
.details-content {
  padding-left: 90px;
}

/* Responsive Restaurant Page */
@media (max-width: 768px) {

  .details-content {
      padding-left: 0;
      margin-top: 3rem;
  }
  .contact-info {
      flex-direction: column;
      gap: 2rem;
  }
  .restaurant-hero {
      padding: 2rem 0;
  }
  .restaurant-details {
      padding: 4rem 0;
  }
}

@media (max-width: 576px) {
  .restaurant-description {
      max-width: 100%;
  }
}

/* Footer */
.footer-section {
  background-color: #1d1d1b;
  color: var(--white);
  padding: 90px 0px 60px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.footer-logo {
  max-width: 90px;
  display: block;
}
.footer-logo img {
  max-width: 100%;
  filter: invert(100%);
}

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

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: 0.4s;
}
.footer-section .footer-social a:hover img {
  filter: invert(68%) sepia(95%) saturate(6847%) hue-rotate(6deg) brightness(102%) contrast(106%);
}
.footer-links li {
  margin-bottom: 0px;
}

.footer-links a {
  color: var(--white);
  font-family: 'gt_pressura_boldbold';
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}
.footer-social img {
  filter: invert(100%);
  max-width: 25px;
  max-height: 23px;
}
.social-link {
  color: var(--white);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.social-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.footer-copyright {
  text-align: center;
  margin: 10px 0 20px;
}

.footer-copyright p {
  color: #fff;
  font-family: 'gt_pressura_boldbold';
  font-size: 12px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-section {
      padding: 40px 0 60px;
  }
  .footer-logo h3 {
      font-size: 1.3rem;
      text-align: center;
  }

  .footer-logo-line {
      margin: 1rem auto;
  }
  .footer-links {
      text-align: center;
      margin-bottom: 2rem;
  }
  .footer-social {
      justify-content: center;
      margin-bottom: 2rem;
  }
  .footer-copyright {
      margin-top: 2rem;
      padding-top: 1.5rem;
  }

  .footer-copyright p {
      font-size: 0.7rem;
  }
}


/* Section de recherche */
.search-section {
  background-color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.search-title {
  font-family: 'gt_pressura_boldbold';
  font-size: 70px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 60px;
  line-height: 1.1;
}

.search-container {
  max-width: 1000px;
  margin: 0 auto 150px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.location-btn {
  width: 60px;
  height: 60px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 14px;
}

.location-btn img {
  max-width: 30px;
}

.location-btn:hover {
  background: var(--black);
  color: var(--white);
}

.location-btn:hover img {
  filter: invert(1);
}

.search-input-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid var(--black);
  border-radius: 50px;
  background: var(--white);
  padding: 0 30px;
  height: 60px;
  padding-right: 150px; /* Espace pour le bouton */
}

.search-icon {
  width: 28px;
  height: 28px;
  margin-right: 15px;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'gt_pressura_lightlight';
  background: transparent;
  padding: 0;
  color: var(--black);
  font-size: 17px;
  font-weight: bold;
}

.search-input::placeholder {
  color: #adacac;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: bold;
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 15px 30px;
  font-size: 20px;
  font-family: 'gt_pressura_boldbold';
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  height: 50px;
  line-height: 20px;
  min-width: 200px;
}

.search-btn:hover {
  background: var(--primary);
  transform: translateY(-50%);
}


/* Section des événements - Corrections pour les dropdowns */
.events-list-section {
    background: var(--white);
    padding: 250px 0 60px;
}

/* En-tête avec titre et filtres */
.events-header {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.events-back-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.back-arrow {
    width: 15px;
    height: auto;
    cursor: pointer;
    color: var(--black);
}
.back-arrow.off {
    opacity: 0.5;
}

.events-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 70px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    font-weight: normal;
    margin-right: 60px;
    margin-left: 10px;
}

.events-filters {
    display: flex;
    gap: 25px;
}

.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--black);
    padding: 12px 28px;
    font-size: 15px;
    font-family: 'gt_pressura_boldbold';
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.filter-btn:hover {
    background: var(--black);
    color: var(--white);
}

.icon-down {
    width: 21px;
    transition: transform 0.3s ease;
}

.filter-btn:hover .icon-down {
    filter: invert(1);
}

.filter-dropdown.active .filter-btn {
  background: transparent;
  color: var(--black);
}
.filter-dropdown.active .filter-btn .icon-down {
    filter: invert(0);
}
.filter-dropdown.active .filter-btn .icon-down {
    transform: rotate(180deg);
}

/* Menu déroulant - Corrections importantes */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 0 0 15px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    min-width: 200px; /* Ajout d'une largeur minimale */
}

.filter-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
    margin-top: -3px;
}

.filter-dropdown.active .filter-btn {
    border-radius: 30px 30px 0 0;
    border-bottom: none;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-family: 'gt_pressura_lightlight';
    font-size: 14px;
    color: var(--black);
    text-decoration: none;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-item:hover {
    background: var(--black);
    color: var(--white);
}


/* Liste des événements */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 0px;
    margin-bottom: 45px;
}

.events-grid .event-item {
    display: flex;
    gap: 30px;
    padding: 0;
    background: var(--white);
    transition: all 0.3s ease;
}

.events-grid .event-item:hover {
    transform: translateY(-3px);
}

.events-grid .event-item:hover .event-date-badge {
  background-color: var(--primary);
  color: var(--black);
}

.events-grid .event-item:hover .event-title a {
  color: var(--primary);
}


.events-grid .event-image {
    flex-shrink: 0;
    width: 50%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.events-grid .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.events-grid .event-item:hover .event-image img {
    transform: scale(1.05);
}

.events-grid .event-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--black);
  color: var(--white);
  padding: 5px 25px;
  border-radius: 25px;
  font-family: 'gt_pressura_boldbold';
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  pointer-events: none;
}

.events-grid .event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    padding-top: 30px;
}

.events-grid .event-location {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.events-grid .event-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 30px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 32px;
    margin-bottom: 25px;
    max-width: 280px;
}

.events-grid .event-description {
    font-size: 20px;
    line-height: normal;
    color: var(--black);
    margin-bottom: 35px;
    flex-grow: 1;
    max-width: 280px;
}

.events-grid .event-btn {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    padding: 0px 27px;
    min-height: 45px;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'gt_pressura_boldbold';
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.events-grid .event-btn:hover {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
}



/* Styles pour la section détail événement */
.event-detail {
    background: var(--white);
    padding: 250px 0 100px;
}

.event-breadcrumb {
    margin-bottom: 80px;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    text-decoration: none;
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-arrow {
    width: 12px;
    height: auto;
}

.breadcrumb-link:hover .breadcrumb-arrow {
    filter: invert(68%) sepia(95%) saturate(6847%) hue-rotate(6deg) brightness(102%) contrast(106%);
}

.event-main-content {
    align-items: flex-start;
}

.event-hero-image img {
    width: 100%;
    border-radius: 0;
}

.event-info-content {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
}

.event-date-badge {
    background: var(--black);
    color: var(--white);
    padding: 5px 27px;
    border-radius: 30px;
    font-family: 'gt_pressura_boldbold';
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 40px;
    margin-top: 30px;
}

.event-main-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 70px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 1.1;
    margin-bottom: 0;
    max-width: 540px;
}

.event-datetime {
  margin-bottom: 30px;
  margin-top: 120px;
}

.event-time-range {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.event-full-date {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-location-info {
    margin-bottom: 40px;
}

.location-name {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.location-address,
.location-city {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.event-ticket-btn {
    padding: 6px 27px;
    font-size: 20px;
    display: inline-block;
    width: fit-content;
}

.event-description {
    margin-top: 60px;
    max-width: 540px;
}

.event-description p {
    font-size: 20px;
    line-height: normal;
    color: var(--black);
    margin-bottom: 20px;
}


/* Section Posts (Magazine) */
.posts-section {
    padding: 80px 0 160px;
}

.post-card {
    background: transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card:hover .post-title a {
  color: var(--primary);
}

.post-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.post-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-category a,
.post-category {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}

.meta-cover {
  display: flex;
}
.meta-cover .article-date {
  margin-left: 5px;
}
.post-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-title a,
.post-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 20px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin-bottom: 15px;
    min-height: 50px;
    text-decoration: none;
}

.post-excerpt {
    font-size: 20px;
    color: var(--black);
    line-height: normal;
    margin: 0;
    flex-grow: 1;
}

p.magazine-excerpt,
p.post-excerpt {
  /* Méthode moderne */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  /* Fallback pour navigateurs non compatibles */
  line-height: 1.4;
  max-height: 4.2em; /* 3 × 1.4 */

  /* Styles optionnels */
  word-wrap: break-word;
  hyphens: auto;
}


/* Hero Section Magazine avec Swiper */
.hero-section-magazine {
    position: relative;
    height: 990px;
    overflow: hidden;
    background: var(--black);
    text-align: center;
}

.hero-section-magazine .swiper-wrapper {
    height: 100%;
}
.magazineHeroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-top: 200px;
    padding-bottom: 140px;
}

.hero-article-info {
    max-width: 930px;
    margin: auto;
    text-align: center;
}

.hero-category {
    color: var(--white);
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 40px;
}

.hero-article-title a,
.hero-article-title {
    color: white;
    font-family: 'gt_pressura_boldbold';
    font-size: 45px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    text-decoration: none;
}

/* Navigation Swiper personnalisée */
.hero-navigation {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 4;
}

.hero-pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Styles personnalisés pour les bullets Swiper */
.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

.hero-pagination .swiper-pagination-bullet:hover {
    background: rgba(255,255,255,0.8);
}

/* Boutons de navigation (optionnels, cachés par défaut) */
.hero-nav-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 4;
    pointer-events: none;
}

.hero-button-prev,
.hero-button-next {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
}

.hero-button-prev {
    left: 30px;
}

.hero-button-next {
    right: 30px;
}

.hero-button-prev:hover,
.hero-button-next:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

/* Afficher les boutons au hover sur desktop */
.hero-section-magazine:hover .hero-button-prev,
.hero-section-magazine:hover .hero-button-next {
    opacity: 1;
    visibility: visible;
}

/* Styles pour les flèches */
.hero-button-prev::after,
.hero-button-next::after {
    font-size: 16px;
    color: white;
    font-weight: bold;
}

/* Gestion responsive des images du slider magazine */
.hero-slide-img-mobile {
    display: none;
}

.hero-slide-img-desktop {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-slide-img-desktop {
        display: none;
    }

    .hero-slide-img-mobile {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* Navigation Magazine */
.magazine-nav-section {
    background: white;
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}

.magazine-nav-section.sticky {
    position: fixed;
    top: 80px; /* Hauteur du header fixe */
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.magazine-navigation {
    padding: 30px 0;
}

.magazine-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.magazine-nav-list .nav-item {
    color: var(--black);
    text-decoration: none;
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

.magazine-nav-list .nav-item:hover,
.magazine-nav-list .nav-item.active {
    color: var(--primary);
}

/* Responsive Hero Magazine */
@media (max-width: 1024px) {
    .hero-article-title {
        font-size: 50px;
    }

    .magazine-nav-list {
        gap: 40px;
    }

    /* Afficher les boutons de navigation sur tablette */
    .hero-button-prev,
    .hero-button-next {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .hero-slide-content {
        padding-top: 150px;
    }

    .hero-article-title {
        font-size: 40px;
        letter-spacing: 1px;
    }

    .hero-navigation {
        bottom: 50px;
    }

    .magazine-nav-list {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .magazine-navigation {
        padding: 20px 0;
    }

    .magazine-nav-section.sticky {
        top: 80px;
    }

    /* Masquer les boutons sur mobile (swipe suffisant) */
    .hero-button-prev,
    .hero-button-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-article-title {
        font-size: 32px;
    }

    .magazine-nav-list .nav-item {
        font-size: 13px;
    }

    .hero-article-info {
        max-width: 90%;
    }
}

/* ----------------------- */
/* Section Article Details */
/* ----------------------- */
.posts-details {
    background: var(--white);
    padding: 250px 20px 100px;
}

.article-breadcrumb {
    margin-bottom: 80px;
}

.article-breadcrumb .breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    text-decoration: none;
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.article-breadcrumb .breadcrumb-link:hover {
    color: var(--primary);
    text-decoration: none;
}

.article-breadcrumb .breadcrumb-arrow {
    width: 12px;
    height: auto;
}

.article-breadcrumb .breadcrumb-link:hover .breadcrumb-arrow {
    filter: invert(68%) sepia(95%) saturate(6847%) hue-rotate(6deg) brightness(102%) contrast(106%);
}

.article-category-sidebar {
    margin-bottom: 40px;
    max-width: 340px;
}

.article-category-sidebar .event-date-badge {
  margin-bottom: 25px;
}

.article-main-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 45px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 50px;
}

/* Layout en deux colonnes comme la maquette */
.article-main-layout {
    margin-bottom: 100px;
    align-items: flex-start;
}

.article-hero-image {
    margin-bottom: 30px;
}

.article-hero-image img {
    width: 100%;
    border-radius: 0;
}

.article-info {
    padding-left: 0;
}

.article-date {
    font-family: 'gt_pressura_lightlight';
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: inline-block;
}

.article-author {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
      display: inline-block;
}

/* Colonne de droite avec contenu */
.article-right-content {
    gap: 40px;
    position: relative;
      display: flex;
}

/* Réseaux sociaux sticky à gauche du contenu - CSS pur */
.article-social-sticky {
    position: sticky;
    top: 150px; /* Distance depuis le haut lors du sticky */
    left: -80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
    align-self: flex-start; /* Important pour que le sticky fonctionne */
    margin-left: 20px;
}

.social-share-link {
    color: var(--black);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    border: 0px solid var(--black);
}

.social-share-link img {
    max-width: 15px;
}

.social-share-link:hover {
    color: var(--white);
    background-color: var(--black);
    transform: translateY(-2px);
}
.social-share-link:hover img {
  filter: invert(1);
}

/* Responsive */
@media (max-width: 768px) {
    /* Sur mobile, les réseaux sociaux passent en horizontal et perdent le sticky */
    .article-social-sticky {
        position: relative;
        left: 0;
        top: 0;
        flex-direction: row;
        gap: 10px;
        margin-bottom: 30px;
        justify-content: flex-start;
    }
}


.article-text-content {
    margin-bottom: 80px;
}

.article-text-content h2,
.article-text-content h3,
.article-text-content h4 {
  margin-bottom: 45px;
}

.article-intro {
    margin-bottom: 40px;
}

.article-intro p {
    font-size: 20px;
    line-height: normal;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 0;
}

.article-subtitle {
    font-family: 'gt_pressura_boldbold';
    font-size: 35px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 40px;
    margin-top: 60px;
}

.article-body {
    margin-bottom: 60px;
}

.article-body iframe {
    max-width: 100%;
}
.article-body p {
    font-size: 20px;
    line-height: normal;
    color: var(--black);
    margin-bottom: 25px;
}
.article-body a {
  color: var(--primary);
  text-decoration: none;
}
.article-additional-images {
    margin-bottom: 60px;
}

.article-image-full img {
    width: 100%;
    border-radius: 0;
    margin-bottom: 20px;
}

share-link {
    color: var(--black);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--black);
}

.social-share-link svg {
    max-width: 18px;
}

/* ---------------------- */
/* Section Tables Map */
/* ---------------------- */

.tables-map-container {
  display: flex;
  height: calc(100vh - 80px);
  margin-top: 80px;
  top: 0;
  position: relative;
  left: 0;
}

/* Panel de gauche - Liste des tables */
.tables-left-panel {
    width: 50%;
    background: var(--white);
    overflow-y: auto;
    padding: 40px 30px 100px 30px;
    border-right: 1px solid #e5e5e5;
}

.tables-header {
    margin-bottom: 60px;
}

.tables-main-title {
    font-size: 50px;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

/* Barre de recherche adaptée */
.search-container-map {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

/* Classe pour cacher le formulaire de recherche quand une recherche est active */
#searchForm.search-hidden {
  margin: 0;
  height: 0;
}

#searchForm.search-hidden .search-btn,
#searchForm.search-hidden #geolocateBtn,
#searchForm.search-hidden .search-input-container {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.search-container-map .location-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--black);
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 12px;
}

.search-container-map .location-btn:hover {
    background: var(--black);
    color: var(--white);
}

.search-container-map .location-btn:hover img {
    filter: invert(1);
}

.search-container-map .search-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    border: 2px solid var(--black);
    border-radius: 50px;
    background: var(--white);
    padding: 0 20px;
    height: 50px;
    max-width: 470px;
}

.search-container-map .search-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    margin-top: -7px;
}

.search-container-map .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'gt_pressura_lightlight';
    background: transparent;
    padding: 0;
    color: var(--black);
    font-size: 16px;
    font-weight: bold;
}

.search-container-map .search-input::placeholder {
    color: #adacac;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: bold;
}

.search-container-map .search-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-family: 'gt_pressura_boldbold';
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 50px;
    line-height: 26px;
    min-width: 140px;
}

.search-container-map .search-btn:hover {
    background: var(--primary);
}


/* Container pour les résultats de recherche */
.search-results-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0;
}

/* Badge avec le terme recherché */
.search-result-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 25px;
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 12px;
    transition: all 0.3s ease;
}

.search-result-badge .search-term {
    display: block;
    line-height: 1;
}

.search-result-badge .remove-search {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 17px;
    line-height: 1;
    margin-right: -10px;
    margin-left: 15px;
}
.search-result-badge .remove-search img {
  filter: invert(1);
  height: 20px;
  width: 20px;
}

.search-result-badge .remove-search:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.search-result-badge .remove-search span {
    display: block;
    line-height: 1;
    font-weight: normal;
}

/* Compteur de résultats */
.results-count {
    display: flex;
    align-items: center;
}

.results-count .count-text {
    font-family: 'gt_pressura_boldbold';
    font-size: 20px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: normal;
}

/* Animation d'apparition */
.search-results-container {
    opacity: 0;
    transform: translateY(-10px);
    animation: slideInResults 0.4s ease forwards;
}

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


/* Panel de droite - Carte */
.map-panel {
    width: 50%;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    position: relative;
}

/* Scrollbar personnalisée pour le panel de gauche */
.tables-left-panel::-webkit-scrollbar {
    width: 6px;
}

.tables-left-panel::-webkit-scrollbar-track {
    background: transparent;
}

.tables-left-panel::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}

.tables-left-panel::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}


/* ---------------------- */
/* Section Intro Partenaires */
/* ---------------------- */
.partners-intro-section {
    background: var(--white);
    padding: 300px 0 250px;
}


.partners-intro-section .cta-button {
  padding: 8px 27px;
}

.partners-intro-content {
    padding-right: 2rem;
}

.partners-category {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.partners-main-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 70px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 150px;
    max-width: 990px;
}

.partners-description {
    margin-bottom: 60px;
    max-width: 400px;
}

.partners-description p {
    font-size: 25px;
    color: var(--black);
    line-height: normal;
    margin: 0;
    font-weight: bold;
}

.partners-intro-image {
  text-align: right;
  padding-left: 2rem;
  margin-top: -170px;
}

.partners-intro-image img {
    border-radius: 0;
    max-width: 100%;
}

/* Section Liste des Partenaires */
.partners-list-section {
    background: #1d1d1b;
    padding: 140px 0 140px;
    color: white;
}

.partners-list-header {
    margin-bottom: 40px;
}

.partners-list-category {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #4a4a4a;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 25px 0;
    border-bottom: 1px solid #4a4a4a;
}

.partner-item:last-child {
    border-bottom: none;
}

.partner-logo {
    flex-shrink: 0;
    width: 215px;
    height: 215px;
    border-radius: 100%;
    overflow: hidden;
}

.partner-logo-img {
    width: 101%;
    height: 101%;
    object-fit: cover;
    margin: -1px;
}

.partner-info {
    flex: 1;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-around;
}

.partner-brand-logo {
    flex-shrink: 0;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand-logo {
    max-width: 100%;
    opacity: 0.8;
}

.partner-description {
    flex: 1;
    max-width: 560px;
}

.partner-description p {
    font-size: 19px;
    color: white;
    line-height: normal;
    margin: 0;
}

.partner-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.partner-social {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;

}

.off {
  opacity: 0.3 !important;
  pointer-events: none;
}
.partner-site-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 5px 25px;
    font-size: 15px;
    font-family: 'gt_pressura_boldbold';
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    height: 38px;
    min-width: 100px;
    justify-content: center;
    flex-shrink: 0;
}

.action-buttons .cta-button:hover,
.table-social .social-link:hover,
.partner-site-btn:hover,
.partner-social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
}

/* Section CTA Association */
.association-cta-section {
    background: var(--primary);
    padding: 100px 0 165px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.association-cta-section:hover .cta-title,
.association-cta-section:hover .cta-arrow-circle {
  border-color: var(--black);
  color: var(--black);
}
.association-cta-section:hover .cta-arrow-circle img {
  filter: invert(0);
}

.cta-content {
    display: grid;
    text-align: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    text-decoration: none;
}

.cta-arrow-circle {
    width: 60px;
    height: 60px;
    border: 1.5px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
    margin: 0 auto 60px;
}

.cta-arrow-circle img {
  max-width: 30px;
  filter: invert(1);
}

.association-cta-section:hover .cta-arrow-circle {
    transform: translateX(10px);
}

.cta-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 90px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.association-cta-section.app {
  background: var(--primary);
  padding: 180px 0 75px;
}
p.cta-title {
  font-size: 50px;
  line-height: 60px;
}
.cta-arrow-circle.down {
  margin-bottom: 0;
  margin-top: 75px;
  transform: rotate(90deg);
}

.association-cta-section:hover .cta-arrow-circle.down  {
    transform: rotate(90deg) translateX(10px);
}
/* ---------------------- */
/* Section APP */
/* ---------------------- */

.mobile-app-section {
    padding: 250px 0;
    overflow: hidden;
}

.mobile-app-section .row {
    align-items: center;
}

/* Mockup téléphone */
.phone-mockup {
    position: relative;
    max-width: 460px;
    margin: 0 auto;
}

.phone-screen {
    background: var(--primary);
    border-radius: 40px;
    padding: 60px 40px;
    aspect-ratio: 9/16;
    height: 715px;
    width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.phone-screen img {
    filter: invert(1);
    max-width: 200px;
}
.app-logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.app-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 32px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 0.9;
    margin: 0;
    position: relative;
}

.app-title::before,
.app-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: white;
}

.app-title::before {
    top: -20px;
    transform: translateX(-50%) rotate(-15deg);
}

.app-title::after {
    bottom: -20px;
    transform: translateX(-50%) rotate(15deg);
}

.phone-screen .app-coq-logo {
  position: absolute;
  bottom: 80px;
  right: -115px;
}
.phone-screen .app-coq-logo img {
  filter: invert(0);
}
/* Contenu */
.app-content {
    padding-left: 4rem;
}

.app-category {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.app-main-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 70px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 140px;
    max-width: 680px;
}

.app-description {
    margin-bottom: 60px;
    max-width: 650px;
    padding-left: 100px;
}

.app-description p {
    font-size: 25px;
    color: var(--black);
    line-height: normal;
    font-weight: bold;
    margin-bottom: 60px;
}

/* Bouton App Store */
.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'gt_pressura_boldbold';
}

.app-store-btn:hover {
    background: var(--black);
    color: white;
    text-decoration: none;
}

.apple-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.download-text {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Section App Features - Fond Noir */
.app-features-section {
    background: #1d1d1b;
    padding: 140px 0;
    color: white;
}

.features-content {
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.feature-block {
  margin-bottom: 60px;
}


.feature-block p {
    font-size: 25px;
    color: white;
    line-height: normal;
    margin: 0 0 35px;
    max-width: 480px;
    font-family: 'gt_pressura_boldbold';
    line-height: 32px;
}

.feature-block.black p {
  color: var(--black);
}


.align-item-end {
  align-items: end;
}

.features-images {
    position: relative;
    height: 100%;
}

.image-stack {
    position: relative;
    height: 100%;
    width: 100%;
}

.feature-image-1 {
    z-index: 3;
}

.feature-image-2 {
  z-index: 2;
  display: flex;
  justify-content: end;
  margin-top: -250px;
}

.last-line {
  margin-top: 140px;
}

/* Section Trois Missions */
.missions-section {
    position: relative;
    padding: 240px 0;
    overflow: hidden;
}

.missions-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.missions-section .container {
    position: relative;
    z-index: 2;
}

.missions-card {
    background: var(--primary);
    padding: 60px 0px;
    border-radius: 0;
    color: white;
    max-width: 490px;
    margin: 0 auto;
    text-align: center;
}

.missions-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 60px;
}

.missions-logo {
    position: relative;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.missions-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.missions-coq {
    width: 120px;
    height: 150px;
    filter: invert(1);
    margin-left: 20px;
}

.missions-text-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    animation: rotate 30s linear infinite;
}

.circular-text {
    width: 100%;
    height: 100%;
}

.circular-text-path {
    font-family: 'gt_pressura_boldbold';
    font-size: 9px;
    fill: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.missions-description {
    max-width: 360px;
    margin: 0 auto;
}

.missions-description p {
    font-family: 'gt_pressura_boldbold';
    font-size: 21px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    margin: 0;
}



.missions-section.asso {
  position: relative;
  padding: 140px 0;
}
.asso .missions-card {
  padding: 70px 0 100px;
}
.asso .missions-logo {
  position: relative;
  margin: 0 auto 70px;
}
.asso .missions-circle {
  width: auto;
  height: auto;
}
.asso .missions-description p {
  font-family: 'gt_pressura_lightlight';
  font-size: 21px;
  line-height: normal;
  margin: 0;
  text-transform: inherit;
  letter-spacing: 0;
}
.asso .feature-image-2 {
    z-index: 2;
    display: flex;
    justify-content: end;
    top: -250px;
    position: relative;
}

.app-features-section.asso {
  padding-top: 280px;
  padding-bottom: 400px;
}
.app-features-section.asso h1 {
  color: white;
  margin-bottom: 320px;
}

section.hero-section-asso {
  display: flex;
  justify-content: end;
}

.hero-section.asso {
  background-color: var(--primary);
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 230px 230px 150px;
  color: var(--white);
  margin-top: -150px;
  width: 100%;
  max-width: 1300px;
}
.asso .hero-content {
  max-width: 100%;
  transform: translateX(0px);
  margin-bottom: 0;
  width: 100%;
  margin-left: 0;
  text-transform: uppercase;
  max-width: 630px;
}

.asso-section {
  padding: 350px 0 150px;
}

.asso-section .feature-image-2 {
  top: -200px;
  position: relative;
  margin-top: 0;
}

.asso-section .author {
  font-family: 'gt_pressura_boldbold';
  font-size: 25px;
  color: var(--primary);
  text-transform: uppercase;
  text-align: right;
  max-width: 480px;
}
.asso-section .team-job {
  text-align: right;
  max-width: 480px;
}


/* Container de la section horizontale */
.horizontal-scroll-wrapper {
    position: relative;
    /* La hauteur totale = largeur du contenu horizontal */
    /* Sera calculée dynamiquement en JS */
}

/* Section sticky qui contient le scroll horizontal */
.horizontal-scroll-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Contenu qui scroll horizontalement */
.horizontal-content {
    display: flex;
    gap: 60px;
    padding-left: var(--margeleft);
    padding-right: 400px;
    transform: translateX(0);
    will-change: transform;
}

/* Cartes des membres */
.member-card {
    flex-shrink: 0;
    width: 400px;
    height: 600px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.restaurateurs .section-title {
  text-align: center;
  margin-bottom: -80px;
  margin-top: 20px;
}
.events-section.restaurateurs {
  background: #1d1d1b;
  overflow: inherit;
}

.events-section.restaurateurs {
  color: var(--primary);
}

.event-title a {
  color: var(--black);
}

.restaurateursSwiper .event-title,
.events-section.restaurateurs .event-title:hover, .event-title a:hover {
  color: var(--primary);
}

.events-section.restaurateurs .section-title,
.events-section.restaurateurs .event-location {
  color: white;
}

.events-section.restaurateurs .event-card {
  background: transparent;
}
.events-section.restaurateurs .nav-button {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid #242424;
    background: transparent;
    color: white;
}

.team-list {
  justify-content: center;
}
.team-card {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.team-card .team-image img {
  width: 225px;
}
.team-name {
  font-family: 'gt_pressura_boldbold';
  font-size: 25px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 60px;
}
.team-job {
  font-family: 'gt_pressura_boldbold';
  font-size: 15px;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 50px;
}
.team-mail {
  width: 30px;
  display: block;
}

.team-mail:hover img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(91%) saturate(7498%) hue-rotate(357deg) brightness(96%) contrast(101%);
}


.hero-section.origine {
  padding-top: 230px;
  padding-bottom: 50px;
}
.hero-section.origine .hero-tagline {
  margin-bottom: 50px;
}
.hero-section.origine .hero-title {
  font-size: 90px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 85px;
}
.hero-section.origine .img {
  margin-bottom: 100px;
}
.hero-section.origine .content {
  max-width: 700px;
  margin-bottom: auto;
  display: inline-block;
}
.hero-section.origine .content p {
  font-family: 'gt_pressura_lightlight';
  font-size: 21px;
  line-height: normal;
  margin-bottom: 125px;
}

.hero-section.origine .cta-arrow {
  font-family: 'gt_pressura_boldbold';
  font-size: 25px;
  color: var(--white);
  text-align: center;
}
.hero-section.origine .cta-arrow .down {
  width: 18px;
  filter: invert(1);
  transform: rotate(90deg);
  display: block;
  margin: auto;
  transition: 0.4s;
  margin-top: 10px;
}
.hero-section.origine .cta-arrow:hover .down {
  transform: rotate(90deg) translateX(10px);
}

/* ---------------------- */
/* Section Archive Asso  */
/* ---------------------- */

/* Section Archives Slider */
.archives-slider-section {
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.archivesSwiper {
    width: 100%;
    height: 100vh;
    min-height: 800px;
}

.archive-slide {
    display: flex;
    height: 100%;
    width: 100%;
}

/* Image principale gauche */
.archive-main-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.archive-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenu droite */
.archive-content {
    width: 50%;
    background: #f8f8f8;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.archive-year {
    font-family: 'gt_pressura_boldbold';
    font-size: 70px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 120px;
    line-height: 1;
}

.archive-portrait {
    margin-bottom: 90px;
}

.portrait-img {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 0;
}

.archive-description p {
    font-size: 21px;
    color: var(--primary);
    line-height: normal;
    margin: 0;
    max-width: 530px;
    text-align: center;
}

.highlight-text {
    color: var(--primary);
    font-weight: bold;
}

/* Navigation par points personnalisée */
.archives-pagination {
    position: absolute;
    right: 30px !important;
    top: 50% !important;
    left: inherit !important;
    bottom: inherit !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.archives-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #979797;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
}

.archives-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

.archives-pagination .swiper-pagination-bullet:hover {
    background: var(--primary);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .archive-content {
        padding: 60px 40px;
    }

    .archive-year {
        font-size: 100px;
        margin-bottom: 30px;
    }

    .portrait-img {
        width: 200px;
        height: 280px;
    }

    .archive-description {
        max-width: 350px;
    }

    .archive-description p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .archivesSwiper {
        height: auto;
        min-height: 100vh;
    }

    .archive-slide {
        flex-direction: column;
    }

    .archive-main-image {
        width: 100%;
        height: 50vh;
        min-height: 400px;
    }

    .archive-content {
        width: 100%;
        padding: 40px 30px;
        text-align: center;
        align-items: center;
        height: calc(100vh - 80px) !important;
    }

    .archive-year {
        font-size: 80px;
        margin-bottom: 25px;
    }

    .portrait-img {
        width: 180px;
        height: 250px;
    }

    .archive-description {
        max-width: 100%;
        text-align: left;
    }

    .archive-description p {
        font-size: 16px;
    }

    .archives-pagination {
        right: 20px;
        gap: 12px;
    }

    .archives-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .archive-content {
        padding: 30px 20px;
    }

    .archive-year {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .portrait-img {
      width: 235px;
      height: 330px;
    }

    .archive-description p {
        font-size: 17px;
        max-width: 90%;
        margin: auto;
    }

    .archives-pagination {
        right: 15px;
        gap: 10px;
    }

    .archives-pagination .swiper-pagination-bullet {
      width: 7px;
      height: 7px;
      margin: 4px 0 !important;
    }
}


/* ---------------------- */
/* Section Contact */
/* ---------------------- */

.page-section,
.contact-section {
    background: var(--white);
    padding: 300px 0 200px;
    min-height: calc(100vh - 308px);
}

.contact-main-content {
    padding-right: 2rem;
}

.page-section h1,
.contact-title {
    font-family: 'gt_pressura_boldbold';
    font-size: 70px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0;
}

.contact-info-section {
    padding-left: 3rem;
    padding-top: 80px;
    display: flex;
    flex-wrap: wrap;
}

.contact-block {
    margin-bottom: 35px;
      width: 51%;
}

.contact-category {
    font-family: 'gt_pressura_boldbold';
    font-size: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.contact-email a,
.contact-email {
    font-family: 'gt_pressura_boldbold';
    font-size: 20px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.contact-email a:hover,
.contact-email:hover {
    color: var(--black);
    text-decoration: none;
}


/* Styles pour le scroll infini du magazine */

/* Spinner de chargement */
.loading-spinner {
    color: var(--primary);
    font-family: 'gt_pressura_lightlight', sans-serif;
}

.loading-spinner .spinner-border {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    border-width: 0.2em;
}

.loading-spinner p {
    color: var(--black);
    font-size: 16px;
    margin: 0;
    font-weight: normal;
}

/* Message de fin de contenu */
.end-of-content {
    color: #666;
    font-style: italic;
    font-family: 'gt_pressura_lightlight', sans-serif;
}

.end-of-content p {
    margin: 0;
    font-size: 17px;
    font-style: normal;
    text-transform: uppercase;
    font-family: 'gt_pressura_boldbold';
}

/* Animation des nouveaux articles */
.post-card {
    transition: all 0.3s ease;
}

.posts-section .col-lg-4 {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Responsive pour le spinner */
@media (max-width: 768px) {
    .loading-spinner {
        padding: 30px 20px;
    }

    .loading-spinner p {
        font-size: 14px;
    }

    .end-of-content {
        padding: 30px 20px;
    }

    .end-of-content p {
        font-size: 16px;
    }
}

.tables-loading-spinner {
    color: var(--primary);
}

.tables-loading-spinner .spinner-border {
    color: var(--primary);
}

.tables-end-of-content {
    color: #666;
    font-style: italic;
}

.tables-end-of-content p {
    margin: 0;
    font-size: 17px;
    font-style: normal;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'gt_pressura_boldbold';
}

/* Éviter les conflits avec le magazine */
.post-type-archive-tables .restaurant-card {
    transition: all 0.3s ease;
}

/* Animations pour le scroll infini magazine */
.post-card {
    transition: all 0.3s ease;
}

.loading-spinner {
    color: var(--primary);
}

.loading-spinner .spinner-border {
    color: var(--primary);
}

.end-of-content {
    color: #666;
    font-style: italic;
}

.end-of-content p {
    margin: 0;
    font-size: 18px;
}


.page-section p {
  font-size: 18px;
  line-height: 26px;
}
.wp-block-separator {
    margin: 45px 0;
}


.end-of-content, .no-results {
  text-align: center;
  color: black !important;
  font-style: italic;
}
.no-results .cta-button {
  margin-top: 35px;
}


.page.page-id-387 .search-btn {
  display: none;
}


#closeMapBtn,
#mapBtn {
  display: none;
}


body.page-template-page-tables-carte {
  overflow: hidden;
}


.divider-cat {
  height: 100px;
}
.archive.category .hero-section-magazine {
  height: 130px;
  background: white;
}


:root :where(.wp-block-image figcaption) {
  font-size: 12px !important;
  text-align: right !important;
}

/* Responsive */

@media (max-width: 1500px) {
  .hero-title {
    font-size: 80px;
  }
  .hero-description {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .header-logo {
    transform: translateX(-50%) scale(0.8);
  }
  .hero-content {
    margin-bottom: 200px;
  }
  .scrolling-text span {
    font-size: 50px;
  }
  .archive-year, .app-main-title,
  .hero-section.origine .hero-title,
  .section-title, .restaurant-hero .restaurant-name,
  .cta-title, .page-section h1,
  .contact-title, .nos-tables-title, .nos-tables-title a {
    font-size: 48px;
  }
  .main-content {
    padding-top: 180px;
  }
  .restaurant-hero .restaurant-info {
    top: -175px;
  }
  .restaurant-small-image {
    top: -100px;
  }
  .horizontal-content {
    padding-left: 80px;
  }
  .navbar-nav ul li a, .navbar-nav .nav-link {
    font-size: 16px;
  }
  .pt-200 {
    padding-top: 100px;
  }
  .navbar-nav ul li a, .navbar-nav .nav-link {
    margin-right: 45px;
  }
  .partners-main-title {
    font-size: 50px;
    max-width: 780px;
  }
  .nav-left a {
    font-size: 40px;
  }
  .partners-intro-section {
    padding: 200px 0 150px;
  }
  .nos-tables-section {
    padding: 75px 0;
  }

  .restaurant-main-image img {
    max-width: 440px;
  }
  .restaurant-small-image img {
    max-width: 225px;
  }
  .app-features-section.asso h1 {
    margin-bottom: 120px;
  }
  .footer-section {
    padding-top: 60px;
  }
  .footer-links a {
    font-size: 15px;
    font-family: inherit;
    font-weight: inherit;
  }
  .footer-logo img {
    max-width: 80%;
  }

} /* End 1500px */



@media (min-width: 1024px) and (max-width: 1500px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1050px;
  }
  .no-scroll .navbar, .navbar {
    height: 100px;
  }
  .action-buttons .cta-button {
    padding: 13px 15px;
    font-size: 16px;
  }
  .archive-content {
    justify-content: center;
    max-height: 80%;
  }
  .archive-year {
    font-size: 85px;
  }
  .feature-image-2 {
    margin-top: 40px;
  }
  .asso-section {
    padding: 200px 0 150px;
  }
  .asso-section .feature-image-1 img {
    top: -200px;
    position: relative;
  }
  .event-main-title { font-size: 50px; }
  .chefs-names { margin-left: 0px; }
  .chefs-image.rellax {
    margin-top: 100px;
  }
  .restaurant-details {
    padding: 50px 0 100px;
  }
  .events-list-section .container {
    max-width: 1250px !important;
  }
  .events-grid .event-image {
    flex-shrink: 0;
    width: 40%;
  }
  .team-card .team-image img {
    width: 170px;
  }

  .feature-block p {
    font-size: 20px;
    line-height: 27px;
  }
  .features-content {
    padding-right: 1rem;
  }
  .hero-section.origine .hero-title {
    letter-spacing: 2px;
  }
  .hero-tagline {
    font-size: 21px;
    letter-spacing: 1px;
  }
  .hero-logo img {
    max-width: 80%;
  }
  .navbar-nav ul li a, .navbar-nav .nav-link {
    margin-right: 40px;
  }
  .navbar-nav ul li a, .navbar-nav .nav-link {
    font-size: 15px;
  }
  .magazine-category a, .magazine-category {
    margin-bottom: 0;
  }
  .magazine-title {
    font-size: 52px;
  }
  .magazine-subtitle {
    font-size: 15px;
  }
  .magazine-article-title, .magazine-article-title a {
    font-size: 22px;
  }
  .magazine-excerpt {
    font-size: 17px;
  }
  .event-title, .event-title a {
    font-size: 23px;
  }
  .events-section .swiper-slide,
  .event-image img {
    width: 350px !important;
    min-width: 350px !important;
  }
  .event-date {
    font-size: 24px;
  }
  .event-content {
    padding: 40px 25px;
  }
}

@media (max-width: 1450px) {
  .asso .feature-image-2 {
    top: -180px;
  }
  .restaurant-small-image {
    left: -50px;
  }
  .archive-year {
    font-size: 70px;
    margin-bottom: 40px;
  }
  .archive-portrait {
    margin-bottom: 40px;
  }
  .archive-slide {
    height: calc(100vh - 80px);
  }
  .archive-content {
    max-height: 100%;
  }
}


@media (max-width: 1400px) {

  .events-list-section .container {
    max-width: 95%;
  }
  .events-grid .event-content {
    display: flow;
    padding-right: 20px;
  }
  .events-grid .event-description {
    margin-top: 0px;
  }
  .events-grid .event-image {
    flex-shrink: 0;
    width: 40%;
  }
  .events-grid .event-date-badge {
    top: 0;
    font-size: 16px;
  }
  .restaurant-hero .restaurant-info {
    max-width: 380px;
  }
}

@media (max-width: 1200px) {
  .bottom-nav a {
    font-size: 16px;
  }
  .team-card .team-image img {
    width: 140px;
  }
  .hero-description {
    font-size: 30px;
  }
  .restaurant-hero .restaurant-info {
    top: -240px;
    padding: 90px 25px 20px 0;
  }
  .partners-main-title {
    font-size: 50px;
  }
  .asso .feature-image-2 {
    top: -120px;
  }
  .hero-section.asso {
    padding: 130px 130px 150px;
  }
  .app-main-title,
  .event-main-title {
    font-size: 40px;
    margin-bottom: 50px;
  }
  p.cta-title {
    font-size: 40px;
    line-height: 50px;
  }
  .asso-section .feature-image-1 img {
      top: -200px;
      position: relative;
  }
  .feature-image-2 { margin-top: 0; }
  .partner-info {
    display: inline-block;
    margin-bottom: 45px;
  }
  .partner-description {
    max-width: 100%;
    margin-bottom: 45px;
  }
  .posts-details .container { max-width:95%; }
  .article-main-title { font-size: 40px; }
  .chefs-image.rellax { margin-top: -80px; }
  .restaurant-hero {padding: 0;}


  .contact-details a, .contact-details p, .address-info p {
    font-size: 18px;
  }
  .meta-table .cta-button {
      font-size: 18px;
      padding: 13px 15px;
      font-size: 16px;
  }
  .meta-table .action-buttons,
  .meta-table .table-social {
    gap: 15px;
  }
  .meta-table .table-social .social-link {
    width: 48px;
    height: 48px;
  }


} /* End 1200 px */

@media (max-width: 1024px) {

  .header-logo {
    left: 80px;
  }
  .navbar-nav {
    flex-direction: row;
  }
  .hero-title {
    font-size: 90px;
  }
  .hero-logo {
    max-width: 250px;
  }
  .hero-tagline {
    margin-bottom: 60px;
  }
  .hero-description {
    font-size: 26px;
  }
  .events-title,
  .section-title {
    font-size: 50px;
  }
  .nav-left a {
    font-size: 40px;
  }
  .restaurant-hero .restaurant-info {
    top: 0px;
    padding-bottom: 60px;
  }
  .chefs-names {
    margin-top: 0px;
    margin-bottom: 60px;
    margin-left: 50%;
  }
  .action-buttons .cta-button {
    margin-bottom: 60px;
  }
  .meta-table .action-buttons .cta-button {
    margin-bottom: 0px;
  }
  .app-features-section.asso h1 {
    margin-bottom: 220px;
  }
  .pt-200 {
    padding-top: 100px;
  }
  .events-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .tables-map-container {
    display: flex;
    height: calc(100vh);
    margin-top: 0px;
  }
  .tables-map-container.full-map .tables-left-panel {
    left: -50%;
  }
  .tables-map-container.full-map .map-panel {
    width: 100%;
  }
  .tables-map-container.full-map .map-panel #closeMapBtn {
    display: inline-block;
  }
  #mapBtn {
    display: inline-block;
    padding: 8px;
  }
  .search-hidden #mapBtn {
    top: 60px;
    position: relative;
  }
  #closeMapBtn {
    border-radius: 0 8px 8px 0;
    position: absolute;
    z-index: 1100;
    top: 120px;
    left: 0;
  }
  .map-panel .leaflet-left {
    top: 145px !important;
  }
  .tables-map-container {
    display: block;
    overflow: hidden;
    position: relative;
  }
  .tables-left-panel {
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 10;
    transition: 0.6s;
    overflow-y: auto;
    padding: 40px 30px 140px 30px;
  }
  #searchForm.search-hidden {
    margin: 0 0 30px;
  }
  .map-panel {
    width: 100%;
    height: 100%;
    z-index: 9;
  }

  .search-container-map .search-btn {
    display: none;
  }


} /* End 1024 px */

@media (max-width: 991px) {
  .phone-mockup { margin-bottom: 60px; }
  p.cta-title {
    font-size: 36px;
    line-height: 45px;
    padding: 0 25px;
  }
  .restaurant-details .container .restaurant-box {
    flex-direction: column-reverse;
  }
  .feature-image-2 {
    margin-top: 0;
  }
  .chefs-image.rellax {
    margin-top: 20px;
  }
  .hero-section-magazine {
    height: 100vh;
  }
  .mobile-app-section {
    padding: 200px 0;
  }

  .partners-list-section, .app-features-section,
  .app-features-section.asso,
  .asso-section {
    width: 100%;
    overflow: hidden;
  }
  .action-buttons .cta-button {
    padding: 13px 25px;
  }
  .header-logo {
    transform: translateX(-50%) scale(1);
  }
  .image-stack {
    margin-bottom: 25px;
  }

}


@media (max-width: 768px) {
  .main-content {
    padding-top: 120px;
  }
  .team-card .team-image img {
    width: 225px;
  }
  .hero-content {
    max-width: 90%;
    text-align: right;
  }
  .hero-logo img {
    margin-right: -55px;
  }
  .hero-description {
    font-size: 24px;
    display: flex;
    justify-content: end;
  }
  .scrolling-text .square {
    width: 10px;
    height: 10px;
  }
  .footer-logo {
    margin: auto;
  }
  .nav-left a {
    font-size: 32px;
    letter-spacing: 1px;
  }
  .fullscreen-overlay .coq-logo {
    max-width: 190px;
  }
  .restaurant-main-image img {
    width: 85%;
  }
  .events-title {
    margin-right: 40px;
  }
  .cta-title,
  .page-section h1, .contact-title,
  .nos-tables-title, .nos-tables-title a {
    font-size: 50px;
  }
  .pt-200 {
    padding-top: 70px;
  }
  .search-btn {
    min-width: auto;
  }
  .search-input-container {
    padding: 0 15px
  }
  .events-header {
    display: inline-block;
  }
  .events-filters {
    margin-top: 45px;
  }
  .posts-details,
  .partners-intro-section,
  .page-section, .contact-section,
  .event-detail {
    padding: 190px 20px 60px;
  }
  .events-list-section {
    padding: 190px 0px 60px;
  }
  .article-breadcrumb,
  .event-breadcrumb {
    margin-bottom: 40px;
  }
  .event-datetime {
    margin-top: 80px;
  }
  .app-coq-logo {
    bottom: 40px;
    right: -100px;
  }
  .mobile-app-section {
    padding-bottom: 100px;
  }
  .partners-intro-image {
    margin-top: 0;
  }
  .partners-main-title {
    margin-bottom: 75px;
  }
  .article-right-content {
    display: inline-block;
  }
  .article-main-layout {
    margin-bottom: 0;
  }
  .events-grid .event-content {
    display: flow;
    padding-right: 0;
  }
  .events-grid .event-image {
    flex-shrink: 0;
    width: 45%;
  }
  .asso-section .feature-image-2 {
    top: -100px;
    margin-right: 20px;
  }

  .tables-left-panel {
    width: 70%;
    top: 0;
    height: 100vh;
  }
  .tables-map-container.full-map .tables-left-panel {
    left: -70%;
  }

  .page-template-page-tables-carte-php #scrollDiv {
    display: none;
  }

  .search-results-container {
    display: block;
    position: relative;
    top: 0px;
    margin: 0;
    background: white;
    max-width: 68%;
  }
  .search-result-badge {
    margin-bottom: 0;
    max-width: 195px;
    padding: 15px 25px;
    margin-right: 20px;
  }
  .results-count {
    text-align: right;
  }
  .tables-left-panel {
    padding-top: 90px;
  }
  .map-panel .leaflet-left {
    opacity: 0;
    display: none;
  }
  .tables-map-container.full-map .map-panel .leaflet-left {
    opacity: 1;
    display: inherit;
  }
  .scrolling-text-container {
    animation: scroll 10s linear infinite;
  }
  .section-logo .cta-arrow-circle {
    bottom: 75px;
  }
  .partners-main-title {
    font-size: 36px;
  }
  .app-description .cta-button {
    padding: 10px 26px;
    font-size: 18px;
  }

  .archives-pagination {
    right: 13px !important;
  }
  .archive-description {
    max-width: 90%;
    min-height: 120px;
  }
  .archive-main-image {
    width: 100%;
    height: 0% !important;
    min-height: auto;
  }
  .archive-content {
    height: 100% !important;
    padding-top: 0;
    padding-bottom: 0;

  }
  .archive-year {
    font-size: 48px !important;
  }
  .archivesSwiper {
    height: calc(100vh - 80px) !important;
  }
  .search-result-badge .search-term {
    display: block;
    line-height: 1;
    max-width: 40px;
    text-wrap: auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .footer-logo img {
    max-width: 100%;
  }

}  /* end 768px */

@media (max-width: 640px) {

  .restaurant-main-image {
    text-align: inherit;
  }
  .restaurant-main-image img {
    width: 100%;
  }
  .restaurant-small-image {
    left: 0;
    top: 0;
    max-width: 100%;
    margin-bottom: 80px;
  }
  .tables-map-container {
    margin-top: 0;
    padding-top: 0;
    position: relative;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 110000;
  }
  #searchForm {
    margin-top: 25px;
  }
  .contact-email a {
    font-size: 14px;
  }
}
@media (max-width: 576px) {

  .asso-section .feature-image-1 img {
    top: 0px;
  }
  .horizontal-content {
    padding-left: 40px;
  }
  .section-logo .cta-arrow-circle {
    bottom: 100px;
  }
  .hero-tagline {
    font-size: 20px;
  }
  .navbar-nav ul li a,
  .navbar-nav .nav-link {
    font-size: 17px;
    letter-spacing: 0.5px;
    margin: 0px 25px 0 0;
  }
  .header-logo {
    left: 60px;
  }
  .hero-title {
    font-size: 66px;
  }
  .nav-right {
    position: absolute;
    right: 25px;
    bottom: 90px;
    justify-content: end !important;
    align-items: center;
  }
  .fullscreen-overlay .coq-logo {
    display: none;
  }
  .nav-left li:nth-child(2) {
    margin-bottom: 0;
  }
  .nos-tables-title,
  .nos-tables-title a {
    font-size: 40px;
  }

  .mobile-app-section .container,
  .posts-section .container,
  .nos-tables-section .container,
  .magazine-section .container,
  .restaurant-hero,
  .restaurant-box,
  .meta-table,
  .nos-tables-section {
    width: 95%;
    margin: auto;
  }
  .nos-tables-section {
    padding: 100px 0;
  }
  .hero-content {
    margin-bottom: 150px;
  }
  .slider-controls {
    flex-direction: column;
  }
  .slider-controls .section-title {
    margin-bottom: 40px;
  }
  .bt-more {
    min-width: auto;
    width: 100%;
    margin-top: 25px;
  }
  .line-title {;
    flex-wrap: wrap;
  }
  .restaurant-hero .cta-button {
    margin-bottom: 45px;
  }
  .meta-table {
    margin-top: 60px;
  }
  .app-features-section.asso {
    padding-top: 200px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 200px;
  }
  .hero-section.asso {
    width: 85%;
    margin-left: 15%;
  }
  .hero-section.asso {
    padding: 80px 40px 100px;
  }
  .app-features-section.asso h1 {
    margin-bottom: 150px;
  }
  .asso-section {
    padding: 150px 20px 150px;
  }
  .missions-title {
    font-size: 34px;
    line-height: 1.5;
  }
  .hero-section.origine {
    padding-top: 130px;
  }
  .hero-section.origine .hero-title {
    font-size: 50px;
  }
  .search-container {
    margin-bottom: 80px;
  }
  .search-btn {
    font-size: 15px;
    padding: 15px 20px;
  }
  .events-grid .event-date-badge {
    left: 15;
    font-size: 14px;
  }
  .missions-description {
    padding: 0 20px;
  }
  .app-main-title {
    margin-bottom: 80px;
  }
  .app-description {
    margin-bottom: 60px;
    max-width: 90%;
    padding-left: 0px;
  }
  .partners-list-section,
  .app-features-section {
    padding: 100px 20px;
  }
  .partner-item {
    display: inline-block;
    align-items: center;
    gap: 60px;
    padding: 65px 40px 25px;
  }
  .hero-logo img {
    max-width: 80%;
  }
  .scrolling-text span {
    color: white;
    font-size: 50px
  }
  .scrolling-text {
    gap: 40px;
  }
  .bottom-nav {
    position: fixed;
    bottom: 35px;
    width: 80%;
    z-index: 100;
  }
  .nav-left {
    flex: 1;
    margin-top: -100px;
  }
  .bottom-nav .justify-content-end {
    margin-top: -28px;
  }
  .bottom-nav .col-md-4.justify-content-end {
    width: 50%;
  }
  .footer-logo {
    margin-bottom: 60px;
  }
  .footer-social {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .footer-section .mb-4,
  .footer-links {
    margin-bottom: 0 !important;
  }
  .footer-copyright {
    text-align: center;
    margin: 10px 0 60px;
  }
  .app-description p {
    font-size: 20px;
  }
  .events-grid .event-description {
    display: none;
  }
  .partner-description {
    margin-top: -20px;
  }
  .hero-description br {
    display: none;
  }
  .search-input::placeholder {
    font-size: 13px;
  }
  .app-main-title, .event-main-title {
    font-size: 36px;
    line-height: 43px;
  }
  .phone-mockup {
    max-width: 90%;
  }
  .phone-screen .app-coq-logo {
    bottom: 50px;
    right: -90px;
  }
  .app-content {
    padding-left: 1rem;
  }
  .phone-screen {;
    height: 640px;
    width: 330px;
  }
  .phone-screen img {
    max-width: 180px;
  }
  .mobile-app-section {
    padding: 180px 0;
  }
  #detail {
    overflow: hidden;
    width: 100%;
  }
  .tables-left-panel {
    width: 80%;
  }
  .tables-map-container.full-map .tables-left-panel {
    left: -80%;
  }
  .search-icon img {
    height: 18px;
  }
  .search-container-map .search-input-container {
    max-width: 175px;
    overflow: hidden;
  }
  .hero-content .cta-button.white {
    padding: 9px 40px;
  }
  .missions-description {
    padding: 0 30px;
  }
  .restaurant-hero .restaurant-info {
    top: 0;
    max-width: inherit;
    padding: 90px 25px 20px 15px;
  }
  .brand-logo {
    opacity: 0.9;
    margin: 40px 0;
  }
  .posts-section {
    padding: 80px 0 20px;
  }
} /* end 576px */

@media (max-width: 440px) {
  .navbar-nav {
    display: none;
  }
  .hero-logo {
    max-width: 210px;
    margin-bottom: 60px;
  }
  .hero-title {
    font-size: 50px;
    letter-spacing: 2px;
  }
  .hero-description {
    font-size: 18px;
  }
  .phone-screen {
    height: 550px;
    width: 290px;
  }
  .phone-screen .app-coq-logo img {
    max-width: 120px;
  }
  .phone-screen .app-coq-logo {
    bottom: 25px;
    right: -40px;
  }
  .hero-logo img {
    margin-top: -50px;
  }
  .section-logo .cta-arrow-circle {
    bottom: 70px;
  }
  .app-description .cta-button {
    padding: 10px 20px;
    font-size: 17px;
    letter-spacing: 0.5px;
  }
  .team-card .team-image img {
    width: 175px;
  }
  .team-card {
    gap: 20px;
  }
  .team-name { font-size: 22px; }

  .contact-email a {
    font-size: 12px;
  }
  .contact-info-section {
    padding-left: 0;
  }
  .fullscreen-nav {
    width: 100%;
    padding: 0px;
  }
  .nav-left a {
    font-size: 30px;
  }
  .page-section h1 {
    font-size: 38px;
  }
  .search-results-container {
    display: block !important;
  }
  .results-count {
    text-align: left;
    width: 215px;
    margin-top: 16px;
  }
  .results-count .count-text {
    font-size: 16px;
  }
  .archive-description {
    min-height: 220px;
  }
  .archive-content {
    padding-top: 30%;
    justify-content: flex-start;
  }

} /* end 440px */


@media (max-height: 1100px) {

  .archive-year {
    margin-bottom: 30px;
  }
  .archive-portrait {
    margin-bottom: 30px;
  }
}

@media (max-height: 900px) {
  .hero-logo img {
    max-width: 70%;
  }
}

@media (max-height: 790px) {
  .member-card {
    flex-shrink: 0;
    width: 290px;
    margin-top: 50px;
  }
  .events-section.restaurateurs .section-title {
    margin-top: -50px;
    margin-bottom: 50px;
  }
  .portrait-img {
    width: 200px;
    height: 240px;
  }
  .archive-description p {
    font-size: 18px;
  }
  .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0;
  }
  .archivesSwiper {
    min-height: inherit;
  }
}

.otgs-development-site-front-end {
  display: none;
}

.hero-section, .nos-tables-section, .magazine-section, .events-section {
  width: 100%;
  overflow: hidden;
}


@supports (-webkit-touch-callout: none) {
  @media (max-width: 440px) {
      .archive-content {
        padding: 0px 40px;
      }
      .archivesSwiper {
        height: 100dvh;
        min-height: 100dvh;
      }

      .archive-content {
        height: auto !important;
        min-height: 100dvh;
        justify-content: center;
      }
  }
}
