* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background: #f3f4f6;
  padding-top: 100px;
}

/* header */
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0e0e0e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0 20px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 120px;
  height: auto;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.4));
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 20px rgba(251, 146, 60, 0.8));
  transition: 0.8s;
}

.brand {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 35px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  font-family: Bold Sans-Serif;
  background: linear-gradient(90deg, #ffffff, #fff9a5, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
  white-space: nowrap;
}

.tagline {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: capitalize;
  position: relative;
  animation: fadeMove 3s ease-in-out infinite alternate;
  background: linear-gradient(90deg, #fff9a5, #ffffff, #fff9a5, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

.tagline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #fff9a5, #ffffff);
  animation: underlineMove 4s linear infinite;
}

@keyframes fadeMove {
  from {
    transform: translateY(-4px);
    opacity: 0.7;
  }
  to {
    transform: translateY(4px);
    opacity: 1;
  }
}

@keyframes underlineMove {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  margin-right: 2%;
  position: absolute;
  left: 54%;
  transform: translateX(-70%);
}

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

.nav-links li {
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  display: inline;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  font-family:
    poppins,
    bold Sans-Serif;
  background: linear-gradient(90deg, #ffffff, #fff9a5, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #ffffff, #fff9a5, #ffffff, #ffffff);
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

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

/* DROPDOWN MENU */

.dropdown {
  position: relative;
}

/* Dropdown container */

.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  display: flex;
  flex-wrap: wrap;
  width: 830px;
  padding: 18px;
  justify-content: space-between;
  margin: 20px 80px;
  gap: 10px;
  background: linear-gradient(135deg, #1a1a1a, #2b2b2b, #111111);
  border: 1px solid rgba(255, 215, 120, 0.35);
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(255, 200, 80, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  z-index: 999;
}

/* Dropdown items */
.dropdown-menu li {
  width: 30%;
  text-align: center;
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 10px 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff8d6, #ffd86b, #fff2b2, #ffd86b);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
  transition: all 0.3s ease;
}

.dropdown-menu li a::after {
  display: none;
}

/* Hover effect */
.dropdown-menu li a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 215, 100, 0.3);
}

.dropdown a i {
  background: linear-gradient(90deg, #fff8d6, #ffd86b, #fff2b2, #ffd86b);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Arrow rotate */
.dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.3s ease;
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

/* Header Right */

.header-right {
  display: flex;
  width: 30%;
  margin: 2%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-right: 30px;
}

/* Reverse Button */

.reserve-btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff2b2, #ffe18f, #ffd69c);
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  box-shadow:
    0 6px 18px rgba(255, 200, 80, 0.4),
    inset 0 0 8px rgba(255, 255, 255, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  white-space: nowrap;
}

.reserve-btn::after {
  display: none !important;
}

.reserve-btn:hover {
  background: linear-gradient(135deg, #ffd86b, #ffb347, #fff2b2);
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 10px 25px rgba(255, 215, 120, 0.6),
    inset 0 0 10px rgba(255, 255, 255, 0.6);
}

/* User Icons */

.user-icons ul {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: white;
  cursor: pointer;
  gap: 50px;
  margin-right: 10px;
}

.user-icons ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: linear-gradient(90deg, #ffffff, #fff9a5, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
  transition: all 0.3s ease;
}

.user-icons ul li i {
  font-size: 20px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ffffff, #fff9a5, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.user-icons ul li:hover {
  transform: translateY(-3px) scale(1.08);
  text-shadow:
    0 0 8px rgba(255, 221, 142, 0.9),
    0 0 15px rgba(255, 201, 86, 0.7);
  transition: all 0.3s ease;
}

/* ===== HAMBURGER (Mobile) ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff9a5;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== SHINE ANIMATION ===== */
@keyframes shine {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}

/* Hero Section */

.hero {
  width: 100%;
  height: 90vh;
  height: 90dvh;
  position: relative;
  overflow: hidden;
}

/* SLIDER */
.hero-slider {
  width: 100%;
  height: 100%;
  position: absolute;
}

/* SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity, transform;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(65%) blur(0.8px);
  transform: scale(1);
  transition: transform 3.5s linear;
}

.slide.active img {
  transform: scale(1.08);
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding-left: 80px;
  z-index: 2;
}

/* CONTENT */
.hero-content {
  color: #fff;
  max-width: 550px;
  animation: fadeUp 1.2s ease;
}

.hero-content h4 {
  letter-spacing: 3px;
  color: #d4af37;
  margin-bottom: 15px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero-content span {
  color: #d4af37;
}

.hero-content p {
  margin-bottom: 25px;
  color: #ddd;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  background: linear-gradient(135deg, #d4af37, #f7e7a1);
  color: #000;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-btn::after {
  display: none !important;
}

.hero-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Menu Section */
.menu-section {
  padding: 50px 100px;
  position: relative;
  background: linear-gradient(135deg, #0e0e0e, #1a1a1a, #0c0c0c);
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15),
    transparent 70%
  );
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.menu-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 120, 0.12),
    transparent 70%
  );
  bottom: -120px;
  right: -100px;
  pointer-events: none;
}

.menu-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.menu-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  background: linear-gradient(90deg, #fff8d6, #ffd86b, #fff2b2, #ffd86b);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

.menu-title::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 3px;
  background: linear-gradient(90deg, #ffd86b, #fff2b2);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 100, 0.6);
}

.menu-desc {
  font-size: 20px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff8d6, #ffd86b, #fff2b2, #ffd86b);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

/* CATEGORY */
.menu-category {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.menu-category h3 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
  margin-left: 20px;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #fff8d6, #ffd86b, #fff2b2);
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s;
}

.menu-category h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 65%;
  height: 2px;
  background: linear-gradient(90deg, #ffd86b, #fff2b2);
  transition: width 0.4s;
}

.menu-category h3:hover {
  transform: translateY(-3px);
  text-shadow:
    0 0 2px rgba(255, 255, 100, 0.7),
    0 0 50px rgba(255, 200, 80, 0.5);
}

.menu-category h3:hover::after {
  width: 100%;
}

.sub-title {
  font-size: 16px;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 30px;
  margin-left: 20px;
  margin-top: 5px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Menu Item Card */
.menu-item {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
  animation: fadeUp 0.4s ease;
}

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

.menu-item.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.4s ease;
}

.menu-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(212, 175, 55, 0.3);
}

.menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: 0.4s;
  pointer-events: none;
}

.menu-item:hover::before {
  left: 100%;
}

.menu-item::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.menu-item:hover::after {
  opacity: 1;
  transform: scale(1.2);
}

.menu-item img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.menu-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05) contrast(1.05);
}

.menu-item h4 {
  margin: 25px 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
}

/* Price */
.price {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #d4af37;
  margin: 8px 0 14px;
}

/* Action Bar */
.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 30px;
  background: rgba(240, 234, 234, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 5;
  transition: background 0.3s;
}

/* HOVER BAR */
.menu-item:hover .actions {
  background: rgba(255, 255, 255, 0.12);
}

/* Wishlist Icon */
.wishlist {
  font-size: 20px;
  color: #999;
  cursor: pointer;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.wishlist:hover {
  color: #ff4d4d;
  transform: scale(1.2);
}

.wishlist.active {
  color: #ff2e63;
  transform: scale(1.3);
  text-shadow: 0 0 10px rgba(255, 46, 99, 0.6);
}

/* Order Button */
.actions button {
  padding: 7px 18px;
  border: none;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  background: linear-gradient(135deg, #d4af37, #f7e7a1, #d4af37);
  background-size: 200%;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-position 0.35s;
}

.actions button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: 0.4s;
}

.actions button:hover {
  transform: scale(1.12);
  background-position: right;
  box-shadow:
    0 8px 20px rgba(212, 175, 55, 0.5),
    0 0 15px rgba(255, 215, 120, 0.4);
}

.actions button:hover::before {
  left: 100%;
}

.actions button:active {
  transform: scale(0.95);
}

/* Footer */

.footer {
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 215, 120, 0.15);
  color: #ffffff;
  padding: 10px 6%;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 20px;
}

.footer-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-box.brand {
  text-align: left;
}

.footer-box.center-box {
  text-align: center;
  align-items: center;
}

.footer-box.contact-box {
  text-align: left;
  margin-left: 150px;
}

.footer-box h2,
.footer-box h3 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 2px;
  transition: text-shadow 0.3s;
}

.footer-box h2:hover,
.footer-box h3:hover {
  text-shadow: 0 0 6px rgba(255, 215, 120, 0.6);
}

/* TEXT */
.footer-box p {
  font-size: 15px;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-box p i {
  color: #d4af37;
  width: 16px;
  flex-shrink: 0;
}

.footer-box p i:hover {
  text-shadow: 0 0 6px rgba(255, 215, 120, 0.6);
}

.footer-box .follow-text {
  font-size: 16px;
}

.timing-box {
  margin-bottom: 10px;
}

.timing-box p {
  justify-content: center;
  font-size: 16px;
}

.timing-box h3 {
  font-size: 18px;
}

/* Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #d4af37;
  transition:
    transform 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.1);
  background: linear-gradient(135deg, #d4af37, #f7e7a1);
  color: #000;
  box-shadow: 0 0 8px rgba(255, 215, 120, 0.5);
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #999;
}

.footer-bottom a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover,
.footer-bottom a:visited:hover {
  color: #f7e7a1;
  text-decoration: underline;
}

.footer-bottom a:visited {
  color: #d4af37;
}
