html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/Poppins-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/Poppins-Light.ttf") format("truetype");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "Space Mono";
  src: url("../assets/SpaceMono-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Space Mono";
  src: url("../assets/SpaceMono-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Space Mono";
  src: url("../assets/SpaceMono-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Space Mono";
  src: url("../assets/SpaceMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  background-color: rgba(142, 195, 158, 0.1411764706);
  overflow-x: hidden;
}

li {
  list-style-type: none;
}

a {
  font-family: "Space Mono", sans-serif;
  font-weight: normal;
  color: #e9e9e2;
  text-decoration: none;
  cursor: pointer;
}

button {
  font-family: "Space Mono", sans-serif;
  font-weight: normal;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

h1 {
  font-family: "Space Mono", sans-serif;
  font-weight: bold;
  font-style: italic;
}

h2 {
  font-family: "Space Mono", sans-serif;
  font-weight: normal;
  font-style: italic;
}

h3 {
  font-family: "Space Mono", sans-serif;
  font-weight: normal;
}

h4 {
  font-family: "Space Mono", sans-serif;
  font-weight: normal;
}

h5 {
  font-family: "Space Mono", sans-serif;
  font-weight: normal;
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 14px;
}

header {
  height: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgb(172, 143, 125) 8%, rgb(144, 83, 50) 22%, rgb(117, 50, 10) 88%);
}
header nav#site-navigation {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header nav#site-navigation .logoHeader {
  width: 20%;
}
header nav#site-navigation .logoHeader img {
  padding: 16px 0 16px 8%;
  height: 100px;
}
header nav#site-navigation .headerMenusContainer {
  width: 80%;
  display: flex;
  align-items: center;
}
header nav#site-navigation .headerMenusContainer .menu-menu-1-container {
  width: 100%;
}
header nav#site-navigation .headerMenusContainer .menu-menu-1-container ul#primary-menu {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12%;
  padding-right: 12%;
}
header nav#site-navigation .headerMenusContainer .menu-menu-1-container ul#primary-menu li a {
  color: white;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  header {
    height: 72px;
  }
  header .logoHeader img {
    height: 60px !important;
  }
  header .headerMenusContainer {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  header nav#site-navigation .headerMenusContainer .menu-menu-1-container ul#primary-menu li a {
    font-size: 16px;
  }
}
.closedMenu {
  display: none;
  justify-content: flex-end;
  padding-right: 15%;
}
.closedMenu .menuToggle {
  width: 28px;
  height: 19px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0);
  border: none;
}
.closedMenu .menuToggle .line1 {
  height: 1px;
  background-color: white;
  display: block;
  width: 100%;
}
.closedMenu .menuToggle .line2 {
  height: 1px;
  background-color: white;
  display: block;
  width: 100%;
}
.closedMenu .menuToggle .line3 {
  height: 1px;
  background-color: white;
  display: block;
  width: 100%;
}

.openedMenu.openingTheMenu.fixedMenu {
  background-color: #161133;
}
.openedMenu.openingTheMenu.fixedMenu .menu-mobile-menu-container {
  height: 100%;
}

.openedMenu {
  display: none;
  overflow: hidden;
}
.openedMenu ul#Mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  text-align: center;
  height: 100%;
  padding-left: 0;
  padding-bottom: 10%;
  gap: 5%;
}
.openedMenu ul#Mobile .burgerLink a {
  color: white;
  font-size: 44px;
  font-style: normal;
}
.openedMenu ul#Mobile .burgerLinkModal a {
  color: white;
  font-size: 44px;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .menu-menu-1-container {
    display: none;
  }
  .closedMenu {
    display: flex !important;
  }
}
.line1Transform {
  transform: rotate(45deg);
}

.line3Transform {
  transform: rotate(-45deg);
}

.calibrateCross {
  justify-content: center !important;
}

.openingTheMenu {
  margin-top: 72px !important;
  display: flex !important;
  position: absolute;
  flex-direction: column;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: white;
  margin-top: 50px;
  transition: 1s ease;
}

.fixedMenu {
  position: fixed !important;
}

.fixedNavBar {
  height: 80px !important;
  position: fixed;
  max-width: 1440px;
  width: 100% !important;
}

.hidden {
  display: none !important;
}

.menu-language-switcher {
  position: relative;
  display: inline-block;
}

.languageIcon {
  font-size: 36px;
  height: 36px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .languageIcon {
    color: #c5cae9 !important;
  }
}
.language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: rgb(117, 50, 10);
  border: 1px solid #ddd;
  list-style: none;
  margin: 0;
  padding: 10px;
  border-radius: 6px;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.language-dropdown.visible {
  display: block;
}

.language-dropdown li {
  padding: 5px 15px;
}

.language-dropdown li a {
  text-decoration: none;
  color: black;
  display: block;
  padding: 0 10px;
}

.language-dropdown li a:hover {
  border-radius: 6px;
  background-color: rgba(248, 15, 194, 0.3333333333);
}

