@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter";
  color: #F5F3EE;
}

h1,
h2,
h3 {
  font-family: "Playfair Display";
  font-weight: 700;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: #151517;
  background-image: url("../images/dark_noise_texture.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

section {
  padding: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  color: #F5F3EE;
  font-size: 1.1rem;
  line-height: 1.6;
}

.banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-image: url("../images/resto.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1;
}
.banner .overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.banner .overlay .CTA-button {
  background-color: #C6A75E;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.banner .overlay .CTA-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}
.banner .overlay .CTA-button:active {
  transform: scale(0.98);
}
.banner .overlay .CTA-button a {
  transition: color 0.3s ease;
  color: white;
  cursor: pointer;
  text-decoration: none;
}

#burger {
  display: block;
}

#open,
#close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #C6A75E;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  line-height: 1;
}

#open {
  display: block;
}

#close {
  display: none;
}

.burger-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
}
.burger-nav.active {
  transform: translateX(0);
}
.burger-nav a {
  color: #F5F3EE;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  transition: color 0.3s ease;
}
.burger-nav a:active {
  color: #C6A75E;
}

.desktop-nav {
  display: none !important;
}

.desktop-nav a,
.burger-nav a {
  position: relative;
  transition: color 0.3s ease;
}
.desktop-nav a::after,
.burger-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C6A75E;
  transition: width 0.3s ease;
}
.desktop-nav a:hover::after,
.burger-nav a:hover::after {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  #burger {
    display: none !important;
  }
  .desktop-nav {
    display: flex !important;
  }
}
.scroll-haut {
  text-decoration: none;
  font-weight: 600;
  z-index: 6;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 30px;
  right: 20px;
  padding: 0;
  line-height: 1;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.184);
  color: #C6A75E;
  width: 50px;
  height: 50px;
  border-radius: 1rem;
  text-align: center;
  border: 3px solid #C6A75E;
  animation: fade;
  animation-timeline: scroll(y);
  animation-range: 0 10%;
  cursor: pointer;
}

header {
  width: 100%;
  height: 6rem;
  position: sticky;
  border-bottom: 1px solid #C6A75E;
  top: 0;
  z-index: 1000;
}
header .headerNav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: black;
  color: #F5F3EE;
  position: relative;
  z-index: 100;
}
header .headerNav h1 {
  font-size: 2rem;
}
header .headerNav .desktop-nav {
  display: none;
  justify-content: center;
  gap: 2rem;
  align-items: center;
}
header .headerNav .desktop-nav a {
  text-decoration: none;
  color: #F5F3EE;
  font-size: 1.2rem;
  cursor: pointer;
}
header .headerNav .desktop-nav a:hover {
  color: #C6A75E;
}
header .headerNav .desktop-nav .active {
  color: #C6A75E;
}
@media screen and (min-width: 1000px) {
  header .headerNav .desktop-nav {
    display: flex !important;
  }
}

#about {
  margin-top: 3rem;
  text-align: center;
}
#about p {
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

#horaires {
  padding: 4rem 2rem;
  text-align: center;
}
#horaires .CTA-button {
  margin-top: 2rem;
  background-color: #C6A75E;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#horaires .CTA-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}
#horaires .CTA-button:active {
  transform: scale(0.98);
}
#horaires .CTA-button a {
  transition: color 0.3s ease;
  color: white;
  cursor: pointer;
  text-decoration: none;
}
#horaires .horaires-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 700px;
  margin: 1rem auto;
}
#horaires .horaires-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  background-color: black;
  border: 1px solid #C6A75E;
  border-radius: 1rem;
  padding: 2rem;
}
#horaires .horaire-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
#horaires .horaire-item .jour {
  font-size: 1.1rem;
  font-weight: 700;
  color: #C6A75E;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
