@import url("https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap");

/* Header Styles */
.header {
  background-color: #202020 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  position: fixed;
  top: 0;
  z-index: 1000;
  color: #ffffff;
  height: 10vh;
  width: -webkit-fill-available;
}
.header .firstGrid {
  width: 30vw;
}
.header .secondGrid {
  width: 30vw;
}
.header .thirdGrid {
  width: 30vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.nav-links ul {
  background-color: #202020 !important;
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-links ul li {
  position: relative; /* For dropdown positioning */
}

.nav-links ul li a {
  background-color: #202020 !important;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  padding-bottom: 2px;
  border-bottom: 2px solid #202020;
  width: max-content;
}

.nav-links ul li a:hover {
  background-color: #202020 !important;
  color: #ce9546;
  padding-bottom: 2px;
  border-bottom: 2px solid #ce9546;
}

/* Dropdown Styles */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #202020;
  padding: 20px;
  z-index: 1000;
}
.dropdown.active {
  display: block;
}
.nav-links ul li:hover .dropdown {
  display: block; /* Show dropdown on hover */
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  color: #ffffff;
}

.dropdown li a:hover {
  color: #ce9546;
}

/* Logo Section */
.header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
}

.logo-a {
  background-color: #202020 !important;
}

.header_image {
  background-color: #202020 !important;
  object-fit: contain;
  height: 8vh;
}

/* Reservation Section */
.reservation {
  background-color: #202020 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  min-width: 15vw;
}

.reservation:hover {
  color: #ce9546 !important;
}
.reservation h6 {
  background-color: #202020 !important;
  margin: 0;
  font-size: 16px;
}

.reservation h6 a {
  color: white; /* Make the reservation text white */
  text-decoration: none;
}

.reservation i {
  background-color: #202020 !important;
  font-size: 20px;
}

/* Language Switcher Styles */
.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #202020 !important;
}

.language-switcher button {
  background-color: #ce9546;
  border: none;
  padding: 5px 10px;
  color: #202020;
  font-size: 16px;
  cursor: pointer;
}

.language-switcher button:hover {
  background-color: #ffffff; /* Change hover color */
  color: #ce9546;
}

/* Nav Toggle (Hamburger Menu) */
.nav-toggle {
  background-color: #202020 !important;
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .firstGrid {
    width: 15vw;
  }
  .nav-links ul li:focus .dropdown {
    display: block; /* Show dropdown on hover */
  }
  .nav-toggle {
    background-color: #202020 !important;
    display: block;
  }

  .nav-links {
    background-color: #202020 !important;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #202020;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links ul {
    background-color: #202020 !important;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links.active {
    background-color: #202020 !important;
    display: flex;
  }

  .header_image {
    background-color: #202020 !important;
    width: 80px;
  }

  .reservation {
    background-color: #202020 !important;
    display: none;
  }
  .dropdown.active {
    display: block;
  }
  #aboutLink {
    cursor: pointer;
  }
}
