@font-face {
  font-family: 'policeText';
  src: url('Poppins-Regular.ttf');
}
@font-face {
  font-family: 'policeTitreContact';
  src: url(PlayfairDisplay-ExtraBold.ttf);
}
@font-face {
  font-family: 'policeTextContact2';
  src: url(Poppins-SemiBold.ttf);
}
@font-face {
  font-family: 'policeTitreIndex';
  src: url(CormorantGaramond-SemiBold.ttf);
}
@font-face {
  font-family: 'policeTitreCard';
  src: url(Playball.ttf);
}

body {
  margin: 0;
  padding: 0;
  
}
html, body {
  overflow-x: hidden;
}

.barre-navigation {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #000000;
  height: 98px;
}

.logo img {
  height: 150px;
  margin-bottom: -40px;
  margin-left: 30px;
  position: relative;
  z-index: 1;
}

.liens-navigation {
  list-style: none;
  display: flex;
  gap: 56px;
  margin: 0;
  padding: 0;
  height: 100%;
  align-items: flex-end;
  margin-top: -20px;
  font-family: 'policeText';
}

.liens-navigation li:nth-child(-n+2) a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 18px;
}
.liens-navigation li:nth-child(-n+2) a:hover {
  color: #D4AF37;
}

.liens-navigation li button {
  margin-bottom: -10px;
}
.liens-navigation li button a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}

.btn-reservation-1 {
  font-family: 'policeText';
  font-weight: 400;
  color: white;
  background-color: #184A8C;
  width: 246px;
  height: 47px;
  border: none;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  font-size: 18px;
  padding: 10px;
}

.btn-reservation-1 span:not(:nth-child(6)) {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
  background-color: #D4AF37;
  border-radius: 50%;
  transition: transform 1s ease;
}

.btn-reservation-1 span:nth-child(1) {
  transform: translate(-150px, -150px) scale(1);
}

.btn-reservation-1 span:nth-child(2) {
  transform: translate(-150px, 150px) scale(1);
}

.btn-reservation-1 span:nth-child(3) {
  transform: translate(150px, 150px) scale(1);
}

.btn-reservation-1 span:nth-child(4) {
  transform: translate(150px, -150px) scale(1);
}

.btn-reservation-1 span:nth-child(5) {
  transform: translate(0, -170px) scale(1);
}

.btn-reservation-1 span:nth-child(6) {
  position: relative;
  z-index: 1;
}

.btn-reservation-1:hover span:not(:nth-child(6)) {
  transform: translate(-50%, -50%) scale(4.2);
}

.section-contact-1 {
  height: 346px;
  background-color: #184A8C;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  text-align: center;
}

.section-contact-1 h1 {
  color: #fff;
  margin: 0;
  font-family: 'policeTitreContact';
  font-size: 32px;
  font-weight: 100;
}
.section-contact-1 h2 {
  color: #fff;
  margin: 0;
  font-family: 'policeText';
  font-size: 24px;
  font-weight: 400;
}
.section-contact-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 365px;
}
.section-contact-2 h1 {
  text-transform: uppercase;
  font-family: 'policeTitreContact';
  font-weight: 400;
  color: #D4AF37;
  font-size: 48px;
  margin: 0;
  letter-spacing: 10px;
}
.séparateur-contact-2 {
  width: 479px;
  height: 2px;
  background-color: #000000;
  margin-top: 29px;
}
.section-contact-2 h2 {
  font-size: 20px;
  font-family: 'policeTextContact2';
  font-weight: 100;
  letter-spacing: 5px;
  margin-top: 29px;
}
.section-contact-2 h3 {
  font-family: 'policeText';
  font-weight: 100;
  letter-spacing: 5px;
  font-size: 20px;
  margin-top: -10px;
}
.séparateur-contact {
  width: 100%;
  height: 5px;
  background-color: #000000;
}

.section-contact-3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 700px;
}

.section-contact-3 h2 {
  font-family: 'policeTitreContact';
  color: #D4AF37;
  font-size: 40px;
  margin-top: -90px;
  font-weight: 100px;
  letter-spacing: 5px;
}

.flip-cards-container {
  display: flex;
  justify-content: center;
  gap: 294px;
  margin-top: 100px;
}

.flip-card {
  background-color: transparent;
  width: 332px;
  height: 246px;
  perspective: 1000px;
  font-family: 'policeText';
  font-size: 30px;
}
.title-2 {
  font-size: 20px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 3px solid #184A8C;
  border-radius: 1rem;
}

