@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@400;700&family=Poppins:wght@400;700&display=swap');

/* Fonts */
:root {
  --default-font: "Lato", sans-serif;
  --heading-font: "Playfair Display", serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --jaune: #ffdf59; 
  --bleu: #0349aa; 
  --noir: #000000; 
  --vert: #00c062; 
  --blanc: #ffffff;
 }

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, rgba(0, 0, 0, 0) 75%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s infinite;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.3);
  top: -15%;
  left: -15%;
  background: transparent;
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Global Colors*/
body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  display: flex;
  flex-flow: column;
  align-content: center;
  text-align: center;
  justify-content: center; 
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
img{
  width: 100%;
  border-radius: 20px; /* Ajout d'un léger arrondi pour un design plus esthétique */
}

section{
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: auto;
  background-color: var(--background-color);
  padding: 0;
  margin-bottom: 2%;
  scroll-margin-top: 112px;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-titless1{
  color: var(--noir) !important;
}

.section-title h2 {
  font-size: 2;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--nav-font)
}

.section-title div {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title div .description-title {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  height: 30vh;
  display: flex;
  justify-content: center;
  text-align: center;
  align-content: center;
}
.header .topbar {
  position: relative;
  background-color: var(--background-color);
  padding: 2% 0 0 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .cta-btn {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 6px 30px 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .topbar .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.header .branding {
  position: relative;
  padding: 5px 0;
  width: 100%;
  justify-content: center;
}
.logoTop {
  position: relative;
  margin-top: 2%;
  padding: 1%;
  width: 40%;
  text-align: center;
  z-index: 998;
}

.containtNav{
  position: relative;
  height: 10vh !important;
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background: rgba(0, 0, 0, 0.733);
  height: 26vh !important;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    position: relative;
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    border-radius: 10px;
    background-color: rgba(129, 129, 128, 0.404);
    margin-left: 2%;
  }

  .navmenu a{
    color: var(--blanc);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a:focus {
    color: var(--vert);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--vert);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--blanc);
  font-size: 14px;
  padding: 40px 0 0 0;
  position: relative;
  text-align: center;
  display:flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5); /* Bleu avec transparence */
  background-image: url("../img/10.jpg"); /* Remplacez par l'URL de votre image */
  background-size: cover; /* Pour couvrir tout l'espace */
  background-position: center; /* Centrer l'image */
  background-blend-mode: overlay; /* Mélange couleur + image */
  background-repeat: no-repeat;
}

.footer .icon {
  color: var(--jaune);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--nav-font);
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--jaune);
  border-color: var(--blanc);

}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# =======================================================================================================================================================================================
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  margin: 0 0 2% 0;
  height: 100vh;
}
.carousel-container{
  display: flex;
  position: absolute;
  inset: -25% 5% 5% 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}
.titleContainer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bannerh2 {
  color: var(--blanc);
  font-family: var(--nav-font);
  text-transform: uppercase;
  animation: fadeInDown 1s both;
  letter-spacing: clamp(1px, 0.5vw, 5px); /* Espacement dynamique */
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  font-size: 1.5rem; /* Taille par défaut pour les grands écrans */
}

.bannerh1 {
  color: var(--blanc);
  font-family: var(--heading-font);
  animation: fadeInDown 1s both;
  text-transform: uppercase;
  letter-spacing: clamp(2px, 1vw, 15px); /* Espacement dynamique */
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  font-size: 4rem; /* Taille par défaut pour les grands écrans */
}

.line {
  display: inline-block;
  position: absolute;
  width: 107px;
  height: 4px;
  background-color: var(--blanc);
  margin: 10px 20px 0 20px;
  position: relative;
}
.line2 {
  position: relative;
  display: inline-block;
  width: 4px;
  height: 60px;
  bottom: 24px;
  background-color: var(--blanc);
  margin: 0% 2vw 0px 0%
}
.l2g{
  left: 2.2%;
}