#horaires .horaire-item .services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
#horaires .horaire-item .service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
#horaires .horaire-item .service .service-label {
  color: #aaa;
  font-size: 0.9rem;
  min-width: 40px;
  text-align: left;
}
#horaires .horaire-item .service .service-hours {
  color: white;
  font-size: 0.95rem;
}
#horaires .horaire-item.ferme {
  opacity: 0.5;
}
#horaires .horaire-item.ferme .service-hours {
  color: #ccc;
  font-style: italic;
}
#horaires .horaires-separator {
  width: 1px;
  height: 80px;
  background-color: #C6A75E;
  opacity: 0.4;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  #horaires .horaires-grid {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  #horaires .horaires-separator {
    width: 80px;
    height: 1px;
  }
  #horaires .horaire-item .service {
    justify-content: center;
    gap: 0.5rem;
  }
}

#meal-event h2 {
  margin-bottom: 2rem;
}
#meal-event .meal-event-card {
  width: 100%;
  height: 350px;
  margin-bottom: 2rem;
  background-image: url("../images/fajitas.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
#meal-event .meal-event-card .meal-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #C6A75E;
  padding: 1rem 2rem;
  text-align: center;
  transition: background-color 0.4s ease;
}
#meal-event .meal-event-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
#meal-event .meal-event-card:hover .meal-caption {
  background-color: rgba(198, 167, 94, 0.9);
  color: black;
}
@media screen and (min-width: 744px) {
  #meal-event .meal-event-card {
    height: 600px;
  }
}

footer {
  width: 100%;
  height: 10rem;
  background-color: black;
  border-top: 1px solid #C6A75E;
}
footer .social_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
}
footer .social_nav a img {
  width: 3rem;
  height: 3rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
footer p {
  color: #F5F3EE;
  text-align: center;
  margin-top: 1.5rem;
}

.carousel {
  width: 100%;
  margin: 1rem auto;
  padding: 0 0.5rem;
}
.carousel .carousel-inner {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.carousel .carousel-inner .carousel-item {
  height: 250px;
}
.carousel .carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.carousel .carousel-inner .carousel-item .carousel-caption {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 0.75rem;
  border-radius: 8px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.5rem;
  width: auto;
  width: 100%;
}
.carousel .carousel-inner .carousel-item .carousel-caption .title-carousel {
  color: #C6A75E;
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}
@media (min-width: 576px) {
  .carousel .carousel-inner .carousel-item {
    height: 300px;
  }
  .carousel .carousel-inner .carousel-item .carousel-caption {
    padding: 1rem;
    bottom: 1rem;
    max-width: 80%;
  }
  .carousel .carousel-inner .carousel-item .carousel-caption .title-carousel {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .carousel .carousel-inner .carousel-item {
    height: 400px;
  }
  .carousel .carousel-inner .carousel-item .carousel-caption {
    padding: 1.5rem;
    bottom: 2rem;
  }
  .carousel .carousel-inner .carousel-item .carousel-caption .title-carousel {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .carousel .carousel-inner .carousel-item {
    height: 500px;
  }
  .carousel .carousel-inner .carousel-item .carousel-caption .title-carousel {
    font-size: 1.75rem;
  }
}
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: 10%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.carousel .carousel-control-prev:hover,
.carousel .carousel-control-next:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .carousel .carousel-control-prev,
  .carousel .carousel-control-next {
    width: 5%;
  }
}
.carousel .carousel-indicators {
  margin-bottom: 0.5rem;
}
.carousel .carousel-indicators button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  opacity: 0.6;
}
.carousel .carousel-indicators button.active {
  background-color: #C6A75E;
  opacity: 1;
  border-color: #C6A75E;
}
@media (min-width: 576px) {
  .carousel .carousel-indicators {
    margin-bottom: 1rem;
  }
  .carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 768px) {
  .carousel .carousel-indicators {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .carousel {
    max-width: 1200px;
    padding: 0 1rem;
    margin: 2rem auto;
  }
}

.card_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.card_container .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
  color: white;
  border-radius: 10px;
  width: 90%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card_container .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}
.card_container .card h3 {
  margin: 1rem 0;
}
.card_container .card .card_img {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
}
.card_container .card .card_img img {
  height: 100%;
  width: 100%;
  transition: transform 0.4s ease;
}
.card_container .card:hover {
  transform: scale(1.1);
}
.card_container .card button {
  width: 45%;
  background-color: #C6A75E;
  border-radius: 10px;
  margin: 1rem 0;
  border: 1px solid white;
}
.card_container .card button a {
  color: #F5F3EE;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .card_container .card {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .card_container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  .card_container .card {
    margin-top: 1.5rem;
    width: 30%;
  }
}
#story,
#team {
  margin-top: 2rem;
  text-align: center;
}
#story h2,
#team h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#story p,
#team p {
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
}

