/* ===========================================
   AHA INDIAN CUISINE — Brand Custom Styles
   Matches the carry-out menu design language:
   Deep navy + warm gold + elegant serif type
   =========================================== */

:root {
  --aha-navy:   #1a2a6c;
  --aha-navy2:  #0f1a45;
  --aha-gold:   #c9a227;
  --aha-gold2:  #e6c04a;
  --aha-cream:  #fdf8f0;
  --aha-red:    #c41e3a;
  --aha-text:   #3a3a3a;
  --aha-muted:  #777;
}

/* ---- Reset & Base ---- */
body { color: var(--aha-text); background: #fff; }
.style-change { color: var(--aha-gold) !important; }

/* ============================================================
   HEADER
   ============================================================ */
.header-area2 {
  background: rgba(13, 20, 55, 0.9) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 0 !important;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.header-area2.header-scrolled {
  background: var(--aha-navy) !important;
  box-shadow: 0 3px 28px rgba(0,0,0,0.5);
}

.logo-area img { height: 80px !important; }

.header-area .main-menu { margin: 20px 0 !important; }

.main-menu2 ul a {
  color: rgba(255,255,255,0.88) !important;
  font-size: 12.5px !important;
  letter-spacing: 1.4px;
  padding: 18px 13px !important;
  transition: color 0.3s;
  position: relative;
}
.main-menu2 ul li.active > a,
.main-menu2 ul li:hover > a {
  color: var(--aha-gold) !important;
}
.main-menu2 ul a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 13px; right: 13px;
  height: 1.5px;
  background: var(--aha-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.main-menu2 ul li:hover > a::after,
.main-menu2 ul li.active > a::after {
  transform: scaleX(1);
}

/* Mobile hamburger */
.custom-navbar { background: var(--aha-gold) !important; top: -52px; }
.custom-navbar span { background: var(--aha-navy) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.template-btn {
  background: var(--aha-gold) !important;
  color: var(--aha-navy) !important;
  font-weight: 700 !important;
  font-size: 12.5px !important;
  letter-spacing: 2px;
  border: 2px solid var(--aha-gold) !important;
  border-radius: 2px !important;
  padding: 13px 38px !important;
  transition: all 0.3s ease !important;
}
.template-btn:hover {
  background: transparent !important;
  color: var(--aha-gold) !important;
}
.template-btn-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.7) !important;
  font-weight: 600 !important;
  font-size: 12.5px !important;
  letter-spacing: 2px;
  border-radius: 2px !important;
  padding: 13px 38px !important;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
}
.template-btn-ghost:hover {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-color: #fff !important;
  text-decoration: none;
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.banner-area2 {
  padding: 230px 0 170px !important;
  background-image: url('../images/banner-bg.jpg') !important;
}
.banner-area2::after {
  background: linear-gradient(150deg, rgba(13,20,55,0.90) 0%, rgba(13,20,55,0.60) 100%) !important;
}
.banner-area h1 {
  font-size: 68px !important;
  color: #fff !important;
  letter-spacing: 3px;
  text-shadow: 2px 4px 24px rgba(0,0,0,0.4);
  line-height: 1.15;
}
.banner-tagline {
  display: block;
  color: var(--aha-gold);
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.banner-cta { margin-top: 36px; }
.banner-cta .template-btn { margin-right: 14px; }

/* ============================================================
   SECTION HEADINGS & DIVIDERS
   ============================================================ */
.section-top h2, .section-top2 h2 { color: var(--aha-navy) !important; }
.section-top h3, .section-top2 h3 { color: var(--aha-navy) !important; }
.section-top .style-change { color: var(--aha-gold) !important; font-style: italic; }

.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0 50px;
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--aha-gold));
}
.gold-divider::after { background: linear-gradient(to left, transparent, var(--aha-gold)); }
.gold-divider span { color: var(--aha-gold); font-size: 16px; }

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-area { background: var(--aha-cream) !important; }
.welcome-area h3 { color: var(--aha-navy) !important; }
.welcome-area p { color: #5a5a5a; line-height: 1.9; font-size: 15px; }

/* ============================================================
   FOOD CARDS (Featured Dishes)
   ============================================================ */
.food-area {
  background-image: none !important;
  background-color: #fff;
  padding: 90px 0 !important;
}
.single-food {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 18px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}
.single-food:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 42px rgba(0,0,0,0.14);
}
.food-area .food-content {
  background: #fff !important;
  padding: 18px 22px !important;
  border-top: 3px solid var(--aha-gold);
}
.food-area .food-content h5 {
  color: var(--aha-navy) !important;
  font-size: 16px !important;
}
.food-area .food-content .style-change {
  color: var(--aha-gold) !important;
  font-size: 16px !important;
}
.food-area .single-food:hover .food-content {
  background: var(--aha-navy) !important;
}
.food-area .single-food:hover .food-content h5 { color: #fff !important; }
.food-area .single-food:hover .food-content .style-change { color: var(--aha-gold) !important; }

/* ============================================================
   CTA / RESERVATION STRIP
   ============================================================ */
.reservation-area {
  position: relative;
  padding: 100px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.reservation-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,20,55,0.80);
  z-index: 0;
}
.reservation-area .container { position: relative; z-index: 1; }
.reservation-area h2 { color: #fff !important; font-size: 44px !important; }
.reservation-area h2 span { color: var(--aha-gold); }

/* ============================================================
   MENU CATEGORIES SECTION (Homepage — replaces inline menu)
   ============================================================ */
.menu-preview-area {
  background: var(--aha-cream);
  padding: 90px 0;
}
.menu-cat-card {
  background: var(--aha-navy);
  border: 1px solid rgba(201,162,39,0.22);
  border-radius: 5px;
  padding: 38px 20px 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  cursor: default;
}
.menu-cat-card:hover {
  background: #16205e;
  border-color: var(--aha-gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}
.menu-cat-card i {
  font-size: 32px;
  color: var(--aha-gold);
  display: block;
  margin-bottom: 14px;
}
.menu-cat-card h5 {
  color: #fff !important;
  font-size: 13px !important;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0;
  font-family: "Roboto", sans-serif !important;
  font-weight: 600 !important;
}

/* ============================================================
   GALLERY SECTIONS
   ============================================================ */
.gallery-section { padding: 90px 0; background: #fff; }
.gallery-section .single-food { box-shadow: 0 3px 15px rgba(0,0,0,0.1); }

/* ============================================================
   FULL MENU PAGE
   ============================================================ */
.menu-page-area { padding: 70px 0 100px; background: #fff; }

/* Sticky jump nav */
.menu-jump-nav {
  background: var(--aha-navy);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 2px solid var(--aha-gold);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.menu-jump-nav a {
  color: rgba(255,255,255,0.70);
  font-family: "Roboto", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  display: inline-block;
  transition: color 0.25s;
  text-decoration: none;
}
.menu-jump-nav a:hover { color: var(--aha-gold); }

/* Section blocks */
.menu-section-block { margin-bottom: 56px; scroll-margin-top: 60px; }

.menu-section-title {
  background: var(--aha-navy);
  color: var(--aha-gold) !important;
  padding: 14px 24px;
  font-size: 21px !important;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin: 0 0 18px;
  border-left: 5px solid var(--aha-gold);
}

.menu-section-desc {
  color: #777;
  font-size: 14px;
  line-height: 1.8;
  margin: -10px 0 22px;
  max-width: 760px;
}

.menu-subsection-title {
  color: var(--aha-red) !important;
  font-size: 13.5px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 22px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(196,30,58,0.25);
  font-family: "Roboto", sans-serif;
}

/* Item rows */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px dotted #ddd;
  gap: 14px;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1; }
.menu-item-name {
  color: var(--aha-navy);
  font-size: 15px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  margin-bottom: 2px;
}
.menu-item-desc {
  color: #888;
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
}
.menu-item-price {
  color: var(--aha-navy);
  font-size: 15px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  min-width: 64px;
  text-align: right;
}

/* Notes / callouts */
.menu-note {
  background: rgba(201,162,39,0.10);
  border-left: 3px solid var(--aha-gold);
  padding: 9px 16px;
  font-size: 13px;
  color: #666;
  font-style: italic;
  margin: 0 0 18px;
  border-radius: 0 3px 3px 0;
}
.menu-addon {
  font-size: 12px;
  color: #888;
  font-style: italic;
  padding: 4px 0 10px;
}

/* Choose-style selector rows */
.menu-choose-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 12px;
}
.menu-choose-item {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 5px 12px;
  font-size: 13px;
  color: var(--aha-navy);
  font-weight: 500;
}
.menu-choose-item span { color: var(--aha-gold); font-weight: 700; }

/* Two-column menu layout */
.menu-col { padding: 0 20px; }
@media (min-width: 768px) {
  .menu-col { border-right: 1px solid #eee; }
  .menu-col:last-child { border-right: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-widget { background: var(--aha-navy) !important; }
.footer-widget p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.9; }
.footer-widget .single-widget h5 {
  color: var(--aha-gold) !important;
  letter-spacing: 2px;
  font-size: 14.5px !important;
  text-transform: uppercase;
  padding-bottom: 13px;
  margin-bottom: 20px !important;
  border-bottom: 1px solid rgba(201,162,39,0.25);
}
.footer-widget .into-icon i { color: var(--aha-gold) !important; font-size: 16px; }
.footer-widget .info-text p { color: rgba(255,255,255,0.65) !important; margin: 0 0 12px; font-size: 14px; }
.single-widget3 p {
  color: rgba(255,255,255,0.62) !important;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin: 0 !important;
}
.single-widget3 p:last-child { border-bottom: none; }

.footer-copyright { background: var(--aha-navy2) !important; padding: 25px 0; }
.footer-copyright span { color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-copyright a { color: var(--aha-gold); }
.footer-copyright .social-icons ul li i { color: rgba(255,255,255,0.55) !important; transition: color 0.3s; }
.footer-copyright .social-icons ul li i:hover { color: var(--aha-gold) !important; }

/* ============================================================
   ORDER ONLINE PAGE
   ============================================================ */

/* Lock page scroll — only the iframe scrolls */
body.order-page {
  overflow: hidden;
  height: 100vh;
}

/* Hide main site header on order page — Square Online has its own */
body.order-page .header-area { display: none !important; }

/* Info bar — slim strip below header */
.order-info-bar {
  background: var(--aha-navy);
  border-bottom: 2px solid var(--aha-gold);
  padding: 8px 0;
  height: 56px;
  flex-shrink: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}
.order-info-bar .info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 4px 18px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.order-info-bar .info-pill:last-child { border-right: none; }
.order-info-bar .info-pill i {
  color: var(--aha-gold);
  font-size: 14px;
  flex-shrink: 0;
}
.order-info-bar .info-pill strong { color: #fff; }

/* iframe fills everything below info bar */
.order-iframe-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  /* push content below info bar (56px) — header is hidden */
  padding-top: 56px;
  background: #fff;
  z-index: 1;
}
.order-iframe-wrapper {
  flex: 1;
  overflow: hidden;
  width: 100%;
}
.order-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Mobile: show button, hide iframe */
.order-mobile-fallback {
  display: none;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--aha-cream);
}
.order-mobile-fallback p {
  color: #666;
  margin-bottom: 24px;
  font-size: 15px;
  max-width: 320px;
}
@media (max-width: 767px) {
  .order-info-bar .info-pill {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    padding: 7px 0;
    width: 100%;
    display: flex;
  }
  .order-info-bar .info-pill:last-child { border-bottom: none; }
  .order-iframe-wrapper { display: none; }
  .order-mobile-fallback { display: flex; }
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 991px) {
  .banner-area h1 { font-size: 48px !important; }
  .banner-area2 { padding: 160px 0 120px !important; }
  .logo-area img { height: 65px !important; }
  .custom-navbar { top: -58px !important; }
  .main-menu2 ul a::after { display: none; }
}
@media (max-width: 767px) {
  .banner-area h1 { font-size: 38px !important; letter-spacing: 1px; }
  .banner-area2 { padding: 140px 0 100px !important; }
  .banner-cta .template-btn { margin-right: 0; margin-bottom: 12px; display: block; }
  .banner-cta .template-btn-ghost { display: block; }
  .reservation-area h2 { font-size: 32px !important; }
  .menu-jump-nav { display: none; }
  .menu-col { border-right: none; border-bottom: 1px solid #eee; margin-bottom: 30px; }
}
@media (max-width: 575px) {
  .banner-area h1 { font-size: 30px !important; }
  .custom-navbar { top: -68px !important; }
}