.flip-card-back {
  background: linear-gradient(120deg, #184A8C 30%, #184A8C 88%, #184A8C 40%, #184A8C 78%);
  color: white;
  transform: rotateY(180deg);
}

.footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-top: 4px solid #184A8C;
  font-family: 'policeText';
  height: 196px;
  gap: 20px;
  text-align: center;
  padding: 0 150px;
  box-sizing: border-box;
}

.footer-logo img {
  height: 114px;
  width: 105px;
}

.footer-text {
  text-align: center;
  flex: 1;
  font-size: 14px;
  color: #6F6F6F;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 60px;
}

.footer-links a {
  color: #D4AF37;
  text-decoration: none;
}

.footer-links img {
  height: 45px;
  width: 46px;
  transition: transform 0.3s ease;
}

.footer-links a:hover img {
  transform: scale(1.3);
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: transparent;
  backdrop-filter: blur(5px);
  mask-image: radial-gradient(
      circle at var(--mouseX, 50%) var(--mouseY, 50%),
      transparent 20px,
      black 30px
  );
  -webkit-mask-image: radial-gradient(
      circle at var(--mouseX, 50%) var(--mouseY, 50%),
      transparent 20px,
      black 30px
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.footer.overlay-active .footer-overlay {
  opacity: 1;
}

.section-reservation-1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
  background-color: #184A8C;
  text-align: center;
  overflow: visible;

}

.reservation-text-1 {
  z-index: 1;
}

.reservation-text-1 h1 {
  font-size: 32px;
  font-family: 'policeTitreContact';
  font-weight: 100;
  color: #fff;
  margin-bottom: 40px;
}

.reservation-text-1 h2 {
  font-size: 24px;
  font-family: 'policeText';
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.reservation-logo-1 {
  position: absolute;
  right: 100px;
  bottom: -90px;
  z-index: 2;
}

.reservation-logo-1 img {
  width: 206px;
  height: 206px;
  animation: rotationlogo 5s linear infinite;
}

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

.section-reservation-formulaire {
  height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-container {
  position: relative;
  overflow: hidden;
  width: 1219px;
  height: 750px;
  margin: 0 auto;
  border-radius: 14px;
  border: 0.0001px solid #184A8C;
  background: rgba(255, 255, 255, 0.631);
  box-shadow: 11px 11px 0px 0px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('logo.jpg') no-repeat center;
  background-size: 300px auto;
  filter: blur(2px);
  z-index: -1;
  transform: scale(1.1);
}

.form-container form button[type="submit"] {
  display: block;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  font-family: 'policeTitreContact';
  font-size: 48px;
  color: #184A8C;
  margin-bottom: 4rem;
  font-weight: 100;
}

.form-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 7rem;
  margin-bottom: 5rem;
}

.form-group {
}

.form-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'policeText';
  font-weight: 300;
  color: #000;
}

.form-container input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #184A8C;
  border-radius: 10px;
  font-family: 'policeText';
  font-size: 16px;
  box-sizing: border-box;
}

.form-container input:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 4px rgba(24, 74, 140, 0.3);
}

.success {
  color: #fff;
  font-family: 'policeText';
  font-size: 20px;
  margin-bottom: 3rem;
  background-color: #184A8C;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  opacity: 0;
  transform: translateX(-200%);
  animation: slideIn 2s forwards;
}

