:root{
  --charcoal:#050505;
  --charcoal-2:#0c0b0b;
  --ember:#E2702B;
  --ember-light:#F2955C;
  --brass:#C9A227;
  --cream:#F4EBDD;
  --cream-2:#EAE0CF;
  --maroon:#6B1E23;
  --ash:#8C8078;
  --text-dim:#C9BEB3;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Work Sans', sans-serif;
  background:var(--cream);
  color:var(--charcoal);
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Fraunces', serif;
  font-weight:600;
  line-height:1.08;
}
.eyebrow{
  font-family:'IBM Plex Mono', monospace;
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--ember);
  display:flex;
  align-items:center;
  gap:.6em;
}
.eyebrow::before{
  content:'';
  width:22px; height:1px;
  background:var(--ember);
  display:inline-block;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:1160px; margin:0 auto; padding:0 32px;}
@media(max-width:640px){ .wrap{padding:0 20px;} }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important;}
}

/* ---------- TOP BAR ---------- */
.topbar{
  position:fixed; top:0; left:0; right:0; z-index:101;
  background:#000;
  border-bottom:1px solid rgba(201,162,39,0.15);
}
.topbar-inner{
  max-width:1160px; margin:0 auto;
  padding:0 32px;
  display:flex; align-items:center; justify-content:space-between;
  height:42px;
  font-family:'IBM Plex Mono', monospace;
  font-size:.74rem;
  color:var(--text-dim);
  letter-spacing:.02em;
}
.topbar-hours{display:flex; align-items:center; gap:8px;}
.topbar-hours svg{width:14px; height:14px; color:var(--brass); flex-shrink:0;}
.topbar-contact{display:flex; align-items:center; gap:26px;}
.topbar-contact a{
  display:flex; align-items:center; gap:7px;
  color:var(--text-dim);
  transition:color .2s;
}
.topbar-contact a:hover, .topbar-contact a:focus-visible{color:var(--cream);}
.topbar-contact svg{width:13px; height:13px; color:var(--brass); flex-shrink:0;}
@media(max-width:760px){
  .topbar-contact span.tc-email{display:none;}
}
@media(max-width:520px){
  .topbar-inner{font-size:.66rem; gap:10px;}
  .topbar-contact{gap:16px;}
}

/* ---------- NAV & SIDEBAR ---------- */
header{
  position:fixed; top:42px; left:0; right:0; z-index:100;
  background:rgba(31,24,21,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(201,162,39,0.15);
}
@media(max-width:520px){ header{top:34px;} }

nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 32px;
  max-width:1160px; margin:0 auto;
  gap:20px;
}
.nav-left{
  display:flex; align-items:center; gap:16px;
}
.logo{
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:1.3rem;
  color:var(--cream);
  letter-spacing:.01em;
}
.logo span{color:var(--ember);}

.menu-toggle{
  display:flex; align-items:center; justify-content:center;
  background:none; border:none; color:var(--cream);
  font-size:1.3rem; cursor:pointer; padding:4px;
  transition:color .2s;
  position:relative; z-index:103;
}
.menu-toggle:hover, .menu-toggle:focus-visible{color:var(--ember);}

.nav-cta{
  background:var(--ember);
  color:var(--cream) !important;
  padding:10px 22px;
  border-radius:2px;
  font-weight:600;
  font-size:.88rem;
  transition:background .2s, transform .2s;
}
.nav-cta:hover, .nav-cta:focus-visible{background:var(--ember-light); transform:translateY(-1px);}

.nav-backdrop{
  position:fixed; inset:0; z-index:104;
  background:rgba(0,0,0,.55);
  opacity:0; visibility:hidden;
  transition:opacity .3s ease;
}
.nav-backdrop.open{opacity:1; visibility:visible;}

/* Drawer Panel */
.nav-links{
  position:fixed; top:0; left:0; bottom:0; z-index:105;
  width:min(420px, 88vw);
  height:100vh;
  display:flex; flex-direction:column; gap:0;
  list-style:none;
  background:#0B0705;
  padding:110px 0 30px;
  transform:translateX(-100%);
  transition:transform .35s ease;
  overflow-y:auto;
  border-right:1px solid rgba(244,235,221,.08);
  scrollbar-width: thin;
  scrollbar-color: #ffffff transparent;
}
.nav-links.open{transform:translateX(0);}

/* Sleek custom vertical scrollbar */
.nav-links::-webkit-scrollbar {
  width: 3px;
}
.nav-links::-webkit-scrollbar-track {
  background: transparent;
}
.nav-links::-webkit-scrollbar-thumb {
  background: #ffffff;
}

.nav-badge{
  display:flex; justify-content:center; align-items:center;
  margin:0 !important;
  padding:0 14px 46px;
  border-bottom:none !important;
}
.nav-badge svg{width:140px; height:140px;}

.nav-links li{border-bottom:1px solid rgba(244,235,221,.12); margin:0 22px;}
.nav-close-wrap{border-bottom:none !important; margin:0 !important; height:0;}

.nav-links a{
  padding:26px 8px;
  display:flex;
  align-items:center;
  gap:12px;
  font-family:'IBM Plex Mono', monospace;
  font-size:.82rem;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--cream);
  transition:color .2s;
}
.nav-links a::before{
  content:'';
  width:8px; height:8px;
  border:1.5px solid var(--ash);
  transform:rotate(45deg);
  flex-shrink:0;
  transition:border-color .2s;
}
.nav-links a.active{color:var(--ember);}
.nav-links a.active::before{
  border-color:var(--ember);
  background:var(--ember);
}
.nav-links a:hover, .nav-links a:focus-visible{color:var(--cream);}
.nav-links a:hover::before, .nav-links a:focus-visible::before{border-color:var(--ember);}

.nav-close{
  display:none;
  position:absolute; top:22px; right:22px; z-index:106;
  width:36px; height:36px;
  align-items:center; justify-content:center;
  background:none; border:1px solid rgba(244,235,221,.4); border-radius:50%;
  color:var(--cream);
  font-size:1.15rem; line-height:1; cursor:pointer; padding:0;
  transition:color .2s, border-color .2s;
}
.nav-close:hover, .nav-close:focus-visible{color:var(--ember); border-color:var(--ember);}
.nav-close.open{display:flex;}

