:root {
  --primary-bg: #000000;
  --primary-color:#e6c400;
  --secondary-bg: #1c1c1c;
  --light-bg: #f3f1f1;
  --menu-bg: #e9e8e8;
  --gallery-bg: #000000;
  --chef-bg: #e7e7e7;
  --text-dark: #0d0d0d;
  --text-light: #ffffff;
  --text-gray: #444;
  --text-muted: #888;
  --box-radius: 20px;
  --box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  --transition: 0.3s;
  --font-main: 'Segoe UI', sans-serif;
  --font-size-lg: 3.5rem;
  --font-size-md: 1.2rem;
  --font-size-sm: 18px;
  --section-padding: 100px 20px;
  --container-width: 1100px;
  --menu-container-width: 1200px;
  --gap: 20px;
  --menu-gap: 40px;
  --gallery-gap: 20px;
  --chef-gap: 20px;
  
  --primary-hover: #d96500;
  --bg-white-opacity: rgba(255, 255, 255, 0.8);
  --text-color: #333;
  --heading-size: 2.5em;
  --heading-size-mobile: 1.8em;
  --input-padding: 12px;
  --input-radius: 10px;
  --box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  --form-gap: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
nav {
  background-color: var(--primary-bg);
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 25px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: 'Georgia', serif;
  text-transform: uppercase;
  cursor: pointer;
}

ul.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

ul.nav-links li a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

ul.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

ul.nav-links li a:hover::after {
  width: 100%;
}

ul.nav-links li a:hover {
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.05);
}

ul.nav-links li a.active {
  color: var(--primary-color);
}

.login-btn {
  background-color: var(--primary-color);
  color: #ffffff !important;
  padding: 8px 18px;
  font-weight: 600;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.login-btn:hover {
  background-color: #d6b300;
  color: #bebb00;
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    flex-direction: column;
    background-color: var(--primary-bg);
    display: none;
    gap: 20px;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* Dropdown */
/* .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--secondary-bg);
  min-width: 100px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  z-index: 1000;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: var(--text-light);
  text-decoration: none;
  transition: background var(--transition) ease;
}

.dropdown-content a:hover {
  background-color: var(--primary-color);
  color: var(--primary-bg);
}

.dropdown:hover .dropdown-content {
  display: block;
} */

/* Sections */
section {
  height: 100vh;
  padding: 40px;
}

/* Footer */
footer {
  background-color: var(--primary-bg);
  color: var(--text-light);
  text-align: center;
  padding: 30px 20px;
  margin-top: auto;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
}

.social-links {
  margin-bottom: 15px;
}

.social-links a {
  color: var(--primary-color);
  margin: 0 12px;
  font-size: 22px;
  text-decoration: none;
  transition: color var(--transition);
}

.social-links a:hover {
  color: var(--text-light);
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: var(--primary-color);
  color: var(--primary-bg);
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: background-color var(--transition) ease;
}

#backToTop:hover {
  background-color: #e09e00;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  ul.nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  ul.nav-links li {
    width: 100%;
  }

  ul.nav-links li a {
    display: block;
    width: 100%;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: transparent;
  }

  .dropdown-content a {
    padding-left: 30px;
    background-color: var(--secondary-bg);
  }

  .social-links a {
    font-size: 18px;
    margin: 0 8px;
  }

  footer p {
    font-size: 14px;
  }
}

.slider-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  animation: slideShow 20s infinite ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slider-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.slider-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
  max-width: 700px;
  padding: 20px;
}

.slider-content h1 {
  font-size: var(--font-size-lg);
  margin-bottom: 20px;
}

.slider-content h1 span {
  color: var(--primary-color);
}

.slider-content p {
  font-size: var(--font-size-md);
  line-height: 1.6;
  margin-bottom: 30px;
}

.slider-content a {
  background-color: var(--primary-color);
  color: var(--primary-bg);
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slider-content a:hover {
  background-color: #e09e00;
}

@keyframes slideShow {
  0%, 20% {
    background-image:url(./images/background/background3.png);
  }
  25%, 45% {
    background-image: url(./images/background/background2.png);
  }
  50%, 70% {
    background-image: url(./images/background/background1.png);
  }
  75%, 100% {
    background-image: url(./images/background/background4.png);
  }
}

#menu div:hover {
  transform: translateY(-10px);
}

.about-section {
  background-color: var(--light-bg);
  padding: var(--section-padding);
}

.about-container {
  max-width: var(--container-width);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}

.about-image {
  flex: 1;
}

.about-img {
  width: 90%;
  border-radius: var(--box-radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1;
}

.about-title {
  font-size: 36px;
  color: var(--text-dark);
}

.about-highlight {
  color: var(--primary-color);
}

.about-description {
  margin: 20px 0;
  font-size: var(--font-size-sm);
  color: var(--text-gray);
  line-height: 1.6;
}

.about-menu-link {
  padding: 12px 28px;
  background-color: var(--primary-color);
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* .menu-section {
  background: var(--menu-bg);
  padding: var(--section-padding);
  color: var(--text-light);
}

.menu-container {
  max-width: var(--menu-container-width);
  margin: auto;
  text-align: center;
}

.menu-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #000000;
}

.menu-highlight {
  color: var(--primary-color);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--menu-gap);
}

.menu-item {
  background: var(--secondary-bg);
  border-radius: var(--box-radius);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s;
}

.menu-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-item-content {
  padding: 25px;
}

.menu-item-title {
  margin: 0 0 10px;
  font-size: 24px;
}

