/* ==========================================================================
   RAASA AWAD — Royal Awadhi Fine Dining
   Design tokens: Royal Orange #D97706 / Dark Brown #3B2418 / Gold #D4AF37
   Cream #FFF8F0 / Dark #1F120D / Text #2C1A12 / Hover #B45309
   ========================================================================== */

:root {
  --color-primary: #d97706;
  --color-secondary: #3b2418;
  --color-accent: #d4af37;
  --color-bg: #fff8f0;
  --color-bg-dark: #1f120d;
  --color-text: #2c1a12;
  --color-hover: #b45309;
  --menu-color: #f2c491;

  --font-display: "Cinzel", serif;
  --font-script: "Cormorant Garamond", serif;
  --font-body: "Poppins", sans-serif;
  --font-btn: "Montserrat", sans-serif;

  --shadow-soft: 0 20px 50px -20px rgba(59, 36, 24, 0.35);
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.45);
  --radius-lg: 22px;
  --radius-md: 14px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  
}

body {
  font-family: var(--font-body);
  color: var(--color-text);

  /* overflow-x: hidden; */
  font-weight: 400;
  line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-secondary);
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.text-gold {
  color: var(--color-primary);
}

img {
  max-width: 100%;
}

/* ---------- Loader ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-arch {
  text-align: center;
  color: var(--color-accent);
}
.loader-arch svg {
  width: 70px;
  height: 90px;
  animation: archPulse 1.6s ease-in-out infinite;
}
.loader-arch span {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  letter-spacing: 6px;
  font-size: 0.85rem;
}
@keyframes archPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- Section base ---------- */
.section {
  padding: 110px 0;
  position: relative;

  
}
.section-eyebrow {
  font-family: var(--font-btn);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.section-eyebrow.light {
  color: var(--color-accent);
}
.section-title {
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 18px;
}
.section-title.light {
  color: #fff;
}
.section-text {
  color: #5a4436;
  max-width: 560px;
}
.section-text.light {
  color: #e8d9cc;
}

.gold-divider {
  width: 90px;
  height: 3px;
  margin: 0 0 26px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  position: relative;
}
.gold-divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3.5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-accent);
  border-radius: 2px;
  transform: rotate(45deg);
  background: var(--color-bg);
}

/* Decorative top pattern strips using repeating SVG-like css shapes */
.pattern-strip {
  height: 14px;
  width: 100%;
  background: repeating-linear-gradient(
    135deg,
    var(--color-accent) 0 6px,
    transparent 6px 16px
  );
  opacity: 0.35;
}
.footer-strip {
  opacity: 0.5;
}

/* ---------- Buttons ---------- */
.btn-royal {
  font-family: var(--font-btn);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: #fff !important;
  padding: 14px 34px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-hover));
  box-shadow: var(--shadow-gold);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.btn-royal:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -10px rgba(212, 175, 55, 0.6);
  color: #fff;
}

.btn-outline-royal {
  font-family: var(--font-btn);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: var(--color-accent) !important;
  padding: 13px 34px;
  border-radius: 50px;
  border: 1.5px solid var(--color-accent);
  background: transparent;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.btn-outline-royal:hover {
  background: var(--color-accent);
  color: var(--color-secondary) !important;
  transform: translateY(-3px);
}

.btn-sm-nav {
  padding: 10px 22px;
  font-size: 0.75rem;
}

.ripple {
  position: relative;
}
.ripple::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.55) 0%,
    transparent 60%
  );
  opacity: 0;
  transform: scale(0);
  transition:
    transform 0.5s ease,
    opacity 0.6s ease;
}
.ripple:active::before {
  opacity: 1;
  transform: scale(2.4);
  transition: 0s;
}

/* ---------- Navbar ---------- */
.glass-nav {
  padding: 18px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.glass-nav.scrolled {
  padding: 10px 0;
  background: rgba(31, 18, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.1rem;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 1px;
}
.brand-text em {
  font-style: normal;
  color: var(--color-accent);
}

.navbar-nav .nav-link {
  color: var(--menu-color);
  font-family: var(--font-btn);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px !important;
  position: relative;
}
.nav-underline::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nav-underline:hover::after,
.nav-underline.active::after {
  transform: scaleX(1);
}
.nav-underline:hover {
  color: var(--color-accent);
}

.navbar-toggler {
  border: none;
  padding: 4px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.toggler-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-accent);
  margin: 5px 0;
  transition: 0.3s;
}
.brand-logo {
    padding: 0;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color: var(--color-accent);
}
.brand-logo img {
    height: 70px;       /* Adjust as needed */
    width: auto;
    display: block;
    transition: 0.4s ease;
}

#mainNav.scrolled .brand-logo img {
    height: 60px;
}
/* ---------- Hero ---------- */
.hero {
  min-height: 112vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: slowZoom 22s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(31, 18, 13, 0.75) 0%,
    rgba(31, 18, 13, 0.55) 45%,
    rgba(31, 18, 13, 0.92) 100%
  );
}

.steam-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  pointer-events: none;
  z-index: 1;
}
.steam {
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16),
    transparent 70%
  );
  filter: blur(6px);
  animation: steamRise 6s ease-in infinite;
}
.s1 {
  left: 20%;
  animation-delay: 0s;
}
.s2 {
  left: 52%;
  animation-delay: 2s;
  width: 90px;
}
.s3 {
  left: 78%;
  animation-delay: 4s;
}
@keyframes steamRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-220px) scale(1.5);
    opacity: 0;
  }
}