/* Make dropdown full width if needed for mobile */
@media (max-width: 768px) {
  .language-dropdown {
    position: relative;
    top: auto;
    right: auto;
    width: 50%; /* Ensure it fits the mobile menu */
    margin: auto;
    background-color: antiquewhite;
  }
  .language-dropdown li a:active {
    border-radius: 6px;
    background-color: rgba(218, 46, 46, 0.3098039216);
  }
  .language-dropdown li a:hover {
    border-radius: 6px;
    background-color: rgba(248, 15, 194, 0.3333333333);
  }
  .menu-language-switcher {
    text-align: center;
  }
  .languageIcon {
    padding-bottom: 12px;
  }
}
.mainContainer {
  margin: auto;
  max-width: 1440px;
}
.mainContainer .heroPart {
  padding-top: 24px;
}
.mainContainer .heroPart .frontImg {
  padding: 24px 5%;
  max-width: 1000px;
  margin: auto;
}
.mainContainer .heroPart .frontImg img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.textContent {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px 5%;
  max-width: 800px;
  margin: auto;
}
.textContent h1 {
  text-align: center;
}
.textContent h2 {
  text-align: center;
}
.textContent .btnContainer {
  width: 100%;
  display: flex;
  justify-content: center;
}
.textContent .btnContainer button {
  background-color: rgba(44, 67, 247, 0.34);
  width: 120px;
  height: 42px;
  border-radius: 4px;
}

.restaurant .tableImg {
  padding: 24px 5%;
  max-width: 1000px;
  margin: auto;
}
.restaurant .tableImg img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

#map {
  max-height: 600px;
  aspect-ratio: 1;
  padding-top: 24px;
}

.customMarker {
  height: 40px;
}

.menuPageContainer .imgMenuContainer {
  padding: 0 20px;
  max-width: 600px;
  margin: auto;
}
.menuPageContainer .imgMenuContainer img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 1;
}

@media screen and (max-width: 660px) {
  .imgMenuContainer {
    margin: 0 5%;
  }
}
.carousel-container {
  position: relative;
  width: 100%; /* Carousel container width */
  max-width: 1250px;
  margin: auto;
  overflow: hidden; /* Hide the images outside the visible area */
  margin-bottom: 40px;
}

.carousel {
  display: flex; /* Align the images horizontally */
}

.carousel-slide {
  display: flex; /* Make the images sit next to each other in a row */
  transition: transform 0.5s ease-in-out;
  width: 900%; /* Width of all images combined (4 images = 4 * 100%) */
}

.carousel-slide img {
  width: 100%; /* Each image takes full width of the container */
  flex: 0 0 100%; /* Ensure each image stays separate */
  height: auto;
}

.carousel-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 5rem;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}

#prevBtn {
  left: 10px;
}

#nextBtn {
  right: 10px;
}

.carousel-indicators {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.bullet {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.bullet.active {
  background-color: rgba(255, 255, 255, 0.9);
}

@media screen and (max-width: 860px) {
  .carousel-nav button {
    font-size: 2rem;
  }
  .bullet {
    width: 12px;
    height: 12px;
    margin: 5px;
  }
  .carousel-indicators {
    bottom: 10px;
  }
}
.hotelContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hotelContainer .hotelIntroTextContainer {
  padding: 10px 10%;
  max-width: 800px;
  margin: auto;
}
.hotelContainer .hotelIntroTextContainer h1 {
  text-align: center;
}
.hotelContainer .tinyRoomImg {
  max-width: 350px;
  margin: 5%;
  aspect-ratio: 1/1.5;
}
.hotelContainer .priceContainer {
  max-width: 800px;
  margin: auto;
}
.hotelContainer .priceContainer h3 {
  padding: 20px 0;
}
.hotelContainer .priceContainer .priceOptions {
  gap: 12px;
}
.hotelContainer .hotelIcons {
  font-size: 20px;
  padding-right: 10px;
}

.facilitiesContainer {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.facilitiesContainer .facilityRow {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

#post-3 {
  padding: 12px;
}
#post-3 .entry-content {
  max-width: 800px;
  margin: auto;
}
#post-3 .entry-footer {
  display: none;
}

.widget-area {
  display: none;
}

footer {
  width: 100%;
  background-color: black;
  color: white;
}
footer .footerContainer {
  margin: auto;
  text-align: center;
  max-width: 1440px;
  padding: 25px 5%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: space-evenly;
  align-items: center;
}
footer .footerContainer .contactInfos {
  display: flex;
  flex-direction: column;
}
footer .footerContainer .socialMedias {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 480px) {
  footer .footerContainer {
    flex-direction: row;
    gap: 10%;
  }
}
.footerIcons {
  font-size: 30px;
  padding-right: 10px;
}

.footerRow {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.not-found {
  background-color: antiquewhite;
  min-height: 60vh;
}
.not-found h1 {
  background-color: antiquewhite;
}
.not-found .ErrorImageContainer {
  max-width: 1200px;
  padding: 25px;
  margin: auto;
}
.not-found .ErrorImageContainer img {
  aspect-ratio: 1.7/1;
  width: 100%;
}
.not-found .notFoundTitle {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}/*# sourceMappingURL=style.css.map */