.boutonS{
  margin-top: 5%;
  width: 100%;
}
.btnst2, .btnst {
  padding: 1rem 2rem;
  border-radius: 50px;
}
.btnst2{
  background-color: var(--bleu);
}
.btnst {
  background-color: var(--vert);
}
.hero .btn-get-started:hover {
  background: var(--jaune);
  color: var(--bleu);
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about{
    text-align: left;
    justify-content: space-between;
  }
  .about .content h3 {
    font-size: 1rem;
    font-family: var(--nav-font);
    text-align: left;
    color: var(--vert);
  }
  .about .content h1 {
    font-size: 3rem;
    font-family: var(--heading-font) !important;
    color: var(--noir);
    text-align: left;
    margin:0 0 5% 0
  }
  
  .about .content ul {
    list-style: none;
    padding: 0;
    margin: 5% 0;
  }
  
  .about .content ul li {
    padding: 10px 0 0 0;
    display: flex;
    font-family: var(--nav-font);
  }
  
  .about .content ul i {
    color: var(--vert);
    margin-right: 1rem;
    line-height: 1.2;
    font-size: 1.25rem;
  }
  .aboutBtn{
    color: var(--blanc);
    border-radius: 20px;
    background-color: var(--bleu);
    width: 20%;
  }
  
  .about .content p:last-child {
    margin-bottom: 0;
  }
  .fas{
    color: var(--blanc);
    width: 20%;
    margin-left: 3%;
    height: 5vh;
  }
  
  .about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
  }
  .leftCl{
    display: flex !important;
    justify-content: end;
    align-content: end;
  }
  .year25{
    position: relative;
    background-color: var(--vert);
    width: 185px;
    height: 135px;
    top: 260px;
    right: 10px;
    z-index: 10;
    justify-content: center;
    text-align: center;
    color: var(--blanc);
  }
  .year25 h1{
    font-family: var(--nav-font);
    font-size: 5em !important;
  }
  .img-fluid{
    width: 100%;
  }
  .img-fluid2 {
    width: 40%;
    position: absolute;
    z-index: 8;
    left: 0;
    bottom: 150px;
    border: 6px solid #fff;
    transform: rotate(30deg);
  }
  
  /*--------------------------------------------------------------
  # Book A Table Section
  --------------------------------------------------------------*/
  .book-a-table {
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("../img/7.jpg"); 
    background-size: cover; 
    background-position: center;
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    color: var(--blanc);
  }
  
  .logomidle{
    width: 20%;
  }
  .book-a-table .reservation-img {
    background-size: cover;
    background-position: center;
  }
  .section-title h1{
    font-family: var(--heading-font);
    color: var(--jaune) !important;
  }
  .reservation-form-bg
  {
    top: ;
  }
  .book-a-table .reservation-form-bg {
    background: color-mix(in srgb, var(--noir), transparent 97%);
  }
  
  .book-a-table .php-email-form {
    padding: 30px;
  }
  
  @media (max-width: 575px) {
    .book-a-table .php-email-form {
      padding: 20px;
    }
  }
  
  .book-a-table .php-email-form input[type=text],
  .book-a-table .php-email-form input[type=email],
  .book-a-table .php-email-form input[type=number],
  .book-a-table .php-email-form input[type=date],
  .book-a-table .php-email-form input[type=time],
  .book-a-table .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: rgba(255, 255, 255, 0.8); /* Replace with an equivalent RGBA value */
    border-color: rgba(0, 0, 0, 0.2); /* Replace with an equivalent RGBA value */
  }
  
  .book-a-table .php-email-form input[type=text]:focus,
  .book-a-table .php-email-form input[type=email]:focus,
  .book-a-table .php-email-form input[type=number]:focus,
  .book-a-table .php-email-form input[type=date]:focus,
  .book-a-table .php-email-form input[type=time]:focus,
  .book-a-table .php-email-form textarea:focus {
    border-color: var(--accent-color);
  }
  
  .book-a-table .php-email-form input[type=text]::placeholder,
  .book-a-table .php-email-form input[type=email]::placeholder,
  .book-a-table .php-email-form input[type=number]::placeholder,
  .book-a-table .php-email-form input[type=date]::placeholder,
  .book-a-table .php-email-form input[type=time]::placeholder,
  .book-a-table .php-email-form textarea::placeholder {
    color: rgba(var(--default-color-rgb), 0.7); /* Replace with an equivalent RGBA value */
  }
  
  .book-a-table .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 14px 60px;
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .book-a-table .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
  }

 /*--------------------------------------------------------------
  # END Book A Table Section
  --------------------------------------------------------------*/

   /*--------------------------------------------------------------
  # Commander en ligne Section
  --------------------------------------------------------------*/
  .events {
    padding: 80px 0;
    position: relative;
    
  }
  .logoMid{
    width: 20%;
  }
  .swiper-wrapper h2 {
    color:var(--vert);
    font-family: var(--nav-font);
    font-size: 1rem;
    text-align: left;
  }
  
  .swiper-wrapper h1 {
    color:var(--noir);
    font-family: var(--heading-font);
    font-size: 4rem;
    text-align: left;
  }
  
  .events .container {
    position: relative;
    z-index: 3;
  }
  
  .events .event-item ul {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    margin-top: 5%;
  
  }
  .events .event-item ul li{
    border: 2px solid #000000;
    padding:1%;
  }
  .events .event-item ul li:hover{
    background-color: var(--noir);
    color: var(--blanc);
    padding:1%;
  }
  .events .event-item p{
    text-align: left;
  }
  
  .events .event-item .price {
    font-size: 26px;
    font-family: var(--default-font);
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  
  .events .event-item ul {
    list-style: none;
    padding: 0;
  }
  
  .events .event-item ul li {
    padding-bottom: 10px;
  }
  
  .events .event-item ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
  }
  
  .events .event-item p:last-child {
    margin-bottom: 0;
  }
  
  .events .swiper-wrapper {
    height: auto;
  }
  
  .events .swiper-pagination {
    margin-top: 30px;
    position: relative;
  }
  
  .events .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 70%);
    opacity: 1;
  }
  
  .events .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  .Sell{
    background-color: var(--vert);
    border-radius: 20px;
    width: 30%;
    height: 8vh;
    font-family: var(--nav-font);
    color: var(--blanc);
    text-align: center;
  }
  
  .Sell:hover{
    background-color: var(--bleu);
    border-radius: 20px;
    width: 30%;
    height: 8vh;
    font-family: var(--nav-font);
    color: var (--jaune);
    text-align: center;
  }


  /*--------------------------------------------------------------
  # Gallery Section
  --------------------------------------------------------------*/
  .gallery{
    text-align: center;
    justify-content: center;
  }
  .gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid var(--bleu);
    border-bottom: 3px solid var(--jaune);
  }
  
  .gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
  }
  
  .gal-item{
    border-radius: 20px;
    margin: 1%;
  }
  
  .gallery .gallery-item:hover img {
    transform: scale(1.1);
  }
  .section-title h2{
    color: var(--vert);
    font-family: var(--nav-font);
  }
  
   /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .logoTes{
    width: 20%;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
    left: 40%;
  }
  .testimonials {
    padding: 80px 0;
    position: relative;
  }
  
  .testimonials:before {
    content: "";
    background: color-mix(in srgb, #000000, transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
  }
  
  .testimonials .testimonials-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  
  .testimonials .container {
    position: relative;
    z-index: 3;
  }
  
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }
  
  .testimonials .testimonial-item {
    text-align: center;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
    margin: 0 auto;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: color-mix(in srgb, var(--blanc), transparent 40%);
  }
  .testimonials h3{
    color: var(--blanc);
    font-family: var(--nav-font);
    font-size: 1rem;
  }
  
  .testimonials h1{
    color: var(--jaune);
    font-family: var(--heading-font);
    font-size: 4rem;
    margin-bottom: 5%;
  }
  
  .testimonials .testimonial-item .stars {
    margin-bottom: 15px;
  }
  
  .testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 26px;
    line-height: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .testimonials .testimonial-item p {
    font-style: var(--nav-font);
    color: var(--blanc);
    margin: 0 auto 15px auto;
  }
  
  .testimonials .swiper-wrapper {
    height: auto;
  }
  
  .testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 50%);
    opacity: 0.5;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--default-color);
    opacity: 1;
  }

   /*--------------------------------------------------------------
  # Specials Section
  --------------------------------------------------------------*/
  .specials {
    overflow: hidden;
  }
  
  .specials .nav-tabs {
    border: 0;
  }
  .MiniNav{
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    margin: 5% 0;
  }
  
  .specials .nav-link {
    text-align: left;
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: var(--default-color);
    border-radius: 0;
    border-right: 2px solid color-mix(in srgb, var(--bleu), transparent 90%);
    font-weight: 600;
    font-size: 15px;
  }
  
  .specials .nav-link:hover {
    color: var(--bleu);
  }
  
  .specials .nav-link.active {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: var(--background-color);
  }
  
  .specials .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
  }
  
  .specials .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .specials .details p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .specials .details p:last-child {
    margin-bottom: 0;
  }

   /*--------------------------------------------------------------
  # Chefs Section
  --------------------------------------------------------------*/
  .chefs{
    background-color: rgba(255, 255, 255, 0.5); /* Bleu avec transparence */
    background-image: url("../../assets/img/5.jpg"); /* Remplacez par l'URL de votre image */
    background-size: cover; /* Pour couvrir tout l'espace */
    background-position: center; /* Centrer l'image */
    background-blend-mode: overlay; /* Mélange couleur + image */
    background-repeat: no-repeat;
  }
  .chefs .member {
    position: relative;
  }
  
  .chefs .member .pic {
    overflow: hidden;
    margin-bottom: 50px;
  }
  
  .chefs .member .member-info {
    background-color: #f3f3f3;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    padding: 20px 15px;
    overflow: hidden;
    transition: 0.5s;
  }
  .chefs .member .member-info:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
    border: 2px solid var(--default-color);
    background-color: var(--jaune);
  }
  
  
  .chefs .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--default-font);
  }
  
  .chefs .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    bottom: 0;
    left: 0;
  }
  
  .chefs .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
  }
  
  .chefs .member .social {
    position: absolute;
    right: 15px;
    bottom: 15px;
  }
  
  .chefs .member .social a {
    transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  .chefs .member .social a:hover {
    color: var(--accent-color);
  }
  
  .chefs .member .social i {
    font-size: 16px;
    margin: 0 2px;
  }
  
/* ================================================================================================================================== */
/* ================================================================================================================================== */
/* ================================================================================================================================== */
/* ================================================================================================================================== */

/* Taille de police pour les écrans moyens */
@media (max-width: 1199px) {
  .bannerh2 {
    font-size: 2.5rem;
  }

  .bannerh1 {
    font-size: 3rem;
  }
}

/* Taille de police pour les petits écrans */
@media (max-width: 768px) {
  .bannerh2 {
    font-size: 1rem;
  }

  .bannerh1 {
    font-size: 2.6rem;
  }
  .line {
    display: inline-block;
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: var(--blanc);
    margin: 10px 20px 0 20px;
    position: relative;
  }
  .line2 {
    position: relative;
    display: inline-block;
    width: 2px;
    height: 40px;
    bottom: 15px;
    background-color: var(--blanc);
    margin: 0% 2vw 0px 0%
  }
  .l2g{
    left: 2.2%;
  }
  .boutonS{
    margin-top: 20%;
    width: 100%;
  }
  .btnst2, .btnst {
    padding: 1rem 2rem;
    border-radius: 50px;
  }
  .btnst2{
    background-color: var(--bleu);
  }
  .btnst {
    background-color: var(--vert);
  }

    /*===============================section apropo==========================================*/
  .leftCl{
    display: flex !important;
    justify-content: end;
    align-content: end;
  }
  .year25{
    position: relative;
    background-color: var(--vert);
    width: 185px;
    height: 80px;
    top: 130px;
    right: 0px;
    z-index: 10;
    justify-content: center;
    text-align: center;
    color: var(--blanc);
    border-radius: 20px;
  }
  .year25 h1{
    font-family: var(--nav-font);
    font-size: 3em !important;
    margin-bottom: -10px;
  }
  .img-fluid{
    width: 100%;
  }
  .img-fluid2 {
    width: 35%;
    position: absolute;
    z-index: 8;
    left: 30px;
    bottom: 80px;
    border: 6px solid #fff;
    transform: rotate(30deg);
  }
  .aboutBtn{
    color: var(--blanc);
    border-radius: 20px;
    background-color: var(--bleu);
    width: 40%;
  }
   /*===============================section commande TABLE ==========================================*/
  .reservation-img{
    justify-content: center;
    align-content: center;
    display: flex;
  }
  .logoMid{
    width: 50% !important;
  }
  .swiper-wrapper h1 {
    font-size: 2rem !important;
  }
  .Sell {
    background-color: var(--vert);
    border-radius:20px;
    width: 30%;
    height: 5vh;
    font-family: var(--nav-font);
    color: var(--blanc);
    text-align: center;
  }
   /*===============================section special ==========================================*/
   
   .specials {
    overflow: hidden;
  }
  
  .specials .nav-tabs {
    border: 0;
  }
  .MiniNav{
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: row;
    margin: 5% 2%;
  }
  
  .specials .nav-link {
    text-align: left;
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: var(--default-color);
    border-radius: 0;
    border-right: 2px solid color-mix(in srgb, var(--bleu), transparent 90%);
    font-weight: 600;
    font-size: 15px;
  }
  
  .specials .nav-link:hover {
    color: var(--bleu);
  }
  
  .specials .nav-link.active {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: var(--background-color);
  }
  
  .specials .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
  }
  
  .specials .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .specials .details p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
  
  .specials .details p:last-child {
    margin-bottom: 0;
  }
  
}

