/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: palaceFont;
  src: url('./fonts/PalaceScriptMT.ttf');
  size-adjust: 200%;
}

.intro-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: all 0.5s linear;
  animation: fadeout 10s linear;
}

@keyframes fadeout {
  0% {
    scale: 0.7;
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    scale: 1;
    opacity: 1;
  }
}

.intro-logo-div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

a {
  text-decoration: none;
}

.form-input {
  padding: 5px 5px 5px 5px;
  border: 1px #d7b14c solid;
  color: #99631d;
  border-radius: 5px;
  font-size: 20px;
  font-family: 'Architects Daughter', cursive;
  text-align: center;
}

.form-input::placeholder {
  font-family: 'Architects Daughter', cursive;
  font-style: italic;
  font-size: 16px;
  color: #ac9165;
}

.form-group {
  padding: 5px;
  display: flex;
  flex-direction: column;

}

.bp-form-label {
  margin-right: 10px;
  font-family: 'Tangerine', cursive;
  font-size: 36px;
  color: #d7b14c;
}

.btn-reservation {
  --bs-btn-color: #d7b14c;
  --bs-btn-border-color: #d7b14c;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d7b14c;
  --bs-btn-hover-border-color: #d7b14c;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #d7b14c;
  --bs-btn-active-border-color: #d7b14c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #d7b14c;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #d7b14c;
  --bs-gradient: none;
}

.btn-reservation:hover {
  color: #000;
  background-color: #d7b14c;
  border-color: #d7b14c;

}

.btn-gold {
  --bs-btn-color: #d7b14c;
  --bs-btn-border-color: #d7b14c;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d7b14c;
  --bs-btn-hover-border-color: #d7b14c;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #d7b14c;
  --bs-btn-active-border-color: #d7b14c;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #d7b14c;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #d7b14c;
  --bs-gradient: none;
}

.btn-gold:hover {
  color: #000;
  background-color: #d7b14c;
  border-color: #d7b14c;

}

.bp-btn-close {
  height: 60px;
  font-size: 30px;
  font-family: 'Great vibes';
  color: #99631d;
  transition: all 1s ease;
  padding: 10px 20px 10px 15px;
  text-align: center;
}

.bp-btn-close:hover {
  border: 1px #99631d solid;
}

.background-text-div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-family: 'Great Vibes', cursive;
  z-index: -1;
  font-size: 20rem;
  opacity: 0.05;
  color: #f1ece4;
  width: 100%;
  display: flex;
  justify-content: center;
}

.increment-input {
    background-color: #f5f5dc;
    color: #99631d;
    border: 1px #99631d solid;
    width: 25px;
    text-align: center;
}

.decrement-input {
  background-color: #f5f5dc;
  color: #99631d;
  border: 2px #99631d solid;
  width: 25px;
}

.bp-btn-submit {
  height: 60px;
  font-size: 30px;
  font-family: 'palaceFont', cursive;
  background-color: #d7b14c;
  color: white;
}

.left-input {
  text-align: start !important;
}

.top-title {
  font-size: 3rem;
  opacity: 0;
  text-align: center;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.lower-title {
    position: absolute;
    opacity: 0;
    top: 100px;
    text-align: center;
    font-size: 1.9rem;
}

@keyframes title-appear {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
  }
}

.title-line {
  border: 2px white solid;
  margin-bottom: 10px;
  width: 0px;
  display: none;
}

#nav-bar {
    background-color: rgb(0, 0, 0);
    width: 100% !important;
    max-width: 100% !important;
    height: 65px;
    position: fixed;
    z-index: 4;
    opacity: 1;
    transition: all 0.5s ease;
    overflow: unset;
    top: 0;
    left: 0;
}

#nav-bar.hidden-bar {
  opacity: 0;
}

#nav-bar.hidden-logo {
  overflow: hidden;
}

.gallery-frame {
  padding: 63px 65px;
  background-image: url('/images/frame.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 90vh;
  width: 70%;
  background-position: center;
  margin-bottom: 30px;
  margin-left: 30px;
  margin-right: 30px;
}

.swiper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.gallery-title {
  font-family: 'palaceFont';
  font-size: 5rem;
  color: #b3913c;
  padding: 1rem;
}

.gallery-text {
  font-size: 1.5rem;
  color: #7F682B;
  font-family: 'Great vibes';
  padding: 2rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
}

.swiper-button-prev {
  left: 45px;
}

.swiper-button-next {
  right: 45px;
}

.bp-offcanvas {
    background-color: rgb(32, 22, 7);
    box-shadow: inset 0px 0px 0px 2px #ac9165;
    width: 45vw !important;
}

@media(max-width: 768px) {
    .bp-offcanvas {
        width: 90vw !important;
        text-align: center;
        opacity: 0.8;
    }

    .menu-image-div {
        display: none !important;
    }

    .menu-list {
        text-align: center !important;
    }

    .btn-reservation {
        font-size: 1rem !important;
    }

    .btn-gold {
        font-size: 1rem !important;
    }
}

.btn-reservation {
    font-size: 1.5rem;
}

.btn-gold {
    font-size: 1.5rem !important;
}

.menu-list {
  text-align: end;
  list-style-type: none;
  font-family: great vibes;
  font-size: 2rem;
}

.menu-list-item {
  transition: all 0.5s ease;
}

.menu-list-item:hover {
  color: #ac9165;
  letter-spacing: 2px;
}

.menu-image-div {
  margin-left: 20px;
  margin-right: 20px;
  width: 45%;
  display: flex;
  border: 2px #ac9165 solid;
}

.menu-image-div img {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.menu-close {
  position: fixed;
  right: 20px;
  top: 20px;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
  transition: all 0.5s ease;
}

.menu-close:hover {
  color: #d7b14c;
}

.onvideo-buttons {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
}

@media only screen and (max-width: 700px) {
  .gallery-frame {
    background-color: unset;
    background-image: unset;
    padding: 0px 10px;
    width: 100%;
    height: 100%;
  }

  .top-title {
    font-size: 3rem;
    opacity: 0;
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

    .lower-title {
        font-size: 1.3rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        top: 70px;
    }

  .title-line {
    width: 0px;
    max-width: 65%;
    align-self: center;
    display: none;
  }
}
.client-info-div{
  padding: 10px 30px;
}
.client-info-line{
  font-size: 1.2rem;
  padding: 5px 0px;
}
.client-info-line span{
  font-weight: bold;
}
.devis-title{
  font-size: 1.5rem;
  text-decoration: underline;
  font-weight: bold;
  text-align: center;
}
.bp-table td{
  font-size: 14px;
}
.qr-code-div{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
}

.simple-text {
    font-family: 'Architects Daughter', cursive;
    font-style: italic;
    margin: 0;
}

.text-centred {
    text-align: center;
    font-size: 20px;
}

.sm-btn {
    font-size: 16px !important;
}

.error-span {
    background-color: rgb(241 154 158);
    padding: 5px;
    border-radius: 5px;
    color: #9e6625;
    margin-top: 2px;
    display: none;
    font-size: 12px;
    text-align: center;
}
