.home-logo {
  padding: 25px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.home-logo h1 {
  color: white;
  font-family: "Montserrat", sans-serif;
}
.home-logo a {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  .home-logo {
    flex-direction: column;
  }
  .home-logo a {
    width: 100%;
  }
  .home-logo h1 {
    font-size: 2rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #231F20;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body main.splash {
  width: 100%;
  height: 74dvh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  body main.splash {
    height: 60dvh;
    background-attachment: scroll;
  }
}
body header.menu {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  background-color: rgba(35, 31, 32, 0.5019607843);
  justify-content: space-around;
  align-items: center;
  padding: 2% 0;
}
body header.menu div.logo {
  width: 20%;
}
@media only screen and (max-width: 768px) {
  body header.menu div.logo {
    width: 70%;
  }
}
body header.menu div.menu-wrapper {
  width: 40%;
  display: flex;
  justify-content: space-between;
}
body header.menu div.menu-wrapper p.menu-text a {
  text-decoration: none;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
}
body header.menu div.menu-wrapper p.menu-text a:hover {
  color: #ffdb9d;
}
@media only screen and (max-width: 1400px) {
  body header.menu div.menu-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  body header.menu {
    padding: 8% 0;
  }
}

.back-to-top {
  position: fixed;
  bottom: 50px;
  right: 350px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #dc9a39;
  color: #fff;
  text-align: center;
  line-height: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  text-decoration: none;
  font-size: 1.8rem;
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.back-to-top i {
  font-size: 24px;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 768px) {
  .back-to-top {
    bottom: 30px;
    right: 50px;
  }
}
.fd-menu {
  background-color: white;
  width: 60%;
  margin: auto;
  padding: 5%;
}
.fd-menu .fd-menu-nav {
  display: flex;
  width: 80%;
  justify-content: flex-start;
  gap: 5%;
}
.fd-menu .fd-menu-nav .menu-text a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #231F20;
}
.fd-menu .fd-menu-nav .menu-text a:hover {
  cursor: pointer;
  color: #dc9a39;
}
.fd-menu .about {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.fd-menu h2 {
  font-family: "Montserrat", sans-serif;
  color: #231F20;
}
.fd-menu .store-hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  font-size: 1.2rem;
  font-family: "Montserrat", sans-serif;
  color: #231F20;
  width: 50%;
}
.fd-menu .store-hours .day {
  font-weight: bold;
}
.fd-menu .store-hours .hours {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .fd-menu .store-hours {
    width: 80%;
    margin: auto;
  }
}
.fd-menu h1 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  color: #231F20;
}
.fd-menu h2 {
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  font-weight: 500;
  margin: 3% 0;
  color: #606060;
  font-style: italic;
}
.fd-menu .fd-menu-items li {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3% 0 0 -3.8%;
  list-style-type: none;
  text-transform: capitalize;
}
.fd-menu .fd-menu-items li span {
  font-family: "Noto Serif Thai", serif;
  color: #606060;
  font-size: 1.2rem;
}
.fd-menu .fd-menu-items li .item-desc {
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: none;
}
.fd-menu .menu-note {
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
}
.fd-menu p.menu-note {
  margin-top: 5%;
}
.fd-menu .separater {
  margin: 5% 0;
}

@media only screen and (max-width: 768px) {
  .fd-menu {
    width: 90%;
  }
  .fd-menu .fd-menu-nav {
    margin: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
  .fd-menu h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  .fd-menu h2 {
    font-size: 1.2rem;
    text-align: center;
  }
  .fd-menu .fd-menu-items li {
    text-align: center;
    font-size: 1.2rem;
    margin: 8% 0 0 -11%;
  }
  .fd-menu .fd-menu-items li .item-desc {
    font-size: 1rem;
  }
  .fd-menu .menu-note {
    text-align: center;
    list-style-type: none;
  }
  .fd-menu .separater {
    margin: 10% 0;
  }
}
.slideshow-wrapper {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
.slideshow-wrapper .slideshow-container {
  width: 100%; /* Change this value to adjust the container width */
  height: auto; /* Change this value to adjust the container height */
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .slideshow-wrapper .slideshow-container {
    overflow: hidden;
    width: 260%; /* Change this value to adjust the container width for mobile devices */
  }
}
.slideshow-wrapper .slideshow-images {
  display: flex;
  width: 300%; /* Change this value to adjust the total width of all images */
  height: 200%;
  animation: slideshow 30s linear infinite;
}
.slideshow-wrapper .slideshow-images img.food-img {
  width: 50%; /* Change this value to adjust the image size */
  height: auto;
  object-fit: cover; /* Add this to make sure the images fill the container without stretching */
}
.slideshow-wrapper .slideshow-images img.motobike-img {
  width: 50%; /* Change this value to adjust the image size */
  height: auto;
  object-fit: cover; /* Add this to make sure the images fill the container without stretching */
}
@keyframes slideshow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.slideshow-wrapper .nav-button {
  color: #ffdb9d;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  position: absolute;
  background-color: #231F20; /* Change this value to adjust the button color */
  border: none;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Change this value to adjust the button shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slideshow-wrapper .nav-button a {
  text-decoration: none;
  color: white;
}
.slideshow-wrapper .menu-button {
  bottom: 60%; /* Change this value to adjust the button position */
  left: 50%;
  transform: translate(-50%, -50%);
}
.slideshow-wrapper .bike-rental {
  bottom: 30%; /* Change this value to adjust the button position */
  left: 50%;
  transform: translate(-50%, -50%);
}
.slideshow-wrapper .menu-button:hover, .slideshow-wrapper .bike-rental:hover {
  cursor: pointer;
  color: white;
  background-color: #dc9a39;
}
@media only screen and (max-width: 768px) {
  .slideshow-wrapper .menu-button {
    font-size: 1rem;
  }
  .slideshow-wrapper .bike-rental {
    font-size: 1rem;
    bottom: 20%; /* Change this value to adjust the button position */
    left: 50%;
    transform: translate(-50%, -50%);
  }
}