.floating-petals span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  opacity: 0.55;
  animation: floatY 9s ease-in-out infinite;
}
.floating-petals span:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}
.floating-petals span:nth-child(2) {
  top: 40%;
  left: 85%;
  animation-delay: 1.5s;
}
.floating-petals span:nth-child(3) {
  top: 65%;
  left: 25%;
  animation-delay: 3s;
}
.floating-petals span:nth-child(4) {
  top: 15%;
  left: 60%;
  animation-delay: 4.5s;
}
.floating-petals span:nth-child(5) {
  top: 75%;
  left: 70%;
  animation-delay: 2s;
}
.floating-petals span:nth-child(6) {
  top: 50%;
  left: 45%;
  animation-delay: 5s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  color: var(--color-accent);
  font-family: var(--font-btn);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.hero-title{
  display:flex;
  flex-direction:column;
  gap:12px;
  font-weight:400;               /* Marcellus only has 400 — it's naturally stately */
  line-height:1.15;
  margin-bottom:22px;
}

/* Line 1 — calm letterspaced caps */
.hero-top{
  font-family:'Marcellus', 'Cinzel', serif;
  font-size:clamp(24px, 3.4vw, 54px);
  letter-spacing:.3em;
  text-transform:uppercase;
  color:#f6ead0;
}

/* Line 2 — warm italic gold */
.hero-royal{
  font-family:'EB Garamond', 'Cormorant Garamond', serif;
  font-style:italic;
  font-weight:500;
  font-size:clamp(34px, 5.2vw, 68px);
  letter-spacing:.01em;
  color:#d4af37;
}
.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  margin-right: 0.28em;
}
.hero-title .reveal-word:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-title .reveal-word:nth-child(2) {
  animation-delay: 0.25s;
}
.hero-title .reveal-word:nth-child(3) {
  animation-delay: 0.4s;
}
.hero-title .reveal-word:nth-child(4) {
  animation-delay: 0.6s;
}
.hero-title .reveal-word:nth-child(5) {
  animation-delay: 0.75s;
}
@keyframes wordUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gold-word {
  color: var(--color-accent);
  font-style: italic;
  font-family: var(--font-script);
  font-weight: 600;
}

.hero-sub {
  color: #e9dccd;
  font-size: 1.08rem;
  max-width: 640px;
  margin: 0 auto 34px;
}
.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 0.9s ease forwards;
}
.reveal-up.delay-1 {
  animation-delay: 0.15s;
}
.reveal-up.delay-2 {
  animation-delay: 0.3s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--color-accent);
  border-radius: 16px;
  display: block;
  position: relative;
}
.wheel {
  width: 4px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheel 1.6s ease-in-out infinite;
}
@keyframes wheel {
  0% {
    opacity: 1;
    top: 6px;
  }
  70% {
    opacity: 0;
    top: 22px;
  }
  100% {
    opacity: 0;
    top: 6px;
  }
}

/* ---------- Scroll reveal (JS toggled) ---------- */
.reveal-left,
.reveal-right {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal-left {
  transform: translateX(-60px);
}
.reveal-right {
  transform: translateX(60px);
}
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.section .reveal-up {
  animation: none;
}
.section .reveal-up {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.section .reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.hero .reveal-up {
  animation: fadeUp 0.9s ease forwards;
}

/* ---------- About ---------- */
.about-section {
  position: relative;
  background: url('../img/bg/bg-3.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 45%, rgba(217, 119, 6, 0.10), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 2 54 28 28 54 2 28Z' fill='none' stroke='%23d4af37' stroke-opacity='.06'/%3E%3C/svg%3E"),
    linear-gradient(rgba(59, 36, 24, 0.14), rgba(59, 36, 24, 0.14));
  z-index: 0;
}
  .about-section::after {
    content: "";
    position: absolute;
    left: 8%; right: 8%; bottom: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,.4), transparent);
    z-index: 0;
  }
.heritage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 26px;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.heritage-tags span { display: inline-flex; align-items: center; gap: 26px; }
.heritage-tags span::after { content: "✦"; font-size: 0.55rem; opacity: 0.7; }
.heritage-tags span:last-child::after { content: none; }
.about-section > * {
  position: relative;
  z-index: 1;
}
.about-frame {
  position: relative;
  padding: 18px;
}
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.frame-corner {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 2.5px solid var(--color-accent);
}
.frame-corner.tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 14px;
}
.frame-corner.tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 14px;
}
.frame-corner.bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 14px;
}
.frame-corner.br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 14px;
}

.about-seal {
  position: absolute;
  left: 430px;
  bottom: -26px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    #2e1a10,
    #180d07
  );
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  z-index: 2;
}

.about-seal svg {
  position: absolute;
  inset: 8px;
  animation: seal-spin 26s linear infinite;
}

.about-seal text {
  fill: var(--color-accent);
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 3.4px;
}

.seal-motif {
  font-size: 24px;
  color: var(--color-accent);
}

@keyframes seal-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Tablet + mobile + smaller laptop */
@media (max-width: 1024px) {
  .about-seal {
    display: none !important;
  }
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.badge-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.counter-box {
  text-align: center;
  padding: 18px 8px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 10px 26px -14px rgba(59, 36, 24, 0.25);
}
.counter,
.counter-plus {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-primary);
}
.counter-box p {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: #7a6252;
  letter-spacing: 0.3px;
}

/* ---------- Menu / Dish Cards ---------- */
.menu-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(ellipse at 88% 10%, rgba(212,175,55,.08), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 2 54 28 28 54 2 28Z' fill='none' stroke='%23d4af37' stroke-opacity='.05'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #fff, var(--color-bg));
}