/* Brown Contact Box inside Sidebar below Order Now */
.nav-links li.menu-contact-box {
  background: #191412 !important;
  margin: 30px 22px 20px 22px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(201, 162, 39, 0.2) !important;
  border-radius: 4px;
}
.menu-contact-box .box-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--ember);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.menu-contact-box .box-phone {
  padding: 0 !important;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88rem !important;
  color: var(--cream) !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.menu-contact-box .box-phone::before {
  display: none !important;
}
.menu-contact-box .box-phone svg {
  width: 15px;
  height: 15px;
  color: var(--brass);
}

a:focus-visible, button:focus-visible{
  outline:2px solid var(--brass);
  outline-offset:3px;
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  min-height:100vh;
  background:radial-gradient(ellipse at 50% 120%, #3a241b 0%, var(--charcoal) 55%, #140f0d 100%);
  display:flex; align-items:center;
  overflow:hidden;
}
#embers{position:absolute; inset:0; width:100%; height:100%;}
.hero-inner{
  position:relative; z-index:2;
  max-width:1160px; margin:0 auto;
  padding:140px 32px 100px;
  width:100%;
  text-align:center;
}
.hero-eyebrow{
  justify-content:center;
  margin-bottom:22px;
}
.hero h1{
  color:var(--cream);
  font-size:clamp(2.6rem, 6vw, 5rem);
  max-width:900px;
  margin:0 auto 22px;
}
.hero h1 em{
  font-style:italic;
  color:var(--ember-light);
}
.hero p{
  color:var(--text-dim);
  font-size:1.1rem;
  max-width:520px;
  margin:0 auto 40px;
}
.hero-actions{
  display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
}
.btn-primary{
  background:var(--ember);
  color:var(--cream);
  padding:15px 34px;
  border-radius:2px;
  font-weight:600;
  font-size:.95rem;
  transition:background .2s, transform .2s;
  display:inline-block;
  border:1px solid var(--ember);
}
.btn-primary:hover, .btn-primary:focus-visible{background:var(--ember-light); border-color:var(--ember-light); transform:translateY(-2px);}
.btn-ghost{
  color:var(--cream);
  padding:15px 34px;
  border:1px solid rgba(244,235,221,.3);
  border-radius:2px;
  font-weight:500;
  font-size:.95rem;
  transition:border-color .2s, background .2s;
}
.btn-ghost:hover, .btn-ghost:focus-visible{border-color:var(--brass); background:rgba(201,162,39,.08);}

.hero-scroll{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%);
  color:var(--ash); font-family:'IBM Plex Mono', monospace; font-size:.68rem;
  letter-spacing:.14em; text-transform:uppercase;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  z-index:2;
}
.hero-scroll::after{
  content:''; width:1px; height:36px; background:linear-gradient(var(--brass), transparent);
  animation:scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine{
  0%{opacity:.2; transform:scaleY(.3); transform-origin:top;}
  50%{opacity:1; transform:scaleY(1); transform-origin:top;}
  100%{opacity:.2; transform:scaleY(.3); transform-origin:top;}
}

/* ---------- SECTION SHARED ---------- */
section{padding:110px 0;}
.section-head{margin-bottom:56px; max-width:640px;}
.section-head h2{font-size:clamp(1.9rem, 3.4vw, 2.7rem); margin-top:16px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center .eyebrow{justify-content:center;}

/* ---------- ABOUT ---------- */
.about{background:var(--cream);}
.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}
.about-copy p{
  font-size:1.02rem;
  line-height:1.75;
  color:#4a4038;
  margin-bottom:18px;
}
.about-copy p:first-of-type{
  font-family:'Fraunces', serif;
  font-size:1.3rem;
  color:var(--charcoal);
  font-weight:500;
  line-height:1.5;
}
.stat-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  margin-top:40px;
  border-top:1px solid rgba(107,30,35,.15);
  padding-top:32px;
}
.stat{border-left:1px solid rgba(107,30,35,.15); padding-left:20px;}
.stat:first-child{border-left:none; padding-left:0;}
.stat .num{
  font-family:'Fraunces', serif;
  font-size:2.1rem;
  font-weight:600;
  color:var(--maroon);
}
.stat .label{
  font-size:.8rem;
  color:var(--ash);
  font-family:'IBM Plex Mono', monospace;
  letter-spacing:.03em;
}
.about-visual{
  position:relative;
  aspect-ratio:4/5;
  background:linear-gradient(160deg, var(--maroon), var(--charcoal));
  border-radius:2px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.about-visual svg{width:56%; opacity:.9;}
.about-visual::after{
  content:'sigdi — n. a clay brazier for slow, live-fire cooking';
  position:absolute; bottom:0; left:0; right:0;
  padding:18px 22px;
  font-family:'IBM Plex Mono', monospace;
  font-size:.72rem;
  color:var(--cream);
  background:rgba(0,0,0,.35);
  letter-spacing:.02em;
}

@media(max-width:860px){
  .about-grid{grid-template-columns:1fr; gap:44px;}
  .about-visual{order:-1; aspect-ratio:16/9;}
}

/* ---------- MENU ---------- */
.menu-section{background:var(--charcoal); color:var(--cream);}
.menu-section .section-head p{color:var(--text-dim); margin-top:14px; font-size:1rem; max-width:560px;}
.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:2px;
  background:rgba(244,235,221,.08);
}
.ticket{
  background:var(--charcoal-2);
  padding:28px 26px;
  transition:background .25s;
  position:relative;
}
.ticket:hover{background:#332822;}
.ticket .tk-no{
  font-family:'IBM Plex Mono', monospace;
  font-size:.68rem;
  color:var(--brass);
  letter-spacing:.1em;
}
.ticket h4{
  font-size:1.2rem;
  margin:10px 0 8px;
  color:var(--cream);
}
.ticket p{
  font-size:.85rem;
  color:var(--ash);
  line-height:1.5;
}
.ticket .tag{
  display:inline-block;
  margin-top:14px;
  font-family:'IBM Plex Mono', monospace;
  font-size:.65rem;
  letter-spacing:.08em;
  color:var(--ember-light);
  border:1px solid rgba(226,112,43,.4);
  padding:3px 9px;
  border-radius:20px;
}
.menu-foot{
  text-align:center;
  margin-top:44px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials{background:var(--cream-2);}
.t-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
  background:rgba(107,30,35,.12);
}
.t-card{
  background:var(--cream);
  padding:32px 28px;
}
.t-card .quote-mark{
  font-family:'Fraunces', serif;
  font-size:2.6rem;
  color:var(--brass);
  line-height:1;
  display:block;
  margin-bottom:6px;
}
.t-card p.quote{
  font-size:.95rem;
  line-height:1.65;
  color:#4a4038;
  margin-bottom:20px;
  min-height:96px;
}
.t-name{
  font-family:'IBM Plex Mono', monospace;
  font-size:.75rem;
  letter-spacing:.05em;
  color:var(--maroon);
  text-transform:uppercase;
}
@media(max-width:860px){ .t-grid{grid-template-columns:1fr;} }

/* ---------- STRENGTHS ---------- */
.strengths{background:var(--cream);}
.strength-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:36px;
}
.strength-item{text-align:left;}
.strength-icon{
  width:44px; height:44px;
  margin-bottom:18px;
  color:var(--ember);
}
.strength-item h4{font-size:1.05rem; margin-bottom:8px;}
.strength-item p{font-size:.88rem; color:var(--ash); line-height:1.55;}
@media(max-width:860px){ .strength-grid{grid-template-columns:repeat(2,1fr); gap:32px;} }
@media(max-width:480px){ .strength-grid{grid-template-columns:1fr;} }

/* ---------- ORDER CTA ---------- */
.order-cta{
  background:linear-gradient(135deg, var(--maroon), #4a1418);
  color:var(--cream);
  position:relative;
  overflow:hidden;
}
.order-cta::before{
  content:'';
  position:absolute; top:-30%; right:-10%;
  width:420px; height:420px;
  background:radial-gradient(circle, rgba(226,112,43,.25), transparent 70%);
  border-radius:50%;
}
.order-inner{
  position:relative; z-index:1;
  text-align:center;
  max-width:640px; margin:0 auto;
}
.order-inner h2{font-size:clamp(1.9rem,3.6vw,2.6rem); color:var(--cream); margin-bottom:18px;}
.order-inner p{color:var(--text-dim); margin-bottom:36px; font-size:1.02rem;}
.platform-links{
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  margin-top:16px;
}
.platform-links a{
  background:rgba(244,235,221,.08);
  border:1px solid rgba(244,235,221,.25);
  padding:12px 24px;
  border-radius:2px;
  font-size:.88rem;
  font-weight:500;
  transition:background .2s, border-color .2s;
}
.platform-links a:hover, .platform-links a:focus-visible{background:rgba(244,235,221,.15); border-color:var(--brass);}

/* ---------- FOOTER ---------- */
footer{
  background:var(--charcoal);
  color:var(--text-dim);
  padding:70px 0 30px;
  font-size:.9rem;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:50px;
  border-bottom:1px solid rgba(244,235,221,.1);
}
.footer-logo{
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:1.3rem;
  color:var(--cream);
  margin-bottom:14px;
  display:block;
}
.footer-logo span{color:var(--ember);}
footer h5{
  font-family:'IBM Plex Mono', monospace;
  font-size:.72rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--brass);
  margin-bottom:18px;
}
footer ul{list-style:none;}
footer li{margin-bottom:10px;}
footer a{color:var(--text-dim); transition:color .2s;}
footer a:hover, footer a:focus-visible{color:var(--cream);}
.footer-bottom{
  padding-top:26px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:.78rem;
  color:var(--ash);
}
@media(max-width:760px){
  .footer-grid{grid-template-columns:1fr 1fr; row-gap:36px;}
}
/* Hero Logo Image Styling */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 30px; /* थोडा गॅप कमी केला */
}

