/************************************************* Style général *************************************************/
:root {
  --noir1: rgb(0, 0, 0);
  --noir2: rgb(34, 34, 34);
  --noir3: rgb(85, 85, 85);
  --noir4: rgb(25, 25, 112);
  --or1: rgb(180, 120, 5);
  --or2: rgb(219, 179, 93);
  --or3: rgb(221, 162, 11);
  --or4: rgb(238, 232, 170);
  --or5: rgb(255, 223, 0);
  --or6: rgb(211, 170, 82);
  --or7: rgb(219, 187, 116);
  --bleu1: rgb(24, 52, 86);
  --bleu2: rgb(38, 70, 102);
  --bleu3: rgb(58, 88, 118);
  --bleu4: rgb(79, 107, 134);
  --bleu5: rgb(107, 134, 160);
  --blanc: rgb(255, 255, 255);
}

.separator {
  width: 10%;
  height: 2px;
  background-color: rgb(136, 136, 136);
}

.separator-lg {
  width: 38%;
  height: 1px;
  background-color: rgb(136, 136, 136);
}

.divider {
  display: flex;
  align-items: center;
}

.divider::before,
.divider::after {
  content: "";
  flex-grow: 1;
  border-top: 1px solid rgb(190, 190, 190);
  margin: 0 10px;
}

.icon:hover {
  fill: rgb(211, 170, 82);
}

.icon-danger:hover {
  fill: rgb(199, 54, 18);
}

.min-vh {
  min-height: 80vh;
}

/************ Typo ************/
body {
  font-family: "Roboto", sans-serif;
}

.p {
  font-family: "Roboto", sans-serif;
}


.text-uppercase {
  letter-spacing: -1px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Merriweather", serif;
  color: var(--noir1);
}

.text-1 {
  color: var(--noir1);
}

.text-2 {
  color: var(--noir2);
}

.text-3 {
  color: var(--or6);
}

.text-4 {
  color: var(--noir4);
}

.text-blanc-1 {
  color: var(--blanc);
}

.text-smaller {
  font-size: 0.8rem;
}

.text-smaller-2 {
  font-size: 0.7rem;
}

.text-smally {
  font-size: 0.9rem;
}

.text-bigger {
  font-size: 1.2rem;
}

.text-bigger-2 {
  font-size: 1.4rem;
}

.titre-bigger {
  font-size: 3rem;
  font-weight: 400;
}

/************ Buttons ************/
.btn-1 {
  background-color: var(--or6);
  color: white;
}

.btn-1:hover {
  background-color: var(--or2);
  color: white;
}

.btn-2 {
  background-color: var(--bleu1);
  color: white;
}

.btn-2:hover {
  background-color: var(--bleu2);
  color: white;
}

/************ Couleurs ************/
.bg-or-1 {
  background-color: var(--or6);
}

.bg-or-2 {
  background-color: var(--or7);
}

.bg-perso {
  background-color: rgb(248, 244, 240);
}

.bg-perso-2 {
  background-color: rgb(245, 245, 245);
}

.bg-bleu-1 {
  background-color: var(--bleu1);
}

/************************************************* Navbar *************************************************/
#nav-separator {
  height: 103px;
  background-color: rgb(255, 255, 255);
  width: 100%;
}

#navbar .nav-hover {
  font-size: 1rem;
  color: var(--noir-1);
  position: relative;
  padding: 1px 1px;
  font-weight: 400;
}

#navbar .nav-hover::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--or6);
  visibility: hidden;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

#navbar .nav-hover:hover::before {
  visibility: visible;
  transform: scaleX(1);
}

.homepage-navbar a {
  color: white !important;
}

.homepage-navbar:hover a {
  color: black !important;
}

.homepage-navbar {
  background-color: transparent !important;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0)
  ) !important;
  border: none;
}

.homepage-navbar:hover {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0)
  ) !important;
  background-color: #ffffff !important;
  transition: background-color 0.3s ease-in !important;
}

.navbar-toggler-icon {
  filter: brightness(100%) invert(100%);
}

.max-vw {
  max-width: 100vw;
}
/************************************************* HomePage *************************************************/
.slider-image {
  position: relative;
  min-height: 85vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.slider-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
  /* backdrop-filter: blur(1px); */
}

.slider-desc {
  z-index: 1;
}

.home-cadran {
  padding: 80px;
}

#temoignages {
  min-height: 50vh;
  margin: 90px 0;
}

.temoignages {
  font-size: 2.5rem;
}

@media only screen and (min-width: 992px) {
  .title-reservation {
    border-right: 1px solid black;
  }

  .custom-label {
    position: absolute;
    top: -25px;
    left: 55px;
  }
}

@media only screen and (max-width: 768px) {
  .home-cadran {
    padding: 50px 0px;
  }
}