.dish-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 34px -18px rgba(59, 36, 24, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}
.dish-card:hover {
  transform: translateY(-10px) rotate(-0.3deg);
  box-shadow: 0 26px 50px -18px rgba(59, 36, 24, 0.4);
}
.dish-img-wrap {
  overflow: hidden;
  height: 230px;
}
.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-img-wrap img {
  transform: scale(1.14);
}
.dish-ribbon {
  position: absolute;
  top: 16px;
  left: -6px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-btn);
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  padding: 6px 16px 6px 20px;
  border-radius: 0 4px 4px 0;
  z-index: 2;
  box-shadow: 0 6px 14px -6px rgba(0, 0, 0, 0.4);
}
.dish-ribbon::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  border-width: 6px 3px 0 0;
  border-style: solid;
  border-color: var(--color-hover) transparent transparent transparent;
}
.dish-body {
  padding: 22px 24px 26px;
}
.dish-body h5 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.dish-body p {
  font-size: 0.86rem;
  color: #7a6252;
  margin-bottom: 14px;
}
.dish-price {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
}
.dish-link {
  font-family: var(--font-btn);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: var(--color-secondary);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.dish-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ---------- Section: Darwaza at night ---------- */
.why-section{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(26,13,7,.84), rgba(26,13,7,.93)),
    url('../img/bg/rumi-darwaza.png') center 62% / cover no-repeat;
  background-attachment:fixed;           /* gentle parallax on desktop */
}
@media (max-width:991px){
  .why-section{ background-attachment:scroll; }
}

/* jali pattern + top glow */
.why-section::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,.10), transparent 55%)
    
}
/* gold hairline at the very top */
.why-section::after{
  content:"";
  position:absolute; top:0; left:6%; right:6%; height:1px;
  background:linear-gradient(90deg, transparent, rgba(212,175,55,.45), transparent);
}
.why-section .container{ position:relative; z-index:1; }

/* light type on dark */
.why-section .section-title{ color:#f6ead0; }

/* ---------- Glass niche cards ---------- */
.why-card{
  position:relative;
  height:100%;
  text-align:left;
  padding:30px 26px 28px;
  border-radius:10px;
  border:1px solid rgba(212,175,55,.22);
  background:linear-gradient(160deg, rgba(43,23,13,.78), rgba(30,15,8,.6));
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  overflow:hidden;
  transition:transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}

/* gold rule that draws across the top on hover */
.why-card::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, #d4af37, rgba(212,175,55,.1));
  transform:scaleX(.22);
  transform-origin:left;
  transition:transform .6s ease;
}
.why-card:hover::before{ transform:scaleX(1); }

/* corner tick, bottom-right */
.why-card::after{
  content:"";
  position:absolute; right:12px; bottom:12px;
  width:20px; height:20px;
  border-right:1.5px solid rgba(212,175,55,.45);
  border-bottom:1.5px solid rgba(212,175,55,.45);
  transition:.45s ease;
}
.why-card:hover::after{ right:7px; bottom:7px; border-color:#d4af37; }

.why-card:hover{
  transform:translateY(-8px);
  border-color:rgba(212,175,55,.5);
  box-shadow:0 22px 44px rgba(0,0,0,.45), 0 0 26px rgba(212,175,55,.1);
}

/* ghost numeral, top-right */
.why-num{
  position:absolute;
  top:16px; right:20px;
  font-family:var(--font-display, 'Cinzel', serif);
  font-size:2.5rem;
  line-height:1;
  color:transparent;
  -webkit-text-stroke:1px rgba(212,175,55,.3);
  transition:.45s ease;
}
.why-card:hover .why-num{ -webkit-text-stroke-color:rgba(212,175,55,.65); }

/* diamond icon seal */
.why-icon{
  width:62px; height:62px;
  margin:4px 0 24px 4px;
  display:grid; place-items:center;
  transform:rotate(45deg);
  border:1px solid rgba(212,175,55,.55);
  background:radial-gradient(circle at 30% 30%, rgba(212,175,55,.22), rgba(212,175,55,.05) 70%);
  position:relative;
  transition:transform .5s ease, box-shadow .5s ease;
}
.why-icon::before{
  content:"";
  position:absolute; inset:4px;
  border:1px solid rgba(212,175,55,.3);
}
.why-icon i{
  transform:rotate(-45deg);
  font-size:1.45rem;
  color:#d4af37;
}
.why-card:hover .why-icon{
  transform:rotate(45deg) scale(1.07);
  box-shadow:0 0 22px rgba(212,175,55,.28);
}

/* title with diamond bullet */
.why-card h5{
  position:relative;
  padding-left:16px;
  color:#f3e7c9;
  font-family:var(--font-display, 'Cinzel', serif);
  font-size:15.5px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin:0 0 10px;
}
.why-card h5::before{
  content:"";
  position:absolute; left:0; top:50%;
  width:6px; height:6px;
  background:#d4af37;
  transform:translateY(-50%) rotate(45deg);
}

.why-card p{
  color:rgba(246,234,208,.7);
  font-size:.9rem;
  line-height:1.65;
  margin:0;
}

/* optional: drop the middle column for rhythm on desktop */
@media (min-width:992px){
  .why-grid > div:nth-child(3n+2) .why-card{ margin-top:28px; }
}

/* ---------- Hostess at the right corner ---------- */
.why-muse{
  height:100%;
  display:flex;
  align-items:flex-end;               /* feet planted at section end */
  justify-content:center;
  pointer-events:none;
  position:relative;
}
/* candle-glow behind her */
.why-muse::before{
  content:"";
  position:absolute; inset:15% -12% 0;
  background:radial-gradient(circle at 50% 35%, rgba(212,175,55,.16), transparent 65%);
}
.why-muse img{
  width:min(300px, 100%);
  display:block;
  border-radius:230px 230px 0 0;      /* arched portrait panel */
  border:1px solid rgba(212,175,55,.45);
  border-bottom:0;
  filter:drop-shadow(0 -4px 30px rgba(0,0,0,.5));
  animation:muse-float 8s ease-in-out infinite;
}
@keyframes muse-float{
  0%,100%{ transform:translateY(0); }
  50%    { transform:translateY(-10px); }
}
/* ---------- Chef ---------- */
.chef-section {
  background: var(--color-bg-dark);
  color: #fff;
}
.chef-frame {
  position: relative;
}
.chef-frame img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.chef-frame-border {
  position: absolute;
  inset: -16px;
  border: 1.5px solid var(--color-accent);
  border-radius: calc(var(--radius-lg) + 10px);
  opacity: 0.5;
  pointer-events: none;
}
.chef-stat {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0;
}
.chef-stat span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: #c9b5a4;
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.chef-quote {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.2rem;
  color: #f0e2d3;
  margin-top: 26px;
  padding-left: 20px;
  border-left: 2px solid var(--color-accent);
}

/* ---------- Offers ---------- */
.offers-section {
  background: linear-gradient(180deg, var(--color-bg), #fff);
}
.offer-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 14px 30px -18px rgba(59, 36, 24, 0.25);
  position: relative;
  transition: transform 0.4s ease;
}
.offer-card:hover {
  transform: translateY(-8px);
}
.offer-card.featured {
  background: linear-gradient(160deg, var(--color-secondary), #2a1710);
  color: #fff;
  border-color: var(--color-accent);
}
.offer-card.featured h5 {
  color: #fff;
}
.offer-card.featured p {
  color: #d9c4b3;
}
.offer-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-btn);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.offer-badge.glow {
  animation: badgeGlow 1.8s ease-in-out infinite;
}
@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0.6);
  }
  50% {
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.9);
  }
}
.offer-card h5 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.offer-card p {
  font-size: 0.88rem;
  color: #7a6252;
  margin-bottom: 18px;
}
.offer-link {
  font-family: var(--font-btn);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}