.hero-logo-img {
  width: clamp(220px, 32vw, 420px);   /* पहिले 320px ते 620px होते, आता लहान करून 220px ते 420px केले आहे */
  max-width: 80%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 26px rgba(0,0,0,0.55));
}

@media (max-width: 480px) {
  .hero-logo-img {
    width: clamp(180px, 65vw, 280px); /* मोबाईलवर सुद्धा व्यवस्थित बारीक दिसेल */
  }
}
/* Base Styles & Theme Variables */
:root {
  --bg-dark: #121212;
  --bg-card: #1a1a1a;
  --accent-gold: #d97724; /* Warm copper/orange gold */
  --accent-light: #f4a261;
  --text-main: #d1d1d1;
  --text-white: #ffffff;
  --border-gold: rgba(217, 119, 36, 0.4);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Georgia', 'Times New Roman', serif;
  margin: 0;
  padding: 40px 20px;
}

/* ---------- MANNAN SECTION (LUXURY TYPOGRAPHY) ---------- */
.mannan-section {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 80px 24px;
}

/* Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.brand-title {
  color: var(--brass);
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  letter-spacing: 0.35em; /* Expanded tracking for high-end look */
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider::before,
.divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background-color: rgba(201, 162, 39, 0.3);
  margin: 0 14px;
}

.divider span {
  color: var(--brass);
  font-size: 0.75rem;
}

/* Intro Paragraph (Classy Lead Paragraph) */
.intro-text {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px auto;
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  line-height: 1.95; /* Elegant line spacing */
  letter-spacing: 0.02em;
  color: var(--cream);
  font-weight: 400;
}

.intro-text strong {
  color: var(--ember-light);
  font-weight: 600;
}

/* Content Grid */
/* ---------- GRAND & LUXURIOUS CONTENT GRID ---------- */
.mannan-section {
  max-width: 1340px; /* Wider container for maximum impact */
  margin: 0 auto;
  position: relative;
  padding: 100px 32px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr; /* Larger side cards with prominent middle image */
  gap: 48px;
  align-items: stretch;
  margin-top: 20px;
}

/* LEFT COLUMN: The Mannan Philosophy */
.philosophy-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
  background: rgba(25, 20, 18, 0.6);
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card-title {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 2.1rem; /* Much larger headline */
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  font-weight: 600;
}

.card-description {
  font-size: 1.08rem; /* Larger body text */
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 36px;
  font-weight: 400;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.feature-list .icon {
  color: var(--ember);
  font-size: 1.1rem; /* Bolder diamond icon */
  margin-top: 2px;
}

.feature-list strong {
  display: block;
  font-family: 'Work Sans', sans-serif;
  color: var(--cream);
  font-size: 1.12rem; /* Premium feature titles */
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  font-weight: 600;
}

.feature-list p {
  margin: 0;
  font-size: 0.95rem; /* Clean readable subtext */
  color: var(--ash);
  line-height: 1.65;
}

/* MIDDLE COLUMN: Featured Image */
.image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 540px; /* Taller, prominent image frame */
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--charcoal-2);
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.image-wrapper:hover .featured-img {
  transform: scale(1.03); /* Subtle zoom effect on hover */
}

/* RIGHT COLUMN: Hours & Location Info Box */
.info-card {
  border: 1px solid rgba(201, 162, 39, 0.3); /* Regal brass frame */
  padding: 50px 38px; /* Roomy internal spacing */
  text-align: center;
  background: linear-gradient(180deg, #181310 0%, #110d0b 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}

.info-heading {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--brass);
  font-size: 0.92rem; /* Bold uppercase sub-headers */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.info-detail {
  margin: 8px 0;
  font-size: 1.05rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.info-detail.highlight {
  color: var(--ember-light);
  font-weight: 700;
  font-size: 1.35rem; /* Large featured operating hours */
  margin-top: 10px;
}

.card-diamond {
  color: var(--brass);
  margin: 32px 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

.address-group {
  margin-top: 24px;
  text-align: center;
}

.address-group strong {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--cream);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.address-group p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ash);
  line-height: 1.7;
}

/* RESPONSIVE LAYOUT FOR TABLETS & MOBILE */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .image-wrapper {
    min-height: 400px;
  }
}
/* ---------- MISSION WITH A SOUL SECTION ---------- */
.mission-section {
  background: var(--charcoal);
  color: var(--cream);
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 620px;
}

/* Left Column - Ambiance Image */
.mission-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background-color: var(--charcoal-2);
  position: relative;
}

.mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Column - Text Content */
.mission-content {
  padding: 80px 60px;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.mission-content .eyebrow {
  justify-content: center;
  color: var(--ember);
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.divider-gold {
  color: var(--brass);
  font-size: 0.8rem;
  margin-bottom: 24px;
  opacity: 0.7;
}

.mission-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 28px;
  font-weight: 500;
}

.mission-lead {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.7;
}

.mission-text {
  font-size: 0.98rem;
  color: var(--ash);
  line-height: 1.85;
  margin-bottom: 20px;
}

.mission-highlight {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin: 8px 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mission-cta {
  margin-top: 36px;
}

.mission-cta .btn-ghost {
  display: inline-block;
  padding: 14px 38px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--brass);
  color: var(--cream);
  transition: all 0.3s ease;
}

.mission-cta .btn-ghost:hover {
  background: var(--brass);
  color: var(--charcoal);
  border-color: var(--brass);
}

/* Responsive View for Mobile/Tablets */
@media (max-width: 960px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-image-wrap {
    min-height: 380px;
  }
  
  .mission-content {
    padding: 60px 24px;
  }
}
/* ---------- TESTIMONIALS SECTION ---------- */
.testimonials-section {
  background: radial-gradient(circle at 50% 50%, #1a1512 0%, #0d0a08 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.testimonials-section .section-head h2 {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  margin-top: 10px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.testimonial-track-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.testimonial-cards {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px); /* 3 cards visible on desktop */
  background: #110d0b;
  border: 1px solid rgba(244, 235, 221, 0.08);
  padding: 36px 28px 28px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
}

/* Watermark Quote Icon */
.card-quote-bg {
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(244, 235, 221, 0.04);
  pointer-events: none;
}

/* Star Rating */
.star-rating {
  color: var(--ember);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

/* Quote Content */
.quote-text {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* User Info Footer */
.user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--charcoal-2);
  background-size: cover;
  background-position: center;
  border: 2px solid var(--ember);
  flex-shrink: 0;
}

.user-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}

/* Navigation Arrows */
.carousel-arrow {
  background: rgba(25, 20, 18, 0.8);
  border: 1px solid var(--ember);
  color: var(--ember);
  width: 44px;
  height: 44px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.carousel-arrow.prev { margin-right: 18px; }
.carousel-arrow.next { margin-left: 18px; }

.carousel-arrow:hover {
  background: var(--ember);
  color: var(--cream);
  transform: scale(1.05);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px); /* 2 cards visible on tablet */
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 100%; /* 1 card visible on mobile */
  }
  .carousel-arrow {
    display: none; /* Hide side arrows on mobile */
  }
}
/* ---------- DELIGHTFUL JOURNEY SECTION ---------- */
.journey-section {
  background: #120e0c; /* Deep rich dark background */
  color: var(--cream);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.journey-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Text on left, image on right */
  align-items: center;
  min-height: 640px;
}

/* Left Column - Content */
.journey-content {
  padding: 90px 70px 100px 80px;
  position: relative;
  max-width: 720px;
  margin: 0 0 0 auto;
}

.journey-content .eyebrow {
  color: var(--ember);
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.journey-content-centered {
  text-align: center;
}

.journey-content-centered .eyebrow {
  justify-content: center;
}

.journey-content-centered .divider-gold {
  text-align: center;
}

.journey-content-centered .journey-cta {
  display: flex;
  justify-content: center;
}

.journey-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.journey-subhead {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--ember-light);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.journey-text {
  font-size: 0.96rem;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 36px;
}

.journey-cta .btn-ghost {
  display: inline-block;
  padding: 14px 38px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--brass);
  color: var(--cream);
  transition: all 0.3s ease;
}

.journey-cta .btn-ghost:hover {
  background: var(--brass);
  color: var(--charcoal);
  border-color: var(--brass);
}

/* Luxury Bottom-Left Badge (Replaces doodle/sketch) */
.journey-badge {
  position: absolute;
  bottom: 30px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(25, 20, 18, 0.85);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 2px;
}

.journey-badge .jb-number {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--brass);
  font-weight: 600;
}

.journey-badge .jb-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--ash);
  text-transform: uppercase;
}

/* Right Column - Image */
.journey-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 580px;
  background-color: var(--charcoal-2);
  position: relative;
}

.journey-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive View */
@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-content {
    padding: 70px 30px;
    margin: 0 auto;
  }

  .journey-image-wrap {
    min-height: 400px;
    order: -1; /* Image moves to top on mobile */
  }

  .journey-badge {
    position: static;
    margin-top: 30px;
    display: inline-flex;
  }
}
/* ---------- OUR STRENGTH GALLERY SECTION ---------- */
.strength-gallery-section {
  background: #110d0b;
  padding: 100px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.strength-gallery-section .section-head h2 {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  margin-top: 10px;
}

.strength-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.strength-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.strength-card:hover {
  transform: translateY(-8px);
  border-color: var(--brass);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.strength-img-box {
  position: relative;
  width: 100%;
  height: 480px; /* Tall portrait card frame */
  background-color: var(--charcoal-2);
}

.strength-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.strength-card:hover .strength-bg-img {
  transform: scale(1.06);
}

/* Dark Gradient Overlay for Text Readability */
.strength-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 40%, rgba(10, 8, 7, 0.92) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 30px 20px;
  text-align: center;
}

/* Custom Gold Icons */
.strength-icon-wrap {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  transition: color 0.3s ease, transform 0.3s ease;
}

.strength-card:hover .strength-icon-wrap {
  color: var(--ember-light);
  transform: scale(1.1);
}

.strength-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.strength-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .strength-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .strength-img-box {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .strength-cards-grid {
    grid-template-columns: 1fr;
  }
}
/* ---------- AUTO-SCROLLING AMBIANCE GALLERY (BIGGER IMAGES) ---------- */
.look-gallery-section {
  background: #0d0a08;
  padding: 100px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.look-gallery-header {
  text-align: center;
  margin-bottom: 45px;
  padding: 0 20px;
}

.look-gallery-header h2 {
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  margin-top: 10px;
}

/* Continuous Infinite Scroll Container */
.look-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

/* Gradient Fade Effects on Edges */
.look-slider-wrapper::before,
.look-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.look-slider-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #0d0a08 0%, transparent 100%);
}

.look-slider-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #0d0a08 0%, transparent 100%);
}

/* Smooth Infinite Animation Track (Sized for 480px slides) */
.look-slider-track {
  display: flex;
  gap: 28px;
  width: calc(480px * 10 + 28px * 10);
  animation: infiniteGalleryScroll 35s linear infinite;
}

/* Pause animation on hover */
.look-slider-track:hover {
  animation-play-state: paused;
}

/* Increased Slide Frame Dimensions */
.look-slide {
  width: 480px;      /* Increased width */
  height: 320px;     /* Increased height */
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background-color: var(--charcoal-2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.look-slide:hover {
  border-color: var(--brass);
  transform: translateY(-6px);
}

.look-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Keyframes adjusted for bigger widths */
@keyframes infiniteGalleryScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-480px * 5 - 28px * 5));
  }
}

