/* ===== CSS Variables ===== */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-card: #1a1a1a;
  --dark-border: #2a2a2a;
  --gold: #d4a843;
  --gold-light: #e8c96a;
  --gold-dark: #b08930;
  --white: #f5f5f5;
  --white-muted: #cccccc;
  --red-accent: #c0392b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --transition: all 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold {
  color: var(--gold);
}

/* ===== Navigation ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.nav-logo-img {
  height: 55px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

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

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

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at center, #1a1000 0%, #0a0a0a 70%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 168, 67, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  animation: fadeInUp 1s ease;
}

.hero-logo {
  width: 280px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 30px rgba(212, 168, 67, 0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(212, 168, 67, 0.3);
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--white-muted);
  max-width: 600px;
  margin: 0 auto 35px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-small {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.btn-small:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(212, 168, 67, 0.4);
}

/* ===== Opening Soon Banner ===== */
.opening-soon-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--black);
  text-align: center;
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 999;
  animation: bannerPulse 3s ease-in-out infinite;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.opening-soon-banner p {
  margin: 0;
}

.opening-soon-banner i {
  color: var(--black);
  margin: 0 4px;
}

@keyframes bannerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* ===== Featured Section ===== */
.featured-section {
  padding: 100px 0;
  background: var(--dark);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.featured-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 168, 67, 0.2);
  border-radius: 16px;
  pointer-events: none;
}

.featured-image {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.featured-image-wrapper:hover .featured-image {
  transform: scale(1.03);
}

.featured-text {
  padding: 20px 0;
}

.script-title {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 25px;
  line-height: 1.3;
}

.featured-text p {
  color: var(--white-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ===== Section Titles ===== */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: var(--white-muted);
  font-size: 1.1rem;
  margin-bottom: 50px;
  font-weight: 300;
}

/* ===== About Section ===== */
.about-section {
  padding: 100px 0;
  background: var(--black);
}

.about-content {
  margin-top: 50px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-text p {
  color: var(--white-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.highlight-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 168, 67, 0.1);
}

.highlight-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white);
}

.highlight-card p {
  color: var(--white-muted);
  font-size: 0.95rem;
}

/* ===== Chef Section ===== */
.chef-section {
  padding: 100px 0;
  background: var(--dark);
}

.chef-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.chef-icon {
  position: relative;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(212, 168, 67, 0.2);
}

.chef-icon > i,
.chef-icon > .chef-badge {
  color: var(--black);
}

.chef-badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  background: var(--black);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chef-badge i {
  color: var(--gold);
  font-size: 1.2rem;
}

.chef-icon > i {
  font-size: 4rem;
}

.chef-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.chef-text p {
  color: var(--white-muted);
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

.chef-credentials {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.credential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
}

.credential i {
  font-size: 1rem;
}

/* ===== Menu Section ===== */
.menu-section {
  padding: 100px 0;
  background: var(--black);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.filter-btn {
  background: var(--dark-card);
  color: var(--white-muted);
  border: 1px solid var(--dark-border);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.menu-category {
  margin-bottom: 45px;
  animation: fadeInUp 0.5s ease;
}

.category-title {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}

.category-title.sub-category {
  font-size: 1.6rem;
  margin-top: 30px;
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 40px;
}

.menu-item {
  display: flex;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.menu-item:hover {
  background: rgba(212, 168, 67, 0.03);
  padding-left: 8px;
  border-radius: 4px;
}

.item-name {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
  white-space: nowrap;
}

.item-name em {
  color: var(--white-muted);
  font-size: 0.85rem;
}

.item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
  margin: 0 10px;
  min-width: 20px;
  position: relative;
  top: -4px;
}

.item-price {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

/* ===== Areas / Serving Section ===== */
.areas-section {
  padding: 80px 0;
  background: var(--black);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 30px;
}

.area-tag {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--white-muted);
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}

.area-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
}

.areas-cta-text {
  text-align: center;
  color: var(--white-muted);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
}

.contact-card i {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-card p {
  color: var(--white-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-card a {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.contact-map iframe {
  display: block;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--white-muted);
  font-style: italic;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--white-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: var(--white-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact a {
  color: var(--white-muted);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  color: var(--white-muted);
  font-size: 0.85rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .featured-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .featured-text {
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-bottom: 1px solid var(--dark-border);
  }

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

  .nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid var(--dark-border);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-logo {
    width: 200px;
  }

  .section-title {
    font-size: 2rem;
  }

  .script-title {
    font-size: 2rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .chef-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .chef-icon {
    margin: 0 auto;
    width: 140px;
    height: 140px;
  }

  .chef-icon > i {
    font-size: 3rem;
  }

  .chef-credentials {
    justify-content: center;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .category-title {
    font-size: 1.6rem;
  }

  .category-title.sub-category {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-logo {
    width: 160px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .item-name {
    font-size: 0.88rem;
    white-space: normal;
  }

  .item-price {
    font-size: 0.88rem;
  }
}