#team {
  border: 4px solid #C6A75E;
  border-radius: 0.5rem;
}
#team .teamPics {
  width: 100%;
  margin: 2rem auto;
  height: auto;
}

#values {
  margin-top: 2rem;
}
#values h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
#values .card_value_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
#values .card_value_container .card_value {
  background-color: black;
  border: 1px solid #C6A75E;
  padding: 1rem;
  border-radius: 1rem;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
#values .card_value_container .card_value h3 {
  margin: 1rem 0;
  transition: color 0.6s ease;
}
#values .card_value_container .card_value p {
  transition: color 0.6s ease;
}
#values .card_value_container .card_value img {
  width: 75%;
  height: auto;
  border-radius: 10px;
}
#values .card_value_container .card_value:hover {
  background-color: #C6A75E;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}
#values .card_value_container .card_value:hover h3, #values .card_value_container .card_value:hover p {
  color: black;
}
@media screen and (min-width: 768px) {
  #values .card_value_container .card_value {
    width: 60%;
  }
  #values .card_value_container .card_value img {
    width: 40%;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  #values .card_value_container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  #values .card_value_container .card_value {
    margin-top: 1.5rem;
    width: 30%;
    min-height: 450px;
  }
}

#infos {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#infos h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
#infos .info_box {
  display: flex;
  flex-direction: column;
  background-color: black;
  color: white;
  width: 100%;
  border-radius: 1rem;
  gap: 1rem;
}
#infos .info_box .info_group {
  padding: 1rem;
}
#infos .info_box .info_group .info_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
#infos .info_box .info_group .info_item img {
  width: 50px;
  height: 50px;
}
#infos .info_box .info_group .info_item a {
  text-decoration: none;
  color: white;
}
#infos .info_box .info_group .info_item iframe {
  border-radius: 0 0 1rem 1rem;
}
@media screen and (min-width: 678px) {
  #infos .info_box {
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  #infos .info_box {
    flex-direction: row;
    width: 100%;
  }
}

#reservation {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
#reservation .contact-container {
  width: 100%;
}
#reservation .contact-container h3 {
  font-size: 2rem;
  margin: 2rem 0;
}
#reservation .contact-container p {
  text-align: center;
  margin: 2rem 0;
}
#reservation .contact-container form {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  background-color: black;
  border: 1px solid #C6A75E;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
#reservation .contact-container form .success-alert {
  color: rgb(26, 147, 26);
  background-color: rgb(128, 219, 145);
  border: 1px solid rgb(26, 147, 26);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
}
#reservation .contact-container form .form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
#reservation .contact-container form .form-group label,
#reservation .contact-container form .form-group span {
  color: #C6A75E;
}
#reservation .contact-container form .form-group input {
  width: 100%;
  border-radius: 0.5rem;
  color: black !important;
}
#reservation .contact-container form .form-group textarea {
  color: black !important;
  width: 100%;
  border-radius: 0.5rem;
  min-height: 200px;
}
#reservation .contact-container form .form-group input,
#reservation .contact-container form .form-group textarea {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
#reservation .contact-container form .form-group input:focus,
#reservation .contact-container form .form-group textarea:focus {
  border-color: #C6A75E;
  box-shadow: 0 8px 20px #C6A75E;
  outline: none;
}
#reservation .contact-container form .form-group .success-message {
  color: rgb(26, 147, 26);
}
#reservation .contact-container form .form-group .error-message {
  color: rgb(190, 40, 40);
}
#reservation .contact-container form button {
  background-color: #C6A75E;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#reservation .contact-container form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}
#reservation .contact-container form button:active {
  transform: scale(0.98);
}
#reservation .contact-container form .error-message {
  color: rgb(190, 40, 40);
}
@media screen and (min-width: 678px) {
  #reservation .contact-container {
    width: 75%;
  }
}
@media screen and (min-width: 1024px) {
  #reservation .contact-container {
    width: 50%;
  }
}/*# sourceMappingURL=style.css.map */