/* Responsive View for Mobile */
@media (max-width: 768px) {
  .look-slide {
    width: 320px;
    height: 220px;
  }
  .look-slider-track {
    width: calc(320px * 10 + 20px * 10);
    gap: 20px;
  }
  @keyframes infiniteGalleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 5 - 20px * 5)); }
  }
}
/* ---------- ORDER BANNER SECTION ---------- */
.order-banner-section {
  position: relative;
  width: 100%;
  min-height: 440px;
  background-image: url('assets/order-bg.jpg'); /* Replace with your restaurant interior image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax scrolling effect */
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

/* Dark Dimming Overlay */
.order-banner-overlay {
  width: 100%;
  height: 100%;
  padding: 80px 20px;
  background: rgba(13, 10, 8, 0.78); /* High contrast overlay for text legibility */
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-banner-content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.order-banner-content .eyebrow {
  justify-content: center;
  color: var(--ember);
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.order-banner-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.order-banner-description {
  font-size: 1.05rem;
  color: #d1c7bd;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 36px auto;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Vibrant Orange Order Button */
.btn-order-now {
  display: inline-block;
  background-color: #d95a12; /* Rich warm orange button */
  color: #ffffff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 42px;
  border-radius: 2px;
  border: 1px solid #e2702b;
  box-shadow: 0 6px 20px rgba(217, 90, 18, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-order-now:hover {
  background-color: #f26b21;
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(217, 90, 18, 0.6);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .order-banner-section {
    min-height: 380px;
    background-attachment: scroll; /* Disables fixed parallax on mobile for smooth performance */
  }
  .order-banner-overlay {
    padding: 60px 20px;
  }
  .btn-order-now {
    padding: 14px 32px;
    font-size: 0.8rem;
  }
}
/* ---------- ZOMATO & SWIGGY DELIVERY SECTION ---------- */
.delivery-partners-section {
  background: #0b0807;
  padding: 100px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

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

/* Left Content */
.delivery-content {
  max-width: 520px;
}

.delivery-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.delivery-text,
.delivery-subtext {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.delivery-subtext {
  margin-bottom: 36px;
}

/* Delivery Partner App Buttons */
.delivery-badges {
  display: flex;
  gap: 20px;
  align-items: center;
}

.partner-badge {
  width: 140px;
  height: 90px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding: 12px;
}

.partner-badge:hover {
  transform: translateY(-5px) scale(1.03);
}

/* Zomato Branding Card */
.partner-badge.zomato {
  background: linear-gradient(135deg, #e23744 0%, #cb202d 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-badge.zomato:hover {
  box-shadow: 0 12px 28px rgba(226, 55, 68, 0.5);
}

/* Swiggy Branding Card */
.partner-badge.swiggy {
  background: linear-gradient(135deg, #fc8019 0%, #e26600 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-badge.swiggy:hover {
  box-shadow: 0 12px 28px rgba(252, 128, 25, 0.5);
}

.partner-badge svg {
  width: 100%;
  height: 100%;
}

/* Right Image Frame */
.delivery-visual {
  width: 100%;
}

.delivery-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1; /* Square frame matching reference */
  max-height: 520px;
  border-radius: 20px; /* Elegant rounded corners like screenshot */
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
  background-color: var(--charcoal-2);
}

.delivery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.delivery-img-wrapper:hover .delivery-img {
  transform: scale(1.04);
}

/* Responsive Grid for Tablets & Mobile */
@media (max-width: 960px) {
  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .delivery-content {
    max-width: 100%;
    text-align: center;
  }
  .delivery-badges {
    justify-content: center;
  }
  .delivery-img-wrapper {
    max-height: 400px;
    margin: 0 auto;
  }
}
/* ---------- GRAND LUXURY FOOTER ---------- */
.mannan-grand-footer {
  position: relative;
  background-image: url('assets/footer-bg.jpg'); /* Replace with your restaurant background image */
  background-size: cover;
  background-position: center;
  color: var(--cream);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 5, 0.90); /* Dark overlay to highlight the central card */
  z-index: 1;
}

.footer-content-container {
  position: relative;
  z-index: 2;
}

.footer-three-column-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 60px;
}

.footer-links-col,
.footer-social-col {
  padding-top: 40px;
}

/* Left Column - Navigation Links */
.footer-links-col {
  text-align: right;
  padding-right: 20px;
}

.footer-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-menu li {
  margin-bottom: 14px;
}

.footer-nav-menu a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.footer-nav-menu a:hover {
  color: var(--ember);
  letter-spacing: 0.24em;
}

/* Middle Column - Dark Patterned Card */
.footer-center-card {
  position: relative;
  background: #14110f;
  background-image: radial-gradient(#221b16 1px, transparent 1px); /* Subtle luxury texture pattern */
  background-size: 12px 12px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  padding: 40px 30px;
  text-align: center;
  border-radius: 2px;
}

.footer-card-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px auto;
}

.footer-card-logo svg {
  width: 100%;
  height: 100%;
}

.footer-address-block {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-dim);
}

.footer-address-block p {
  margin-bottom: 12px;
}

.footer-address-block strong {
  color: var(--cream);
  font-weight: 500;
}

.footer-email a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.footer-email a:hover {
  color: var(--ember-light);
}

.footer-phones {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.88rem;
  color: var(--cream);
}

.footer-timing {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  color: var(--brass);
  letter-spacing: 0.05em;
  margin-top: 14px;
}

.footer-card-diamond {
  color: var(--brass);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  margin-top: 24px;
  opacity: 0.7;
}

/* Right Column - Social Links */
.footer-social-col {
  text-align: left;
  padding-left: 20px;
}

.footer-social-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social-menu li {
  margin-bottom: 18px;
}

.footer-social-menu a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.footer-social-menu a:hover {
  color: var(--ember);
  letter-spacing: 0.24em;
}

/* Bottom Copyright & Credit Strip */
.footer-bottom-credit {
  border-top: 1px solid rgba(244, 235, 221, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom-credit p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--ash);
  letter-spacing: 0.05em;
}

/* Mobile & Tablet Responsive Layout */
@media (max-width: 960px) {
  .footer-three-column-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links-col,
  .footer-social-col {
    text-align: center;
    padding: 0;
  }
}
/* ---------- TOP NAVBAR & HAMBURGER MENU ---------- */
.main-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #0d0a08;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  padding: 16px 24px;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brass);
  text-decoration: none;
  letter-spacing: 0.12em;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.desktop-nav a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.8rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--brass);
}

/* Three-Line Hamburger Button */
.menu-toggle-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger-line {
  width: 26px;
  height: 2px;
  background-color: var(--brass);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Drawer & Backdrop Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-menu-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #120e0c;
  border-left: 1px solid rgba(201, 162, 39, 0.3);
  z-index: 201;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.slide-menu-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  padding-bottom: 16px;
}

.drawer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--brass);
  font-weight: 600;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.drawer-nav-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-nav-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.drawer-nav-list li.active a,
.drawer-nav-list li a:hover {
  color: var(--brass);
}

.drawer-footer {
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding-top: 20px;
}

.drawer-phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  color: var(--ash);
  margin-bottom: 12px;
}

.drawer-socials {
  display: flex;
  gap: 14px;
}

.drawer-socials a {
  color: var(--brass);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-decoration: none;
}

/* Mobile responsive rules */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
}
/* ---------- GLOBAL MINIMAL TOP NAVBAR ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #110c09;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 14px 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle-btn {
  background: transparent;
  border: none;
  color: #f5efe1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.3s ease;
}

.nav-toggle-btn:hover {
  color: #e2702b;
}

.brand-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5efe1;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.header-btn-order {
  background-color: #d95a12;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(217, 90, 18, 0.3);
}

.header-btn-order:hover {
  background-color: #f26b21;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 90, 18, 0.5);
}

/* ---------- DRAWER NAVIGATION ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: #18120e;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
  z-index: 1002;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
}

.nav-drawer.active {
  left: 0;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding-bottom: 16px;
}

.drawer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: #c9a227;
  font-weight: 700;
}

.drawer-close {
  background: none;
  border: none;
  color: #f5efe1;
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  padding: 24px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-links a {
  color: #f5efe1;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.drawer-links a:hover {
  color: #e2702b;
}
/* ---------- GLOBAL MINIMAL TOP NAVBAR ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #110c09;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 14px 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle-btn {
  background: transparent;
  border: none;
  color: #f5efe1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: color 0.3s ease;
}

.nav-toggle-btn:hover {
  color: #e2702b;
}

.brand-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5efe1;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.header-btn-order {
  background-color: #d95a12;
  color: #ffffff;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(217, 90, 18, 0.3);
}

.header-btn-order:hover {
  background-color: #f26b21;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 90, 18, 0.5);
}

/* ---------- DRAWER NAVIGATION ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background: #18120e;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
  z-index: 1002;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
}

.nav-drawer.active {
  left: 0;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding-bottom: 16px;
}

.drawer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: #c9a227;
  font-weight: 700;
}

.drawer-close {
  background: none;
  border: none;
  color: #f5efe1;
  font-size: 1.8rem;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  padding: 24px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-links a {
  color: #f5efe1;
  text-decoration: none;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.drawer-links a:hover {
  color: #e2702b;
}

.drawer-links a.drawer-btn-highlight {
  color: #e2702b;
  font-weight: 600;
  border-left: 2px solid #e2702b;
  padding-left: 10px;
}

.drawer-links a.drawer-btn-highlight:hover {
  color: #f26b21;
}
/* ---------- EXACT MATCH DRAWER STYLES ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Slide Drawer Container */
.nav-drawer {
  position: fixed;
  top: 0;
  left: -340px;
  width: 320px;
  height: 100vh;
  background-color: #080605; /* Pitch dark background */
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transition: left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.9);
  overflow-y: auto;
}