.menu-item-desc {
  color: #ccc;
}

.menu-item-price {
  color: var(--primary-color);
  font-size: 18px;
} */

.gallery-section {
  background-color: var(--gallery-bg);
  padding: 90px 20px;
}

.gallery-container {
  max-width: var(--container-width);
  margin: auto;
  text-align: center;
}

.gallery-title {
  font-size: 36px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.gallery-highlight {
  color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--gallery-gap);
}

.gallery-img {
  width: 100%;
  border-radius: 15px;
  transition: transform var(--transition);
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.chef-section {
  background-color: var(--chef-bg);
  padding: 80px 20px;
}

.chef-container {
  max-width: var(--container-width);
  margin: auto;
  text-align: center;
}

.chef-title {
  font-size: 36px;
  margin-bottom: 10px;
}

.chef-highlight {
  color: var(--primary-color);
}

.chef-intro {
  color: #555;
  font-size: var(--font-size-sm);
  max-width: 700px;
  margin: 0 auto 30px;
}

.chef-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--chef-gap);
}

.chef-img-wrapper {
  flex: 1;
  min-width: 300px;
}

.chef-img {
  width: 70%;
  border-radius: var(--box-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chef-details {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

.chef-name {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.chef-bio {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-gray);
}

.chef-rating {
  margin-top: 15px;
}

.chef-rating .fa-star,
.chef-rating .fa-star-half-stroke {
  color: var(--primary-color);
}

.chef-rating-text {
  margin-left: 10px;
  color: var(--text-muted);
}

/* Responsive Navbar */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}
.hamburger span {
  height: 4px;
  width: 28px;
  background: var(--primary-color, #f8b400);
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.4s;
}

/* Hamburger animation when open */
/* .hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile styles */
/*@media (max-width: 900px) {
  nav {
    flex-direction: row;
    align-items: center;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  .logo {
    font-size: 22px;
    z-index: 1002;
  }
  .hamburger {
    display: flex;
  }
  ul.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70vw;
    height: 100vh;
    background: var(--primary-bg, #0d0d0d);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 30px 30px 30px;
    gap: 18px;
    transition: right 0.4s;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    z-index: 1000;
  }
  ul.nav-links.active {
    right: 0;
  }
  ul.nav-links li {
    width: 100%;
    text-align: left;
  }
  ul.nav-links li a {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 12px 0;
  }
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: #1c1c1c;
    margin-top: 0;
  }
} */

/* Optional: Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* contact */
#contact {
  height: 100vh;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.map-section {
  flex: 1;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-section {
  flex: 1;
  background: var(--bg-white-opacity);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--form-gap);
  box-shadow: var(--box-shadow);
}

.contact-section h2 {
  font-size: var(--heading-size);
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1em;
  color: var(--text-color);
}

.contact-section form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.contact-section input,
.contact-section textarea {
  padding: var(--input-padding);
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: var(--input-radius);
  font-size: 1em;
  background-color: #fff;
}

.contact-section button {
  background-color: var(--primary-color);
  color: white;
  padding: 14px;
  font-size: 1em;
  border: none;
  border-radius: var(--input-radius);
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-section button:hover {
  background-color: var(--primary-hover);
}

@media (max-width: 768px) {
  #contact {
    flex-direction: column;
    height: auto;
  }

  .map-section,
  .contact-section {
    width: 100%;
    height: 50vh;
  }

  .contact-section {
    border-radius: 0;
    padding: 20px;
  }

  .contact-section h2 {
    font-size: var(--heading-size-mobile);
  }
}


:root {
  --primary-color: #e6c400;
  --menu-bg: #111;
  --secondary-bg: rgba(255, 255, 255, 0.05);
  --section-padding: 80px 20px;
  --text-light: #fff;
  --menu-container-width: 1200px;
  --menu-gap: 40px;
  --box-radius: 20px;
}

.menu-section {
  background: var(--menu-bg);
  padding: var(--section-padding);
  color: var(--text-light);
  overflow: hidden;
}

.menu-container {
  max-width: var(--menu-container-width);
  margin: auto;
  text-align: center;
  animation: fadeInUp 1.2s ease forwards;
}

.menu-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #ffffff;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.menu-highlight {
  color: var(--primary-color);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--menu-gap);
  perspective: 1000px;
}

.menu-item {
  background: var(--secondary-bg);
  border-radius: var(--box-radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(6px);
  animation: fadeIn 1.5s ease-in-out forwards;
}

.menu-item:hover {
  transform: rotateY(6deg) scale(1.03);
  box-shadow: 0 16px 40px rgba(230, 196, 0, 0.4);
}

.menu-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-img {
  transform: scale(1.05);
}

.menu-item-content {
  padding: 25px;
  text-align: left;
}

.menu-item-title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.menu-item-desc {
  color: #ccc;
  font-size: 15px;
  margin-bottom: 12px;
}

.menu-item-price {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive Padding */
@media (max-width: 768px) {
  .menu-title {
    font-size: 36px;
  }

  .menu-item-content {
    text-align: center;
  }
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-content {
  max-width: 600px;
  text-align: center;
  color: #fff;
  background: #222;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.5s ease;
}

.lightbox img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}
.lightbox-content {
  position: relative;
  max-width: 600px;
  text-align: center;
  color: #fff;
  background: #222;
  padding: 30px;
  border-radius: 10px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-nav {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.nav-arrow {
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-color);
  user-select: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.nav-arrow:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

