/* Custom CSS Variables */
:root {
  --color-bg: #0d0d0d;
  --color-card: #161616;
  --color-text: #e5e5e5;
  --color-muted: #a3a3a3;
  --color-accent: #d4af37; /* Gold theme accent */
  --color-accent-hover: #f1c40f;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  padding: 4rem 0;
}

.section-tag {
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-muted);
  max-width: 600px;
}

.text-center {
  text-align: center;
}

.text-center p {
  margin: 0 auto;
}

/* Layout Grids */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.70rem;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
}

.btn-outline {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: #000;
}

/* Header & Mobile Navigation */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid #222;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 40px;
  width: auto;
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-text);
  position: relative;
  transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.3s;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Mobile Menu Overlay */
.nav-menu {
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background-color: var(--color-card);
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  display: none;
  border-bottom: 1px solid #222;
}

.nav-menu.active {
  display: flex;
}

@media (min-width: 992px) {
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    background: none;
    padding: 0;
    align-items: center;
    gap: 2rem;
    border: none;
  }
}

/* Hero Section */
.hero {
  padding: 6rem 0 4rem; 
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 0.8rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-title em {
  color: var(--color-accent);
  font-style: italic;
}

.hero-desc {
  color: var(--color-muted);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 576px) {
  .hero-actions { flex-direction: row; }
  .hero-title { font-size: 3.5rem; }
}

/* Feature Cards */
.feature-card {
  background: var(--color-card);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #222;
}

.feature-num {
  font-family: var(--font-heading);
  color: var(--color-accent);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Menu Section */
.menu-category {
  background-color: var(--color-card);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #222;
}

.category-sub {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.menu-list {
  list-style: none;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 2px solid #282828;
  background: #00000063;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item h4 {
  font-size: 1rem;
  color: var(--gold-bright);
}

.menu-item p {
  color: var(--color-muted);
  font-size: 0.85rem;
}

.price {
  color: var(--color-accent);
  font-weight: 600;
}

/* Product Cards */
.product-card {
  background: var(--color-card);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #222;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin: 0.5rem 0 1rem;
}

.product-price {
  color: var(--color-accent);
  font-weight: 600;
}

/* Placeholders */
.image-placeholder {
  background: #1f1f1f;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--color-muted);
  border: 1px dashed #333;
}

/* Footer */
.footer {
  background-color: #050505;
  padding: 4rem 0 2rem;
  border-top: 1px solid #222;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--color-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h5 {
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.footer-links a {
  display: block;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  border-top: 1px solid #1f1f1f;
  padding-top: 2rem;
  color: var(--color-muted);
  font-size: 0.85rem;
}

@media (min-width: 320px) and (max-width:767px){
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Floating Action Buttons Container */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Individual Circular Buttons */
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

/* Call Button Styling */
.float-call {
  background-color: var(--color-accent, #cd8673);
}

/* WhatsApp Button Styling */
.float-wa {
  background-color: #25D366;
}

/* Hover & Active Tap Effects */
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.float-btn:active {
  transform: translateY(0) scale(0.95);
}
.float-call {
    background-color: #cd8673 ;
}
.flexcol{display: flex;width: 100%;gap: 30px;align-items: self-start;}
.menuimg{ width: 40%; }
.menuimg img{ width: 100%; border-radius: 30px;}
.flexcol .menu-grid{width: 100%;}



/* Video Wrapper */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Fullscreen Video Cover */
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Tint Overlay for Text Contrast */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* Adjust opacity between 0.4 and 0.7 */
}
footer, .visit{background: #000;}
.table-graphic{opacity: 0.9;}
.menu1{ width: 50%;}
.menu2{ width: 50%; left: 50%;}
.menu1 .video-overlay, .menu2 .video-overlay{background: rgba(0, 0, 0, 0.80);}
.brand{padding: 5px 0 2px;}
.menu-item h4 { 
    font-family: 'Manrope', sans-serif !important;
}