.nav-drawer.active {
  left: 0;
}

/* 1. Daily Hours Banner at Top */
.drawer-hours-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: var(--brass, #c9a227);
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.drawer-close-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #a0988e;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.drawer-close-icon:hover {
  color: #ffffff;
}

/* 2. Flame Emblem Logo */
.drawer-flame-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 0 25px 0;
}

.flame-logo-svg {
  width: 65px;
  height: 78px;
  filter: drop-shadow(0 4px 12px rgba(226, 112, 43, 0.25));
}

/* 3. Navigation List with Dividers */
.drawer-exact-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.drawer-exact-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.drawer-exact-menu a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #f5efe1;
  transition: all 0.25s ease;
}

/* Diamond Bullet Style */
.diamond-icon {
  font-size: 0.75rem;
  color: #7a7065;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Active Item Style (Orange filled diamond) */
.drawer-exact-menu li.active a,
.drawer-exact-menu a:hover {
  color: #e2702b; /* Vibrant Orange */
}

.drawer-exact-menu li.active .diamond-icon,
.drawer-exact-menu a:hover .diamond-icon {
  color: #e2702b;
  transform: scale(1.15);
}
/* ==========================================================================
   HOTEL MANNAN — GLOBAL BLACK THEME & LIGHT LAVENDER TEXT OVERRIDE
   ========================================================================== */

/* 1. Global Color Variables Override */
:root {
  --charcoal: #050404;
  --charcoal-2: #0e0b10;
  --cream: #E6E6FA !important;          /* Light Lavender primary text */
  --cream-2: #050404 !important;
  --text-dim: #D8BFD8 !important;       /* Soft Lavender/Thistle secondary text */
  --ash: #C8A2C8 !important;            /* Muted Lavender accent */
  --ink: #E6E6FA !important;
  --ink-soft: #D8BFD8 !important;
}

/* 2. Base Dark/Black Background & Lavender Text */
body, 
html {
  background-color: #050404 !important;
  color: #E6E6FA !important;
}

/* Force light lavender color across all textual elements */
h1, h2, h3, h4, h5, h6, 
p, span, li, a, label, 
div, blockquote, figcaption, input, textarea {
  color: #E6E6FA;
}

/* Secondary & description copy in soft lavender */
.subtitle, 
.menu-item-desc, 
.journey-text, 
.mission-text, 
.delivery-text, 
p.quote-text,
.about-hero p,
.gallery-hero p,
.contact-hero p,
.leadership-hero p,
.menu-hero p,
.card-description,
.bts-subtitle,
.intro-text,
.map-address {
  color: #D8BFD8 !important;
}

/* 3. Preserve Background Images with Dark/Black Tint Overlays */
.order-banner-section,
.mannan-grand-footer,
.hero,
.gallery-hero,
.about-hero,
.contact-hero,
.leadership-hero,
.menu-hero {
  background-color: #000000 !important;
}

/* Keep dark black dimming overlays so background photos remain visible */
.order-banner-overlay,
.footer-bg-overlay,
.hero::before,
.about-hero::before,
.gallery-hero::before,
.leadership-hero::before,
.menu-hero::before {
  background: rgba(5, 4, 4, 0.88) !important;
}

/* 4. Cards, Drawers, Lightboxes & Section Containers */
.menu-item,
.testimonial-card,
.pillar-box,
.bts-step,
.value-card,
.contact-info-card,
.footer-center-card,
.philosophy-card,
.info-card,
.ticket,
.leader-card,
.menu-section-block,
.menu-page,
.nav-drawer,
.slide-menu-drawer,
.lightbox,
.gallery-lightbox {
  background: #0d0a0f !important;
  border-color: rgba(200, 162, 200, 0.22) !important;
}

/* 5. Inputs & Forms */
input, textarea {
  background: #140e18 !important;
  border-color: rgba(200, 162, 200, 0.3) !important;
  color: #E6E6FA !important;
}
/* ==========================================================================
   HOTEL MANNAN — AESTHETIC DEEP BLACK & SOLID LIGHT LAVENDER THEME
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..700;1,9..144,300..700&family=IBM+Plex+Mono:wght@400;500;600&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Color Palette: Deep Pitch Black & Solid Aesthetic Light Lavender */
  --charcoal: #000000;
  --charcoal-2: #08080a;
  --bg-deep-black: #000000;
  --card-black: #08080a;
  --card-border-lavender: rgba(224, 208, 255, 0.22);

  --lavender-primary: #F0E6FF;   /* Crisp, high-contrast solid light lavender */
  --lavender-secondary: #D8C4F8; /* Soft solid lavender for descriptions */
  --lavender-accent: #C5A3FF;    /* Aesthetic glowing lavender accent */
  --lavender-bright: #E8D5FF;    /* Bright solid headings */
  --lavender-muted: #B39DDB;

  --cream: #F0E6FF !important;
  --cream-2: #000000 !important;
  --text-dim: #D8C4F8 !important;
  --ash: #B39DDB !important;
  --ink: #F0E6FF !important;
  --ink-soft: #D8C4F8 !important;
  --brass: #C5A3FF !important;
  --ember: #B388FF !important;
  --ember-light: #D1C4E9 !important;
}

/* ---------- GLOBAL RESET & BASE STYLES ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: #000000 !important;
}

body {
  font-family: 'Work Sans', sans-serif !important;
  background-color: #000000 !important;
  color: var(--lavender-primary) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Solid Aesthetic Typography Override */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif !important;
  font-weight: 700 !important;
  color: var(--lavender-bright) !important;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

p, span, li, a, label, div, blockquote, figcaption {
  color: var(--lavender-primary);
}

/* Secondary / Subtitle text */
.subtitle,
.menu-item-desc,
.journey-text,
.mission-text,
.delivery-text,
p.quote-text,
.about-hero p,
.gallery-hero p,
.contact-hero p,
.leadership-hero p,
.menu-hero p,
.card-description,
.bts-subtitle,
.intro-text,
.map-address,
.footer-address-block p {
  color: var(--lavender-secondary) !important;
  font-weight: 500;
}

.eyebrow, .box-label, .map-detail-label, .contact-info-label {
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 700 !important;
  color: var(--lavender-accent) !important;
  letter-spacing: 0.18em !important;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- TOP BAR & NAVIGATION ---------- */
.topbar {
  background: #000000 !important;
  border-bottom: 1px solid rgba(197, 163, 255, 0.2) !important;
}

.topbar-hours svg, .topbar-contact svg {
  color: var(--lavender-accent) !important;
}

header, .site-header, .main-navbar {
  background: rgba(0, 0, 0, 0.96) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 163, 255, 0.2) !important;
}

