/* Footer styles */
footer {
  font-size: 100%;
  background: url("res1.jpeg") no-repeat center center;
  background-size: cover;
  padding-bottom: 80px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-top: 2px solid rgb(189, 148, 86);
  z-index: 1000;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-content a,
.footer-content .form-container,
.footer-content .dropdown {
  display: inline-block;
  margin: 0 5px;
}

.footer-content a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-content a:hover {
  text-decoration: underline;
}

.footer-content .form-container form,
.footer-content .search-form {
  display: inline-block;
}

.footer-content .form-container button,
.footer-content .search-form button {
  background: #fff;
  color: #000;
  border: none;
  padding: 5px 8px;
  cursor: pointer;
  font-size: 12px;
}

.footer-content .form-container button:hover,
.footer-content .search-form button:hover {
  background: #ccc;
}

.footer-content .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.footer-content .dropdown:hover .dropdown-content {
  display: block;
}

.footer-content .dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.footer-content .dropdown-content a:hover {
  background-color: #ddd;
}

/* Body */
body {
  font-size: 100%;
  overflow-y: scroll;
  background: url("res1.jpeg");
  padding-bottom: 80px;
}

/* Responsive footer */
@media (max-width: 768px) {
  footer {
    padding: 8px;
  }
  .footer-content a {
    font-size: 12px;
    margin: 5px 3px;
  }
  .footer-content .form-container,
  .footer-content .dropdown {
    margin: 5px 3px;
  }
  .footer-content .form-container button,
  .footer-content .search-form button {
    padding: 4px 6px;
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 5px;
  }
  .footer-content {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .footer-content a {
    font-size: 10px;
    margin: 3px 2px;
  }
  .footer-content .form-container,
  .footer-content .dropdown {
    margin: 3px 2px;
  }
  .footer-content .form-container button,
  .footer-content .search-form button {
    padding: 3px 5px;
    font-size: 8px;
  }
  .footer-content {
    flex-direction: inherit;
    align-items: center;
  }
  .footer-content a {
    margin: 5px 0;
  }
}

/* Lang button (final merged version) */
.lang-button {
  background-color: #00030e;
  border: 2px solid yellow;
  color: yellow;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 20px;
  cursor: pointer;
  outline: none;
  font-weight: bold;
  margin: 0 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.lang-button:hover {
  background-color: yellow;
  color: #00030e;
  transform: translateY(-2px);
}
.lang-button.active {
  background-color: yellow;
  color: #00030e;
}
@media (max-width: 768px) {
  .lang-button {
    padding: 6px 16px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .lang-button {
    padding: 4px 12px;
    font-size: 10px;
  }
}

/* Back to top button */
.back-top-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.back-top-btn ion-icon {
  font-size: 20px;
}

/* About section */
.about-us {
  background: url("back.jpeg") no-repeat center center/cover;
  padding: 20px;
  text-align: center;
  color: white;
  border: 2px solid rgb(189, 148, 86);
  border-radius: 10px;
  margin: 20px auto;
  max-width: 800px;
  display: none;
}
.about-us .container {
  max-width: 800px;
  margin: 0 auto;
}
.about-content {
  text-align: left;
}
.about-content h2 {
  font-style: oblique;
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
}
.about-content p {
  color: white;
  font-size: 18px;
  margin: 5px 0;
}
.about-us .about-content a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.about-us .about-content a:hover {
  color: #ddd;
}
.about-us .about-content a i {
  color: white;
  margin-right: 5px;
}

/* Topbar */
.topbar {
  position: fixed;
  left: 5%;
  top: 20px;
  background: #444;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}
.topbar h1 {
  margin: 0 15px 0 0;
  font-size: 16px;
  color: #fff;
}
.topbar .form-container {
  margin-right: auto;
}
.topbar form {
  display: flex;
  align-items: center;
}

/* Dropdown menu */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  background: #00030e;
  color: yellow;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  outline: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.dropbtn:hover {
  background: #00030e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.dropdown-content {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 240px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}
.dropdown-content a {
  color: #333;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.dropdown-content a:hover {
  background-color: #f0f0f0;
  color: #000;
}
.dropdown:hover .dropdown-content,
.dropdown-content.show {
  display: grid;
  opacity: 1;
  visibility: visible;
}

/* Menu section */
.menu-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.menu-item {
  background: rgba(68, 68, 68, 0.5);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  position: relative;
}
.menu-section h2 {
  font-style: oblique;
  color: white;
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
.header {
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
}
.header-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.header .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
.header h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.header span {
  font-size: 1.5rem;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .header h3 {
    font-size: 2.5rem;
  }
  .header span {
    font-size: 1.2rem;
  }
  .header .overlay {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .header h3 {
    font-size: 1.8rem;
  }
  .header span {
    font-size: 1rem;
  }
  .header .overlay {
    padding: 15px;
  }
}

/* Menu grid */

.menu-grid .container {
  font-family: "YourCustomFont-Bold", sans-serif;
}