@keyframes slideIn {
  from {
      transform: translateX(-200%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

.form-container button {
  width: 400px;
  height: auto;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  font-family: 'policeTextContact2';
}

.form-container button:hover {
  background-color: #D4AF37;
  box-shadow: 0px 15px 20px #D4AF37;
  color: #fff;
  transform: translateY(-7px);
}

.form-container button:active {
  transform: translateY(-1px);
}

.section-index-1 {
  position: relative;
  background: url('210518_FEVER_DINING_IN_DARK_ROB_JONES_HIGH_RES_14-1-scaled.jpg') no-repeat center center;
  background-size: cover;
  height: 721px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.section-index-1-conteneur {
  margin-top: 2rem;
  text-align: center;
}

.section-index-1-conteneur h1 {
  color: #FFF;
  text-align: center;
  font-family: 'policeTitreIndex';
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-index-1-separateur {
  width: 259px;
  height: 2px;
  background-color: #fff;
  margin: 1rem auto;
}

.section-index-1-conteneur h2 {
  color: #FFF;
  text-align: center;
  font-family: "policeTitreContact";
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-23,
.btn-23 *,
.btn-23 :after,
.btn-23 :before,
.btn-23:after,
.btn-23:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-23 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #184A8C;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: 'policeText';
  font-size: 100%;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
  border-radius: 99rem;
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
  margin-bottom: 4rem;
  width: 233px;
}

.btn-23:disabled {
  cursor: default;
}

.btn-23:-moz-focusring {
  outline: auto;
}

.btn-23 svg {
  display: block;
  vertical-align: middle;
}

.btn-23 [hidden] {
  display: none;
}

.btn-23 span {
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transition: opacity 0.2s ease;
}

.btn-23 .marquee {
  --spacing: 6em;
  --start: 0em;
  --end: 6em;
  -webkit-animation: marquee 1s linear infinite;
  animation: marquee 1s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  position: relative;
  text-shadow: #fff var(--spacing) 0, #fff calc(var(--spacing) * -1) 0, #fff calc(var(--spacing) * -2) 0;
}

.btn-23:hover .marquee {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.btn-23:hover .text {
  opacity: 0;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }
  to {
    transform: translateX(var(--end));
  }
}

@keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }
  to {
    transform: translateX(var(--end));
  }
}

.section-index-2 {
  width: 100%;
  overflow: hidden;
  background-color: #FFF;
  height: 104px;
  display: flex;
  align-items: center;
  border: 1px solid black;
}

.carrousel-texte {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.texte-defilant {
  display: inline-block;
  padding-left: 100%;
  animation: defilement 100s linear infinite;
  color: #000;
  font-family: 'policeTitreContact';
  font-size: 36px;
  text-transform: uppercase;
}

.texte-defilant span {
  display: inline-block;
  padding-left: 70px;
}

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


.section-index-3 {
  background-color: #184A8C;
  height: 520px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.section3-header {
  display: flex;
  align-items: center;
  gap: 419px;
  padding: 1rem;

}

.section3-logo {
  margin-top: 50px;
  width: 110px;
  height: 95px;
  opacity: 0;
  transform: scale(0.5);
}

.section3-logo.pop {
  animation: bounceIn 0.5s ease-out 1s forwards;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.2);
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.section3-title {
  margin-top: 4rem;
  margin-bottom: 1rem;
  margin-left: 3rem;
  font-family: 'policeTitreContact';
  color: #D4AF37;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 200;
  line-height: 100%;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.vague-svg {
  position: absolute;
  top: 1500px;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.section3-content {
  width: 100%;
  padding: 1rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section3-separator {
  width: 844.587px;
  height: 4px;
  background-color: #fff;
  margin-bottom: 3rem;
}


.section3-paragraphs p {
  color: #FFF;
  font-family: 'policeText';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: 4px;
  margin-bottom: 2rem;
  text-align: left;
}

.section3-images {
  margin-top: -450px;
  margin-left: 1200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.section3-images img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

/* Pour la deuxième image (tu peux l'ajuster selon tes besoins) */
.section3-images .img2 {
  margin-top: -250px;
  margin-left: -30px;
  max-width: 360px;
  width: 100%;
  height: auto;
  transform: rotate(5.5deg);
}


/* Animation de rotation pour l'image du dessus */
.img2.rotate {
  animation: rotateSmall 1s ease-out 1.5s forwards;
}

@keyframes rotateSmall {
  0% {
    transform: rotate(5.5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}


.section-index-4 {
  margin-top: 220px;
  padding: 3rem;
  background-color: #fff;
  text-align: center;
  height: 1096px;
}

.section4-title {
  color: #D4AF37;
text-align: center;
font-family: "policeTitreIndex";
font-size: 48px;
font-style: normal;
font-weight: 900;
line-height: 100%; /* 48px */
letter-spacing: 10px;
text-transform: uppercase;
margin-bottom: 2rem;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 10rem;
  margin-top: 200px;
}

.card {
  width: 482px;
  height: 602px;
  padding: 1.5rem;
  border-radius: 10px;
border: 3px solid #000;
background: #FFF;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  box-shadow: 11px 11px 0px 0px rgba(0, 0, 0, 0.25);

}
.card h3 {
  font-family: 'policeTitreCard';
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 48px */
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-bottom: 5rem;
}
.card p {
  color: #000;
text-align: center;
margin: 0;
font-family: 'policeText';
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 100%; /* 16px */
letter-spacing: 3px;

}
.card h4 {
  color: #000;
  text-align: center;
  font-family: "policeTitreIndex";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: 10px;
  text-transform: uppercase;
}
.separateur-card {
  width: 452px;
  height: 3px;
  background: #D4AF37;
  margin: auto;
}


.card.animate {
  animation: bounceIn2 1s ease-out 0.1s forwards;
}

@keyframes bounceIn2 {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  60% {
    opacity: 0;
    transform: translateY(-10px);
  }
  80% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.section4-button {
  width: 400px;
  height: auto;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 200;
  color: #fff;
  background-color: #184A8C;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  font-family: 'policeText';
  display: block;
  margin: 2rem auto 0 auto;
  margin-top: 100px;
}

.section4-button:hover {
  background-color: #D4AF37;
  box-shadow: 0px 15px 20px #D4AF37;
  color: #fff;
  transform: translateY(-7px);
}

.section4-button:active {
  transform: translateY(-1px);
}

.section5-index {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 490px;
  background-color: #184A8C;
  gap:3rem;
}
.section5-index h1 {
  text-transform: uppercase;
  font-family: 'policeTitreContact';
  font-weight: 400;
  color: #D4AF37;
  font-size: 48px;
  margin: 0;
  letter-spacing: 10px;
}
.séparateurIndex-2 {
  width: 479px;
  height: 2px;
  background-color: #fff;
  margin-top: 29px;
  margin: 0;
}
.section5-index h2 {
  font-size: 20px;
  font-family: 'policeTextContact2';
  font-weight: 100;
  letter-spacing: 5px;
  margin-top: 29px;
  color: #fff;
  margin: 0;
}
.section5-index h3 {
  font-family: 'policeText';
  font-weight: 100;
  letter-spacing: 5px;
  font-size: 20px;
  margin-top: -30px;
  color: #fff;
}
.section5-button {
    width: 400px;
    height: auto;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 200;
    color: #fff;
    background-color: #D4AF37;
    border: 2px white;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    font-family: 'policeText';
    display: block;
    margin: 2rem auto 0 auto;
    margin-top: 30px;
  }
  
  .section5-button:hover {
    background-color: #D4AF37;
    box-shadow: 0px 15px 20px #D4AF37;
    color: #fff;
    transform: translateY(-7px);
  }
  .section5-button:active {
    transform: translateY(-1px);
  }


  .section-menu-0 {
    height: 1915px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Ajoutez cette ligne pour empiler verticalement */

  }

  .menu-container-0 {
    display: grid;
    grid-template-columns: repeat(2, 482px); /* 2 colonnes de 482px */
    grid-template-rows: repeat(2, auto);      /* 2 lignes ajustées au contenu */
    gap: 300px;  /* Espacement entre les cartes */
  }

  .menu-card {
    width: 482px;
    height: 602px;
    padding: 1.5rem;
    border-radius: 10px;
    border: 3px solid #000;
    background-color: #fff;
    transform: translateY(50px);
    box-shadow: 11px 11px 0px 0px rgba(0, 0, 0, 0.25);
    margin-top: -100px;
  }

  .menu-card h3 {
    font-family: 'policeTitreCard';
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 5rem;
    text-align: center;
  }

  .menu-card p {
    color: #000;
    text-align: center;
    margin: 0;
    font-family: 'policeText';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 3px;
  }
  
  .menu-card h4 {
    color: #000;
    text-align: center;
    font-family: "policeTitreIndex";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 10px;
    text-transform: uppercase;
  }
  
  /* Style du séparateur à l'intérieur de la carte */
  .menu-separator {
    width: 452px;
    height: 3px;
    background: #D4AF37;
    margin: 0;
  }
  
  .menu-button {
    position: absolute;
    bottom: -1500px;      /* Ajuste cette valeur pour placer le bouton à la distance souhaitée du bas */
    left: 51%;
    transform: translateX(-50%);
    background-color: #184A8C;
    color: #fff;
    border: none;
    border-radius: 45px;
    font-family: 'policeText';
    font-size: 18px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 650px;

  }
  
  .menu-button:hover {
    background-color: #D4AF37;
    transform: translate(-50%, -3px);
  }


  