.logo, .brand-title, .navbar-logo {
  font-family: 'Fraunces', serif !important;
  font-weight: 800 !important;
  font-size: 1.4rem;
  color: var(--lavender-bright) !important;
  letter-spacing: 0.05em;
}

.nav-cta, .header-btn-order {
  background: #B388FF !important;
  color: #000000 !important;
  font-weight: 700 !important;
  font-family: 'IBM Plex Mono', monospace !important;
  border-radius: 4px;
  padding: 10px 22px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(179, 136, 255, 0.3);
}

.nav-cta:hover, .header-btn-order:hover {
  background: #D1C4E9 !important;
  transform: translateY(-2px);
}

/* Sidebar Drawer Navigation */
.nav-links, .nav-drawer, .slide-menu-drawer {
  background: #050507 !important;
  border-right: 1px solid rgba(197, 163, 255, 0.25) !important;
}

.nav-links li, .drawer-exact-menu li {
  border-bottom: 1px solid rgba(197, 163, 255, 0.12) !important;
}

.nav-links a, .drawer-exact-menu a {
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 600 !important;
  color: var(--lavender-primary) !important;
}

.nav-links a.active, .drawer-exact-menu li.active a, .diamond-icon {
  color: var(--lavender-accent) !important;
}

/* ---------- SECTIONS & BACKGROUND PRESERVATION ---------- */
section, .mannan-section, .journey-section, .mission-section, .strength-gallery-section, .look-gallery-section, .delivery-partners-section {
  background-color: #000000 !important;
  border-color: rgba(197, 163, 255, 0.18) !important;
}

/* Hero & Banner Sections with Images Overlays */
.hero, .order-banner-section, .mannan-grand-footer, .gallery-hero, .about-hero, .contact-hero, .leadership-hero, .menu-hero {
  background-color: #000000 !important;
}

.order-banner-overlay, .footer-bg-overlay {
  background: rgba(0, 0, 0, 0.88) !important;
}

/* Buttons */
.btn-primary, .btn-order-now {
  background: #B388FF !important;
  color: #000000 !important;
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 700 !important;
  border: 1px solid #B388FF !important;
  box-shadow: 0 6px 20px rgba(179, 136, 255, 0.35) !important;
}

.btn-primary:hover, .btn-order-now:hover {
  background: #D1C4E9 !important;
  border-color: #D1C4E9 !important;
  transform: translateY(-2px);
}

.btn-ghost, .btn-clear-filter, .filter-btn {
  border: 1px solid rgba(197, 163, 255, 0.4) !important;
  color: var(--lavender-primary) !important;
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 600 !important;
  background: rgba(197, 163, 255, 0.05) !important;
}

.btn-ghost:hover, .btn-clear-filter:hover, .filter-btn.active, .filter-btn:hover {
  background: #B388FF !important;
  color: #000000 !important;
  border-color: #B388FF !important;
}

/* ---------- CARDS & CONTAINERS ---------- */
.philosophy-card,
.info-card,
.ticket,
.testimonial-card,
.strength-card,
.pillar-box,
.bts-step,
.value-card,
.contact-info-card,
.footer-center-card,
.leader-card,
.menu-item,
.partner-badge {
  background: #08080a !important;
  border: 1px solid rgba(197, 163, 255, 0.22) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8) !important;
}

.philosophy-card:hover,
.info-card:hover,
.ticket:hover,
.testimonial-card:hover,
.strength-card:hover,
.pillar-box:hover,
.bts-step:hover,
.value-card:hover,
.contact-info-card:hover,
.leader-card:hover,
.menu-item:hover {
  border-color: rgba(197, 163, 255, 0.6) !important;
  transform: translateY(-4px);
}

/* Form Controls */
input, textarea, select {
  background: #0a0810 !important;
  border: 1px solid rgba(197, 163, 255, 0.3) !important;
  color: var(--lavender-primary) !important;
  font-family: 'Work Sans', sans-serif !important;
  font-size: 0.95rem !important;
}

input:focus, textarea:focus {
  border-color: #B388FF !important;
  outline: none;
}

/* Footer Accent */
.mannan-grand-footer {
  border-top: 1px solid rgba(197, 163, 255, 0.2) !important;
}

.footer-bottom-credit p {
  color: var(--lavender-muted) !important;
}

/* ==========================================================================
   HOTEL MANNAN — LUXURY SCROLL-REVEAL & MOTION SYSTEM
   Adds refined entrance animations and smoother, richer hover motion across
   the whole site without altering layout, colors, or content.
   ========================================================================== */

@keyframes mannanFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mannanFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes mannanPageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes mannanFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes mannanShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes mannanPulseGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(197, 163, 255, 0.28); }
  50%      { box-shadow: 0 6px 26px rgba(197, 163, 255, 0.55); }
}

/* Whole-page soft entrance */
body { animation: mannanPageIn 0.7s ease both; }

/* Scroll-reveal base state — JS (animations.js) toggles .in-view.
   If JS fails to run, content still renders normally (no init hiding here). */
.reveal-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up.stagger-1 { transition-delay: 0.05s; }
.reveal-up.stagger-2 { transition-delay: 0.12s; }
.reveal-up.stagger-3 { transition-delay: 0.19s; }
.reveal-up.stagger-4 { transition-delay: 0.26s; }
.reveal-up.stagger-5 { transition-delay: 0.33s; }
.reveal-up.stagger-6 { transition-delay: 0.40s; }

/* Hero content — gentle rise on load */
[class$="hero-inner"] > * {
  animation: mannanFadeUp 0.9s cubic-bezier(0.16, 0.8, 0.24, 1) both;
}
[class$="hero-inner"] > *:nth-child(1) { animation-delay: 0.05s; }
[class$="hero-inner"] > *:nth-child(2) { animation-delay: 0.18s; }
[class$="hero-inner"] > *:nth-child(3) { animation-delay: 0.32s; }
[class$="hero-inner"] > *:nth-child(4) { animation-delay: 0.46s; }

/* Richer, more luxurious hover motion on interactive elements */
a, button, .btn, .btn-primary, .btn-outline, .btn-ghost, .header-btn-order,
.nav-cta, .category-circle-item, .diamond-icon, .footer-social-menu a,
.footer-nav-menu a {
  transition: color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              background 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
              letter-spacing 0.35s ease;
}

.btn-primary:hover, .btn-order-now:hover, .header-btn-order:hover, .nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-outline:hover, .btn-ghost:hover {
  letter-spacing: 0.03em;
}

/* Subtle continuous glow on the primary call-to-action for a premium feel */
.header-btn-order, .nav-cta {
  animation: mannanPulseGlow 3.2s ease-in-out infinite;
}

/* Card lift + shadow bloom, smoother than a plain transform */
.leader-card, .menu-item, .pillar-box, .bts-step, .contact-info-card,
.testimonial-card, .value-card, .philosophy-card, .info-card,
.strength-card, .partner-badge, .footer-center-card, .ticket {
  transition: transform 0.5s cubic-bezier(0.16, 0.8, 0.24, 1),
              border-color 0.5s ease,
              box-shadow 0.5s ease;
}