@media only screen and (max-width: 992px) {
  .artiste {
    font-size: 1rem !important;
    text-align: center !important;
    margin-bottom: 50px !important;
  }

  #social img {
width: 100%;
  }

  .temoignages {
    font-size: 1.4rem;
  }
}

/************************************************* Résa *************************************************/
.custom-form {
  padding-top: 105px;
  padding-bottom: 20px;
}

.custom-col {
  background-color: rgb(248, 248, 248) !important;
}

@media only screen and (min-width: 992px) {
  .two-button {
    display: flex;
    justify-content: end;
  }
}

/************************************************* Chambres *************************************************/
@media only screen and (min-width: 992px) {
  .custom-chambre {
    position: absolute;
    right: 30%;
    top: 35%;
    width: 415px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
  }
}

.custom-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center bottom;
}

/************************************************* Restaurant *************************************************/
.banner {
  position: relative;
  height: calc(85vh - 105px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
}

.z-high {
  position: relative;
  z-index: 2;
}

.custom-card {
  max-width: 500px;
  max-height: 350px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: opacity 0.5s, transform 0.5s;
}

.custom-mini-card {
  min-width: 100px;
  text-decoration: none;
}

.custom-mini-card:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.custom-mt {
  margin-top: 200px;
}

@media only screen and (max-width: 992px) {
  .custom-text-banner {
    top: 50%;
  }
  .custom-card {
    top: 50%;
  }
}

@media only screen and (max-width: 490px) {
  .custom-card {
    display: none;
  }

  .custom-text-banner .titre-bigger {
    font-size: 1.7rem;
  }
}

@media only screen and (min-width: 992px) {
  .banner {
    display: flex;
    justify-content: space-between;
    align-items: end;
    overflow: hidden;
  }

  .custom-card.hidden {
    opacity: 0;
    transform: translateY(100%);
  }

  .custom-mt {
    margin-top: 70px;
  }
}

.carousel-card {
  height: 450px;
  width: 300px;
  margin: 10px;
  flex: 0 0 auto;
  transition: 1s ease-in-out;
}

.carousel-card img {
  height: 65%;
  transition: 1s ease-in-out;
  object-fit: cover;
}

.carousel-card .item-hidden {
  display: none;
  transition: 1s ease-in-out;
}

#card-carousel {
  min-height: 580px;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.special-card {
  height: 550px;
  width: 400px;
  transition: 1s ease-in-out;
}

.special-card img {
  height: 40%;
  transition: 1s ease-in-out;
  object-fit: cover;
}

.special-card .item-hidden {
  display: block;
  transition: 1s ease-in-out;
}

.card-separator {
  width: 20%;
  height: 2px;
  background-color: rgb(136, 136, 136);
}

.arrow-left,
.arrow-right {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  cursor: pointer;
}

.arrow-left {
  transform: rotate(-45deg);
}
.arrow-right {
  transform: rotate(135deg);
}

.banner-2 {
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}

.co-banner {
  background-color: var(--or7);
  height: 400px;
  padding-right: 40px;
  padding-left: 40px;
}

@media only screen and (min-width: 992px) {
  .banner-2 {
    height: 700px;
  }

  .co-banner {
    height: 700px;
    padding-right: 15%;
    padding-left: 5%;
  }
}

/************************************************* A propos *************************************************/

@media (min-width: 992px) {
  #map-iframe {
    width: 800px;
    height: 600px;
  }
}

@media (max-width: 991px) {
  #map-iframe {
    width: 600px;
    height: 450px;
  }
}

@media (max-width: 767px) {
  #map-iframe {
    width: 400px;
    height: 300px;
  }
}

@media (max-width: 430px) {
  #map-iframe {
    width: 250px;
    height: 200px;
  }
}

/************************************************* Actualités *************************************************/
.custom-img-height {
  height: 300px;
  object-fit: cover;
}
/************************************************* Footer *************************************************/
#footer {
  margin-top: 120px;
}

#footer li {
  list-style-type: none;
}

#footer h3 {
  font-size: 2.2rem;
}

#footer h5 {
  font-size: 1.4rem;
}

#footer .smaller {
  font-size: 0.6rem;
  font-style: italic;
}

#footer .rs-icon svg:hover {
  fill: rgb(211, 170, 82);
}

#footer img {
  width: 150px !important;
}

/************************************************* Admin *************************************************/
.table-responsivee {
  width: 100%;
  overflow-x: auto;
}

/************************************************* Dashboard *************************************************/


.dashboard-card {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.data-value {
  font-size: 2rem;
}

.data-label {
  font-size: 1.8rem;
}

#dashboard-data {
  background-image: url("../img/logo2.png");
  background-repeat: no-repeat;
  background-size: 25% auto;
  background-position: 90% 150px;
}

#dashboard-calendar img {
  width: 170px;
}