/* Taille de police pour les petits écrans */
@media (max-width: 360px) {
  .bannerh2 {
    font-size: 0.93rem;
  }

  .bannerh1 {
    font-size: 2.5rem;
  }
  .line {
    display: inline-block;
    position: absolute;
    width: 28px;
    height: 2px;
    background-color: var(--blanc);
    margin: 10px 20px 0 20px;
    position: relative;
  }
  .line2 {
    position: relative;
    display: inline-block;
    width: 2px;
    height: 40px;
    bottom: 15px;
    background-color: var(--blanc);
    margin: 0% 2vw 0px 0%
  }
  .l2g{
    left: 2.2%;
  }
  .boutonS{
    margin-top: 20%;
    width: 100%;
  }
  .btnst2, .btnst {
    padding: 1rem 2rem;
    border-radius: 50px;
  }
  .btnst2{
    background-color: var(--bleu);
  }
  .btnst {
    background-color: var(--vert);
  }

  /*===============================section apropo==========================================*/
  .leftCl{
    display: flex !important;
    justify-content: end;
    align-content: end;
  }
  .year25{
    position: relative;
    background-color: var(--vert);
    width: 185px;
    height: 80px;
    top: 100px;
    right: 0px;
    z-index: 10;
    justify-content: center;
    text-align: center;
    color: var(--blanc);
    border-radius: 20px;
  }
  .year25 h1{
    font-family: var(--nav-font);
    font-size: 3em !important;
    margin-bottom: -10px;
  }
  .img-fluid{
    width: 100%;
  }
  .img-fluid2 {
    width: 35%;
    position: absolute;
    z-index: 8;
    left: 30px;
    bottom: 80px;
    border: 6px solid #fff;
    transform: rotate(30deg);
  }
   /*===============================section commande TABLE ==========================================*/
  .reservation-img{
    min-height: 10px !important;
  }

  .swiper-wrapper h1 {
    font-size: 2rem !important;
  }

/*===============================section testi ==========================================*/
  
  .testimonials h1 {
    color: var(--jaune);
    font-family: var(--heading-font);
    font-size: 2rem;
    margin-bottom: 5%;
  }  
}