/* Image zoom refinement wherever a card/media image already scales on hover */
.leader-img-wrapper img, .menu-item-media img, .about-story-media img,
.gallery-item img, .menu-page img {
  transition: transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
}

/* Underline-grow animation for footer & drawer nav links */
.footer-nav-menu a, .footer-social-menu a {
  position: relative;
}
.footer-nav-menu a::after, .footer-social-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.footer-nav-menu a:hover::after, .footer-social-menu a:hover::after {
  width: 100%;
}

/* Slide-out drawer — silkier easing */
.nav-drawer {
  transition: right 0.45s cubic-bezier(0.16, 0.8, 0.24, 1),
              left 0.45s cubic-bezier(0.16, 0.8, 0.24, 1),
              transform 0.45s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.drawer-overlay {
  transition: opacity 0.4s ease;
}

/* Gentle floating accent for decorative diamond glyphs */
.drawer-flame-wrapper, .footer-card-logo {
  animation: mannanFloat 4.5s ease-in-out infinite;
}

/* Extend the media-zoom-on-hover treatment to the homepage story sections
   and the ambiance slider, so every showcase image gets the same
   slow, luxurious zoom already used on leader/menu/gallery photos. */
.mission-img, .journey-img, .delivery-img, .look-slide img {
  transition: transform 0.7s cubic-bezier(0.16, 0.8, 0.24, 1);
}
.mission-image-wrap, .journey-image-wrap, .delivery-img-wrapper, .look-slide {
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}
.mission-image-wrap:hover .mission-img,
.journey-image-wrap:hover .journey-img,
.delivery-img-wrapper:hover .delivery-img,
.look-slide:hover img {
  transform: scale(1.08);
}
.mission-image-wrap:hover, .journey-image-wrap:hover, .delivery-img-wrapper:hover {
  box-shadow: 0 18px 44px rgba(197, 163, 255, 0.32);
}

/* Soft glowing pulse on decorative diamond glyphs — a small, continuous
   sparkle that reads as "premium detailing" without being distracting. */
@keyframes mannanDiamondGlow {
  0%, 100% { opacity: 0.7; text-shadow: 0 0 0 rgba(197, 163, 255, 0); }
  50%      { opacity: 1;   text-shadow: 0 0 10px rgba(197, 163, 255, 0.85); }
}
.divider-gold span,
.footer-card-diamond,
.leader-signature,
.card-diamond {
  animation: mannanDiamondGlow 3.4s ease-in-out infinite;
}

/* Shimmering gold/lavender sweep across the accent line beside eyebrow
   labels — a subtle, recurring light-catch rather than a static line. */
.eyebrow::before {
  background: linear-gradient(90deg,
    var(--ember) 0%, var(--brass) 35%, var(--cream) 50%, var(--brass) 65%, var(--ember) 100%);
  background-size: 300% 100%;
  animation: mannanShimmer 5s linear infinite;
}

/* Reveal-triggered fade-in for lightboxes / modal overlays that use the
   [hidden] attribute pattern already used across the gallery and menu
   pages, so opening them feels like a considered entrance, not a snap. */
.gallery-lightbox:not([hidden]) {
  animation: mannanFadeIn 0.3s ease both;
}
.gallery-lightbox:not([hidden]) .lightbox-content {
  animation: mannanFadeUp 0.4s cubic-bezier(0.16, 0.8, 0.24, 1) both;
}

/* Filter pills (Gallery page) — small lift to match the rest of the
   site's button hover language. */
.filter-btn:hover, .filter-btn.active {
  transform: translateY(-2px);
}

/* Respect reduced-motion preference (site already disables globally, this
   simply keeps the new classes consistent with that rule) */
@media (prefers-reduced-motion: reduce) {
  body, [class$="hero-inner"] > *, .header-btn-order, .nav-cta,
  .drawer-flame-wrapper, .footer-card-logo,
  .divider-gold span, .footer-card-diamond, .leader-signature, .card-diamond,
  .eyebrow::before, .gallery-lightbox:not([hidden]),
  .gallery-lightbox:not([hidden]) .lightbox-content {
    animation: none !important;
  }
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   NAV DRAWER — LOGO AT TOP
   ========================================================================== */
.drawer-logo-img {
  width: clamp(140px, 40%, 200px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5));
}

/* ==========================================================================
   HERO — VIDEO BACKGROUND
   ========================================================================== */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,4,4,0.55) 0%, rgba(5,4,4,0.72) 55%, rgba(5,4,4,0.9) 100%);
  z-index: 1;
}

#embers {
  z-index: 2;
}

.hero-inner {
  z-index: 3;
}

.hero-scroll {
  z-index: 3;
}
/* Header मधील MANNAN नाव लपवण्यासाठी */
.site-header .brand-title,
header .brand-title {
  display: none !important;
}
/* ==========================================
   FOOTER LOGO - CLEAN (NO SHADOWS)
   ========================================== */

.footer-card-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 28px;
  padding: 10px 0;
}

.footer-logo-img {
  width: clamp(180px, 45%, 240px) !important;
  max-width: 90% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  
  /* सर्व शॅडो आणि ग्लो बंद केले आहेत */
  filter: none !important;
  box-shadow: none !important;
}
/* ==========================================
   FOOTER LOGO - BIG & PERFECT FIT
   ========================================== */

/* सेंटर बॉक्सची साईझ आणि स्पेसिंग योग्य केली */
.footer-center-card {
  padding: 40px 24px !important;
}

.footer-card-logo {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto 20px auto !important;
  width: 100% !important;
}

.footer-logo-img {
  /* लोगोची विड्थ बॉक्सनुसार एकदम मोठी केली */
  width: 280px !important;
  max-width: 85% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  
  /* कुठलीही शॅडो किंवा ग्लो नाही */
  filter: none !important;
  box-shadow: none !important;
}

/* मोबाईल स्क्रीनसाठी ॲडजस्टमेंट */
@media (max-width: 480px) {
  .footer-logo-img {
    width: 220px !important;
    max-width: 90% !important;
  }
}
/* Responsive Grid Container — matches .menu-book grid exactly so all page
   cards (1-6) render at the same size */
.menu-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1020px;
  margin: 24px auto 0;
  padding: 0 24px;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  .menu-grid-container {
    max-width: 520px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* Menu Page Card */
.menu-page-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Force consistency on Images 4, 5, 6 */
.menu-page-card img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  display: block;
}

/* Lightbox overlay fix */
#lightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
/* ==========================================================================
   HOME PAGE — SECTION NAME LABELS CENTERED & ENLARGED (ACT AS MINI HEADINGS)
   Applies to: A DECADE OF PASSION, DELIGHTFUL EXPERIENCE, TESTIMONIALS,
   WHY CHOOSE US, OUR AMBIANCE, PURE VEGETARIAN DELIGHT
   ========================================================================== */
.mission-content .eyebrow,
.journey-content .eyebrow,
.testimonials-section .eyebrow,
.strength-gallery-section .eyebrow,
.look-gallery-header .eyebrow,
.order-banner-content .eyebrow {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  margin-bottom: 16px !important;
}

@media (max-width: 640px) {
  .mission-content .eyebrow,
  .journey-content .eyebrow,
  .testimonials-section .eyebrow,
  .strength-gallery-section .eyebrow,
  .look-gallery-header .eyebrow,
  .order-banner-content .eyebrow {
    font-size: 1.05rem !important;
  }
}