.countdown {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.countdown div {
  flex: 1;
  text-align: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 8px;
  padding: 8px 4px;
}
.countdown span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 700;
}
.countdown small {
  font-size: 0.6rem;
  color: #d9c4b3;
  letter-spacing: 0.5px;
}

/* ---------- Gallery ---------- */
.gallery-section {
  background: var(--color-bg);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  height: 280px;
  box-shadow: 0 14px 30px -18px rgba(59, 36, 24, 0.3);
}
.gallery-item.tall {
  height: 100%;
  min-height: 280px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.15);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 18, 13, 0.85), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: #fff;
  font-family: var(--font-btn);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
}
.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

.custom-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 11, 7, 0.94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.custom-lightbox.open {
  display: flex;
}
.custom-lightbox img {
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.custom-lightbox p {
  color: var(--color-accent);
  font-family: var(--font-btn);
  margin-top: 16px;
  letter-spacing: 0.5px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Testimonials ---------- */
/* =========================================================
   ROYAL TESTIMONIAL SECTION
========================================================= */

.testimonials-section {
    position: relative;
    overflow: hidden;
    background:
    radial-gradient(ellipse at 50% -10%, rgba(212,175,55,.08), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 2 54 28 28 54 2 28Z' fill='none' stroke='%23d4af37' stroke-opacity='.05'/%3E%3C/svg%3E"),
    #2b170d;

    padding: 110px 0 90px;
}


/* =========================================================
   SUBTLE ROYAL PATTERN
========================================================= */



/* =========================================================
   GOLD ATMOSPHERIC GLOW
========================================================= */

.royal-glow {
    position: absolute;
    width: 500px;
    height: 500px;

    right: -200px;
    top: 50%;

    transform: translateY(-50%);

    background: rgba(212,175,55,.08);
    filter: blur(100px);

    border-radius: 50%;
}


/* =========================================================
   RANI AREA
========================================================= */

.testimonial-rani {
    position: relative;
    min-height: 650px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


/* Decorative golden arch behind Rani */

.rani-frame {
    position: absolute;

    width: 430px;
    height: 560px;

    bottom: 0;

    border: 1px solid rgba(212,175,55,.45);

    border-radius: 220px 220px 0 0;

    background:
        linear-gradient(
            180deg,
            rgba(212,175,55,.08),
            transparent
        );

    box-shadow:
        0 0 0 10px rgba(212,175,55,.025),
        0 0 70px rgba(212,175,55,.12);
}


/* Inner arch */

.rani-frame::before {
    content: "";

    position: absolute;
    inset: 15px;

    border: 1px solid rgba(212,175,55,.20);

    border-radius: 210px 210px 0 0;
}


/* RANI IMAGE */

.rani-image {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 560px;

    height: auto;

    display: block;

    margin: 0 auto;

    filter:
        drop-shadow(0 20px 35px rgba(0,0,0,.55))
        drop-shadow(0 0 18px rgba(212,175,55,.08));
        bottom: -90px;
}


/* =========================================================
   SMALL ROYAL CAPTION
========================================================= */

.rani-caption {
    position: absolute;

    z-index: 4;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    text-align: center;

    background: rgba(25,7,5,.88);

    border: 1px solid rgba(212,175,55,.4);

    padding: 8px 25px;

    white-space: nowrap;
}

.rani-caption span {
    display: block;

    color: #d4af37;

    font-family: serif;

    font-size: 1.1rem;

    letter-spacing: 3px;
}

.rani-caption small {
    display: block;

    color: #bda99a;

    font-size: .65rem;

    text-transform: uppercase;

    letter-spacing: 2px;
}


/* =========================================================
   TESTIMONIAL CONTENT
========================================================= */

.testimonial-content {
    position: relative;

    max-width: 650px;

    margin-left: auto;
}


/* =========================================================
   GOLD DIVIDER
========================================================= */

.testimonial-content .gold-divider {
    margin: 22px 0 35px;
    width: 90px;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
    position: relative;

    padding: 50px 55px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.065),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(212,175,55,.38);

    border-radius: 4px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.35),
        inset 0 0 40px rgba(212,175,55,.025);

    backdrop-filter: blur(8px);
}


/* =========================================================
   QUOTE MARK
========================================================= */

.quote-mark {
    position: absolute;

    top: 12px;
    left: 28px;

    font-family: Georgia, serif;

    font-size: 6rem;

    line-height: 1;

    color: rgba(212,175,55,.15);

    pointer-events: none;
}


/* =========================================================
   STARS
========================================================= */

.stars {
    color: #d4af37;

    margin-bottom: 22px;

    letter-spacing: 5px;

    font-size: .85rem;
}


/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.testimonial-card p {
    position: relative;
    z-index: 1;

    font-family: var(--font-script), Georgia, serif;

    font-style: italic;

    font-size: 1.35rem;

    color: #f0e2d3;

    line-height: 1.8;

    margin: 0 auto 30px;

    max-width: 560px;
}


/* =========================================================
   GUEST INFORMATION
========================================================= */

.guest-info {
    padding-top: 20px;

    border-top: 1px solid rgba(212,175,55,.18);
}

.guest-info h6 {
    color: #d4af37;

    font-family: var(--font-btn), serif;

    font-size: .9rem;

    letter-spacing: 1px;

    margin: 0 0 5px;
}

.guest-info span {
    color: #a68a76;

    font-size: .72rem;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   CAROUSEL DOTS
========================================================= */

.carousel-dots {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 28px;
}

.carousel-dots button {
    width: 9px;
    height: 9px;

    padding: 0;

    border-radius: 50%;

    border: 1px solid #d4af37;

    background: transparent;

    transition: all .3s ease;
}

.carousel-dots button.active {
    width: 28px;

    border-radius: 10px;

    background: #d4af37;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonial-rani {
        min-height: 560px;

        margin-bottom: 20px;
    }

    .rani-frame {
        width: 360px;
        height: 480px;
    }

    .rani-image {
        max-width: 480px;
    }

    .testimonial-content {
        margin: 0 auto;

        text-align: center;
    }

    .testimonial-content .gold-divider {
        margin-left: auto;
        margin-right: auto;
    }
}


@media (max-width: 575px) {

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonial-rani {
        min-height: 460px;
    }

    .rani-frame {
        width: 290px;
        height: 390px;
    }

    .rani-image {
        max-width: 390px;
    }

    .testimonial-card {
        padding: 40px 25px;
    }

    .testimonial-card p {
        font-size: 1.1rem;
    }

    .quote-mark {
        font-size: 4rem;
    }

    .rani-caption {
        bottom: 20px;
    }
}

/* ---------- Reservation ---------- */
.reservation-section {
  background: var(--color-bg);
}
.reservation-notes {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.reservation-notes li {
  margin-bottom: 10px;
  color: #5a4436;
  font-size: 0.92rem;
}
.reservation-notes i {
  color: var(--color-accent);
  margin-right: 8px;
}
.reservation-form {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.25);
}
.form-floating > .form-control {
  border: 1px solid #e5d5c5;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.form-floating > .form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}
.form-success {
  display: none;
  margin-top: 14px;
  color: #2e7d32;
  font-size: 0.85rem;
  text-align: center;
}
.form-success.show {
  display: block;
}

/* ---------- Contact ---------- */
.contact-section {
  background: linear-gradient(180deg, #fff, var(--color-bg));
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 340px;
  border: 3px solid #fff;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.15) sepia(0.15);
}
.contact-info {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-row i {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-top: 4px;
}
.contact-row h6 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-row p {
  font-size: 0.88rem;
  color: #7a6252;
  margin: 0;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--color-accent);
  color: var(--color-secondary);
  transform: translateY(-3px);
}

/* ---------- Footer: feast backdrop + dome-silhouette top edge ---------- */
.footer{
  position: relative;
  overflow: hidden;
  padding:90px 0 30px;
  color:rgba(246,234,208,.7);
  background:
    linear-gradient(180deg, rgba(20,9,3,.94), rgba(20,9,3,.9) 50%, rgba(20,9,3,.98)),
    url('../img/bg/awadh-feast.png') center 65% / cover no-repeat;
}
/* row of tiny domes along the top — echoes the Rumi Darwaza skyline */
.footer::before{
  content:"";
  position:absolute;
  left:0; right:0; top:-12px;
  height:12px;
  background:radial-gradient(circle at 9px 12px, #140903 9px, transparent 10px) repeat-x;
  background-size:18px 12px;
  pointer-events:none;
}
/* faint jali over the feast */
.footer::after{
  content:"";
  position:absolute; inset:0;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 2 54 28 28 54 2 28Z' fill='none' stroke='%23d4af37' stroke-opacity='.05'/%3E%3C/svg%3E");
  pointer-events:none;
}
.footer .container {
  position: relative;
  z-index: 5;
}


.footer-logo{ width:170px; margin-bottom:18px; }

.footer-subtitle{
  display:block;
  color:#d4af37;
  letter-spacing:.35em;
  text-transform:uppercase;
  font-size:.72rem;
  margin-bottom:18px;
}

.footer-about{
  line-height:1.9;
  color:rgba(246,234,208,.6);
  font-size:.95rem;
}

/* ---------- Titles with gold underline ---------- */
.footer-title{
  position:relative;
  padding-bottom:12px;
  margin-bottom:24px;
  font-family:var(--font-display, 'Cinzel', serif);
  font-size:.95rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:#d4af37;
}
.footer-title::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:44px; height:1px;
  background:linear-gradient(90deg, #d4af37, transparent);
}

/* ---------- Links: ✦ appears on hover ---------- */
.footer-links{ list-style:none; padding:0; }
.footer-links li{ margin-bottom:13px; }
.footer-links a{
  position:relative;
  color:rgba(246,234,208,.6);
  text-decoration:none;
  transition:.3s ease;
}
.footer-links a::before{
  content:"✦";
  position:absolute;
  left:-4px; top:50%;
  transform:translateY(-50%);
  font-size:.6rem;
  color:#d4af37;
  opacity:0;
  transition:.3s ease;
}
.footer-links a:hover{ color:#d4af37; padding-left:18px; }
.footer-links a:hover::before{ opacity:1; left:0; }

/* ---------- Hours ---------- */
.footer-hours h6{
  font-family:var(--font-display, 'Cinzel', serif);
  font-size:.8rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:#f3e7c9;
  margin-bottom:4px;
}
.footer-hours p{ color:rgba(246,234,208,.6); margin-bottom:16px; font-size:.95rem; }
.footer-hours small{ color:rgba(212,175,55,.65); letter-spacing:.08em; }

/* ---------- Contact ---------- */
.footer-contact p{
  display:flex; gap:14px;
  margin-bottom:16px;
  line-height:1.8;
  color:rgba(246,234,208,.6);
  font-size:.95rem;
}
.footer-contact i{ color:#d4af37; font-size:17px; margin-top:5px; flex-shrink:0; }

/* reserve button: gold fill sweeps in */
.footer-btn{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  display:block;
  margin-top:28px;
  padding:14px;
  text-align:center;
  text-decoration:none;
  border:1px solid rgba(212,175,55,.7);
  border-radius:4px;
  font-family:var(--font-display, 'Cinzel', serif);
  font-size:.8rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:#d4af37;
  transition:.4s ease;
}
.footer-btn::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, #d4af37, #f2d675);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .45s ease;
  z-index:-1;
}
.footer-btn:hover{ color:#241108; transform:translateY(-3px); }
.footer-btn:hover::before{ transform:scaleX(1); }

/* ---------- Social medallions ---------- */
.footer-social{ display:flex; gap:14px; margin-top:28px; }
.footer-social a{
  width:44px; height:44px;
  border-radius:50%;
  border:1px solid rgba(212,175,55,.45);
  background:rgba(212,175,55,.08);
  color:#d4af37;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none;
  transition:.4s ease;
}
.footer-social a:hover{
  background:#d4af37;
  color:#1b0d03;
  transform:translateY(-5px);
}

/* ---------- The Nawab portrait, right corner ---------- */
.footer-nawab-col {
  position: static !important;
  display: block !important;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-nawab {
  position: absolute;

  right: -105px;
  bottom: -45px;

  width: 350px;
  max-width: none;

  margin: 0;

  z-index: 1;

  pointer-events: none;
}

/* candle-glow behind the portrait */
/* .footer-nawab::before{
  content:"";
  position:absolute; inset:8% -18% 4%;
  background:radial-gradient(circle at 50% 35%, rgba(212,175,55,.2), transparent 68%);
  z-index:-1;
} */
/* Remove ALL portrait styling */
.footer-nawab img {
  display: block;

  width: 100%;
  height: auto;

  border: none;
  border-radius: 0;
  box-shadow: none;

  object-fit: contain;
}
/* Subtle glow behind Nawab */
.footer-nawab::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  right: 20px;
  bottom: 40px;

  background: radial-gradient(
    circle,
    rgba(212,175,55,.12),
    transparent 70%
  );

  filter: blur(25px);

  z-index: -1;
}

/* ---------- Bottom bar ---------- */
.footer-bottom{
  margin-top:70px;
  padding-top:24px;
  border-top:1px dashed rgba(212,175,55,.3);
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:16px;
}
@media (min-width:1200px){
  .footer-bottom{ padding-right:250px; }  /* keep text clear of the Nawab */
}
.copyright{ color:rgba(246,234,208,.45); font-size:.85rem; }
.crafted{
  color:rgba(212,175,55,.8);
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width:991px){
  .footer{ padding:70px 0 26px; }
  .footer-bottom{ justify-content:center; text-align:center; }
}
.reserve-bottom{
    background:#7d4708;
    color:#e8c08b;
    text-decoration:none;
    padding:18px 45px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.reserve-bottom:hover{
    background:#ff9838;
    color:#fff;
}

.crafted{
    color:#8f633f;
    font-size:14px;
}


/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-hover);
  transform: translateY(-4px);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(31, 18, 13, 0.97);
    margin-top: 14px;
    padding: 20px;
    border-radius: 14px;
  }
  .navbar-nav {
    text-align: center;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .section {
    padding: 80px 0;
  }
}
@media (max-width: 575.98px) {
  .section {
    padding: 64px 0;
  }
  .reservation-form {
    padding: 24px;
  }
  .contact-info {
    padding: 24px;
  }
}


/*==========================
FAQ Section
==========================*/

/* ---------- Section: cream + jali + ghost star watermark ---------- */
.faq-section{
  position:relative;
  padding:110px 0;
  overflow:hidden;
  background:
    radial-gradient(ellipse at 10% 6%, rgba(212,175,55,.09), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 2 54 28 28 54 2 28Z' fill='none' stroke='%23d4af37' stroke-opacity='.06'/%3E%3C/svg%3E"),
    #fbf5ea;
}
.faq-section::after{
  content:"✦";
  position:absolute;
  top:30px; right:-30px;
  font-size:20rem;
  line-height:1;
  color:transparent;
  -webkit-text-stroke:1px rgba(212,175,55,.14);
  pointer-events:none;
}

/* ---------- Sticky intro ---------- */
.faq-intro{ position:sticky; top:110px; }

/* ---------- Concierge card ---------- */
.concierge-card{
  position:relative;
  margin-top:36px;
  padding:30px 30px 32px;
  border-radius:14px;
  background:linear-gradient(160deg, #2b170d, #1c0e07);
  border:1px solid rgba(212,175,55,.45);
  overflow:hidden;
}
.concierge-card::before{
  content:"";
  position:absolute; inset:7px;
  border:1px solid rgba(212,175,55,.22);
  border-radius:9px;
  pointer-events:none;
}
.concierge-seal{
  position:absolute;
  top:-20px; right:-20px;
  width:92px; height:92px;
  border-radius:50%;
  border:1px dashed rgba(212,175,55,.45);
  display:grid; place-items:center;
  color:rgba(212,175,55,.55);
  font-size:1.3rem;
  animation:seal-spin 26s linear infinite;
}
.concierge-card h5{
  font-family:var(--font-display, 'Cinzel', serif);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:15px;
  color:#f3e7c9;
  margin-bottom:8px;
}
.concierge-card p{
  color:rgba(246,234,208,.72);
  font-size:.92rem;
  margin-bottom:18px;
}

/* ---------- Accordion plaques ---------- */
.faq-accordion .accordion-item{
  position:relative;
  border:1px solid rgba(212,175,55,.3);
  border-radius:12px;
  margin-bottom:14px;
  background:#fffdf6;
  overflow:hidden;
  transition:border-color .4s ease, box-shadow .4s ease;
}

/* gold bar draws down the open item */
.faq-accordion .accordion-item::before{
  content:"";
  position:absolute; left:0; top:0; bottom:0;
  width:3px;
  background:linear-gradient(#d4af37, rgba(212,175,55,.15));
  transform:scaleY(0);
  transform-origin:top;
  transition:transform .5s ease;
  z-index:1;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)){
  border-color:rgba(212,175,55,.55);
  box-shadow:0 16px 34px -18px rgba(59,36,24,.35), 0 0 22px rgba(212,175,55,.12);
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed))::before{
  transform:scaleY(1);
}

.faq-accordion .accordion-button{
  position:relative;
  background:transparent;
  box-shadow:none;
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size:1.28rem;
  letter-spacing:.01em;
  color:#3b2418;
  padding:21px 56px 21px 66px;
}
.faq-accordion .accordion-button:focus{ box-shadow:none; }

/* ghost numeral → fills with gold when open */
.faq-num{
  position:absolute;
  left:24px; top:50%;
  transform:translateY(-50%);
  font-family:var(--font-display, 'Cinzel', serif);
  font-size:.95rem;
  color:transparent;
  -webkit-text-stroke:1px rgba(212,175,55,.6);
  transition:.4s ease;
}
.faq-accordion .accordion-button:not(.collapsed) .faq-num{
  color:#d4af37;
  -webkit-text-stroke-color:transparent;
}

/* ✦ instead of chevron — it turns when opened */
.faq-accordion .accordion-button::after{
  background-image:none;
  width:auto; height:auto;
  content:"✦";
  color:#d4af37;
  font-size:1.05rem;
  transform:none;
  transition:transform .5s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after{
  transform:rotate(135deg) scale(1.2);
}
.faq-accordion .accordion-button:not(.collapsed){
  color:#8a5a12;
  background:transparent;
}

/* answer sits under a dashed gold hairline, aligned to the question */
.faq-accordion .accordion-body{
  background:transparent;
  border-top:1px dashed rgba(212,175,55,.4);
  margin:0 24px 0 24px;
  padding:16px 40px 26px 42px;
  color:#6b5233;
  font-size:1rem;
  line-height:1.85;
}

/* ---------- Responsive ---------- */
@media (max-width:991px){
  .faq-intro{ position:static; }
  .faq-section{ padding:80px 0; }
  .faq-accordion .accordion-button{ font-size:1.1rem; padding:18px 44px 18px 56px; }
  .faq-num{ left:18px; }
  .faq-accordion .accordion-body{ padding:14px 20px 22px 32px; }
}

/*=========================
CTA Section
=========================*/

.cta-section{
    position:relative;
    padding:50px 0;
    background:url("../img/cta/cta.png") center center/cover no-repeat;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(22,13,7,.68);
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-title{
    font-family:var(--font-display);
    font-size:2.5rem;
    color:#fff;
    line-height:1.05;
    margin-bottom:20px;
}

.cta-text{
    color:#f2d8b5;
    max-width:700px;
    margin:0 auto 40px;
    font-size:17px;
    line-height:1.8;
}

/* Buttons */

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn-cta-primary{
    background:linear-gradient(90deg,#ff9d3c,#d8a338);
    color:#221209;
    padding:16px 42px;
    border-radius:6px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:.35s;
}

.btn-cta-primary:hover{
    transform:translateY(-4px);
    color:#221209;
    box-shadow:0 15px 35px rgba(255,157,60,.35);
}

.btn-cta-outline{
    padding:16px 40px;
    border:1px solid #ff9d3c;
    color:#fff;
    border-radius:6px;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:1px;
    transition:.35s;
}

.btn-cta-outline i{
    margin-right:8px;
}

.btn-cta-outline:hover{
    background:#ff9d3c;
    color:#221209;
    transform:translateY(-4px);
}

/* Responsive */

@media (max-width:992px){

.cta-section{
    padding:90px 0;
}

.cta-title{
    font-size:3rem;
}

}

@media (max-width:576px){

.cta-title{
    font-size:2.2rem;
}

.cta-text{
    font-size:15px;
}

.cta-buttons{
    flex-direction:column;
}

.btn-cta-primary,
.btn-cta-outline{
    width:100%;
}

}

/* =====================================
   Mobile Responsive Fix
====================================== */

@media (max-width:767px){

html,
body{
    overflow-x:hidden;
}

/* Navbar */

.glass-nav{
    padding:10px 0;
}

.brand-logo img{
    height:48px;
}

#mainNav.scrolled .brand-logo img{
    height:42px;
}

.navbar-collapse{
    padding:20px;
}

/* Hero */

/* .hero{
    min-height:100vh;
    padding-top:90px;
    padding-bottom:70px;
}

.hero-content{
    text-align:center;
}

.hero-eyebrow{
    font-size:11px;
    letter-spacing:2px;
}

.hero-title{
    font-size:34px;
    line-height:1.25;
}

.hero-sub{
    font-size:15px;
    max-width:100%;
    margin-bottom:25px;
}

.hero-btns{
    flex-direction:column;
    gap:15px;
}

.hero-btns .btn-royal,
.hero-btns .btn-outline-royal{
    width:100%;
} */

/* Section */

.section{
    padding:60px 0;
}

.section-title{
    font-size:30px;
}

.section-text{
    max-width:100%;
}

/* About */

.about-badge{
    width:80px;
    height:80px;
    right:5px;
    bottom:5px;
}

.badge-num{
    font-size:22px;
}

.badge-label{
    font-size:10px;
}

/* Cards */

.dish-img-wrap{
    height:180px;
}

.gallery-item{
    height:220px;
}

.gallery-item.tall{
    min-height:220px;
}

.chef-frame{
    margin-bottom:40px;
}

.chef-frame-border{
    display:none;
}

/* Reservation */

.reservation-form{
    padding:20px;
}

/* Contact */

.contact-info{
    padding:20px;
    margin-top:25px;
}

/* Footer */

.footer{
    text-align:center;
}

.footer-logo{
    margin:auto auto 20px;
}

.footer-contact p{
    justify-content:center;
}

.footer-social{
    justify-content:center;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

/* CTA */

.cta-title{
    font-size:32px;
}

.cta-text{
    font-size:15px;
}

.cta-buttons{
    flex-direction:column;
}

.btn-cta-primary,
.btn-cta-outline{
    width:100%;
    text-align:center;
}

}
/*==========================
Stats Section
===========================*/

/* ---------- Stats / Promise ---------- */
.stats-section{
  position:relative;
  padding:90px 0 80px;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(212,175,55,.08), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56' viewBox='0 0 56 56'%3E%3Cpath d='M28 2 54 28 28 54 2 28Z' fill='none' stroke='%23d4af37' stroke-opacity='.05'/%3E%3C/svg%3E"),
    #2b170d;
}

/* gold hairlines top & bottom */
.stats-section::before,
.stats-section::after{
  content:"";
  position:absolute; left:6%; right:6%; height:1px;
  background:linear-gradient(90deg, transparent, rgba(212,175,55,.4), transparent);
}
.stats-section::before{ top:0; }
.stats-section::after{ bottom:0; }

/* ---------- Niche card (Mughal arch) ---------- */
.stat-box{
  position:relative;
  height:100%;
  text-align:center;
  padding:44px 22px 32px;
  border-radius:200px 200px 16px 16px;   /* big value = true arch, auto-scales */
  border:1px solid rgba(212,175,55,.28);
  background:linear-gradient(180deg, rgba(212,175,55,.08), rgba(255,255,255,.02) 45%);
  overflow:hidden;
  transition:transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}

/* inner offset arch line — the double-frame royal look */
.stat-box::before{
  content:"";
  position:absolute; inset:7px;
  border-radius:190px 190px 10px 10px;
  border:1px solid rgba(212,175,55,.22);
  pointer-events:none;
  transition:border-color .45s ease;
}

/* shimmer sweep on hover */
.stat-box::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(105deg, transparent 40%, rgba(212,175,55,.14) 50%, transparent 60%);
  transform:translateX(-130%);
  transition:transform 1s ease;
  pointer-events:none;
}

.stat-box:hover{
  transform:translateY(-8px);
  border-color:rgba(212,175,55,.6);
  box-shadow:0 20px 45px rgba(0,0,0,.45), 0 0 28px rgba(212,175,55,.12);
}
.stat-box:hover::before{ border-color:rgba(212,175,55,.45); }
.stat-box:hover::after{ transform:translateX(130%); }

/* ---------- Icon medallion ---------- */
.stat-icon{
  position:relative;
  width:88px; height:88px;
  margin:0 auto 20px;
  display:grid; place-items:center;
  border-radius:50%;
  border:1px solid rgba(212,175,55,.45);
  background:radial-gradient(circle at 35% 30%, rgba(212,175,55,.18), rgba(212,175,55,.04) 70%);
  transition:box-shadow .45s ease;
}

/* dashed halo ring — rotates on hover */
.stat-icon::after{
  content:"";
  position:absolute; inset:-8px;
  border-radius:50%;
  border:1px dashed rgba(212,175,55,.35);
  transition:transform .8s ease;
}
.stat-box:hover .stat-icon{ box-shadow:0 0 24px rgba(212,175,55,.25); }
.stat-box:hover .stat-icon::after{ transform:rotate(60deg); }

.stat-icon img{
  width:44px; height:44px;
  object-fit:contain;
  /* recolor white line-icons to antique gold */
  filter:sepia(1) saturate(3.4) hue-rotate(-14deg) brightness(1.08);
  transition:transform .45s ease;
}
.stat-box:hover .stat-icon img{ transform:scale(1.1); }

/* ---------- Type ---------- */
.stat-box h5{
  position:relative;
  color:#f3e7c9;
  font-family:var(--font-display, 'Cinzel', serif);
  font-size:17px;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin:0 0 16px;
  padding-bottom:14px;
}

/* line—✦—line ornamental divider */
.stat-box h5::after{
  content:"";
  position:absolute; left:50%; bottom:0;
  width:74px; height:8px;
  transform:translateX(-50%);
  background:
    radial-gradient(circle, #d4af37 1.7px, transparent 2.3px) center / 9px 9px no-repeat,
    linear-gradient(90deg, transparent, rgba(212,175,55,.9)) left center / 26px 1px no-repeat,
    linear-gradient(90deg, rgba(212,175,55,.9), transparent) right center / 26px 1px no-repeat;
}

.stat-box p{
  color:rgba(212,175,55,.85);
  font-family:'Cormorant Garamond', serif;
  font-style:italic;
  font-size:17px;
  letter-spacing:.04em;
  margin:0;
}

/* ---------- Mobile ---------- */
@media (max-width:768px){
  .stats-section{ padding:60px 0 50px; }
  .stat-box{ padding:34px 14px 26px; }
  .stat-icon{ width:72px; height:72px; }
  .stat-icon img{ width:36px; height:36px; }
  .stat-box h5{ font-size:14px; }
  .stat-box p{ font-size:15px; }
  .footer-nawab{
display: none;
  };
}
