.elementor-218 .elementor-element.elementor-element-73cc241{margin-top:0px;margin-bottom:0px;}.elementor-218 .elementor-element.elementor-element-b488408 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0px 0px 0px 0px;}.elementor-218 .elementor-element.elementor-element-13cbb9e > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-218 .elementor-element.elementor-element-eca17bf{margin-top:-81px;margin-bottom:0px;}.elementor-218 .elementor-element.elementor-element-1aa1dab{width:100%;max-width:100%;}@media(max-width:767px){.elementor-218 .elementor-element.elementor-element-13cbb9e > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-218 .elementor-element.elementor-element-496ed2d{width:100%;max-width:100%;}.elementor-218 .elementor-element.elementor-element-496ed2d > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-11fd832 *//* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell,
               "Open Sans", "Helvetica Neue", sans-serif;
}

/* ===== MENU HERO ===== */
.menu-hero {
  width: 100%;
  height: 40vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.menu-hero-inner {
  max-width: 900px;
}

/* Fork & Spoon Icon */
.menu-icon {
  font-size: 48px;
  margin-bottom: 12px;
  color: #E6C78B;
}

/* Heading */
.menu-hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell,
               "Open Sans", "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  color: rgb(230, 199, 139);
  margin-bottom: 14px;
}

/* Divider */
.menu-divider {
  display: block;
  width: 80px;
  height: 2px;
  background: #E6C78B;
  margin: 18px auto;
}

/* Description */
.menu-hero p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell,
               "Open Sans", "Helvetica Neue", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  color: oklab(0.999994 0.0000455677 0.0000200868 / 0.8);
}

/* ===== MENU SECTION ===== */
.akasa-menu-section {
  width: 100%;
  min-height: 60vh;
  background: #000;
  padding: 50px 30px;
}

/* ===== GRID (NARROWER COLUMNS) ===== */
.akasa-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* ===== MENU CARD ===== */
.menu-card {
  background: #111;
  border: 1px solid #222;
  text-align: center;
  padding-bottom: 22px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
}

/* ===== IMAGE (REDUCED SIZE) ===== */
.menu-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

/* ===== FOOD NAME ===== */
.menu-card h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgb(255, 255, 255);
  margin: 14px 10px 6px;
}

/* ===== DESCRIPTION ===== */
.menu-card p {
  font-size: 14px;
  color: #bdbdbd;
  padding: 0 14px;
  line-height: 1.5;
  min-height: 44px;
}

/* ===== BUTTON ===== */
.menu-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 24px;
  border-radius: 30px;
  background: #1A2A3A;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  background: #E6C78B;
  color: #000;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .akasa-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .akasa-menu-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .menu-hero h1 {
    font-size: 42px;
    line-height: 46px;
  }
}
/* ===== REMOVE HOVER FROM MENU CARDS ===== */
.menu-card:hover {
  transform: none;
}

/* ===== REMOVE BUTTON HOVER EFFECT ===== */
.menu-btn:hover {
  background: #1A2A3A;
  color: #fff;
}

/* ===== BUTTON ALWAYS IN ONE ROW ===== */
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
/* ===== BUTTON ALIGNMENT FIX (PASTE AT END) ===== */

/* Make card a flex column */
.menu-card {
  display: flex;
  flex-direction: column;
}

/* Allow description to push button down */
.menu-card p {
  flex-grow: 1;
}

/* Lock button to same horizontal line */
.menu-btn {
  margin-top: auto;
  align-self: center;
}

/* ===== BUTTON HOVER COLOR ===== */
.menu-btn:hover {
  background: #E6C78B;
  color: #000;
}
/* ===== FORCE FULL BLACK BACKGROUND (HEADER + MENU) ===== */

/* Header (common theme .elementor-218 .elementor-element.elementor-element-11fd832s) */
header,
.site-header,
#site-header,
.elementor-header,
.main-header {
  background: #000 ;
}

/* Remove container width restriction */
header,
.menu-hero,
.akasa-menu-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #000 ;
}

/* Safety: prevent horizontal scroll */
html, body {
  overflow-x: hidden;
  background: #000;
}
/* ===== REMOVE GAP BETWEEN HEADER & SECTION ===== */
header,
.site-header,
#site-header,
.elementor-header {
  margin-bottom: 0 ;
  padding-bottom: 0;
}

/* Remove top spacing from first section */
.menu-hero {
  margin-top: 0 ;
  padding-top: 0;
}

/* ===== HIDE PAGE TITLE / PAGE NAME ===== */
.page-title,
.entry-title,
.page-header,
.elementor-page-title,
h1.entry-title {
  display: none;
}

/* ===== ENSURE FULL BLACK CONTINUITY ===== */
header,
.menu-hero,
.akasa-menu-section {
  background: #000;
}
/* Remove default top padding added by theme */
.site-content,
#content,
.elementor-section-wrap {
  padding-top: 0 ;
  margin-top: 0 ;
}
/* Remove gap between header and section */
header,
.site-header,
#site-header,
.elementor-header {
  margin-bottom: 0 ;
  padding-bottom: 0 ;
}

/* First section touch header */
.menu-hero {
  margin-top: 0 ;
  padding-top: 0 ;
}

/* Extra safety for WordPress themes */
.site-content,
#content,
.elementor-section-wrap {
  margin-top: 0 ;
  padding-top: 0 ;
}

/* ===== REMOVE WHITE SPACE BETWEEN HEADER & MENU ===== */

/* Kill all top spacing from page wrappers */
html, body {
  margin: 0 ;
  padding: 0 ;
  background: #000;
}

/* Common WordPress / theme wrappers */
main,
#main,
.site-main,
.site-content,
#content,
.page,
.entry-content,
.elementor,
.elementor-page,
.elementor-section-wrap {
  margin-top: 0 ;
  padding-top: 0 ;
}

/* Header bottom spacing */
header,
.site-header,
#site-header,
.elementor-header {
  margin-bottom: 0 ;
  padding-bottom: 0 ;
  background: #000 ;
}

/* First section touching header */
.menu-hero {
  margin-top: 0 ;
  padding-top: 0 ;
  background: #000 ;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-13cbb9e *//* ===== CHEF SECTION ===== */
.chef-section {
  width: 100%;
  background: #000;
  padding: 100px 60px;
}

.chef-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT IMAGE */
.chef-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* RIGHT CONTENT */
.chef-content {
  color: #fff;
}

/* Heading */
.chef-heading {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell,
               "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 18px;
}

/* Chef Name */
.chef-name {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  color: rgb(230, 199, 139);
  margin-bottom: 30px;
}

/* Description Text */
.chef-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell,
               "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: oklab(0.999994 0.0000455678 0.0000200868 / 0.9);
  margin-bottom: 22px;
}

/* TAG BUTTONS */
.chef-tags {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.chef-tags span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #1A2A3A;
  border-radius: 40px;
  font-size: 15px;
  color: #fff;
}

/* Gold Dot */
.chef-tags span i {
  width: 8px;
  height: 8px;
  background: #E6C78B;
  border-radius: 50%;
  display: inline-block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .chef-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  
  
  
  .chef-heading {
    font-size: 42px;
    line-height: 46px;
  }
}
.chef-section {
  width: 100%;
  background: #000;
  margin: 0;
  padding: 80px 0;
}

.chef-container {
  max-width: 100%;
  padding: 0 80px;
}
.chef-image {
  position: relative;
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.chef-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  transition: all 0.4s ease;
}
/* Hover border */
.chef-image:hover img {
  border: 2px solid #E6C78B;
}

/* Overlay chef name */
.chef-overlay-name {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 22px;
  color: #E6C78B;
  opacity: 0;
  border-bottom: 2px solid #E6C78B;
  padding-bottom: 4px;
  transition: all 0.4s ease;
}

/* Show name on hover */
.chef-image:hover .chef-overlay-name {
  opacity: 1;
}
/* IMAGE CROP FIX */
.chef-image {
  position: relative;
  width: 100%;
  height: 480px;            /* reduced height */
  overflow: hidden;
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* pushes image down → ceiling cropped */
  border-radius: 18px;
  transition: all 0.4s ease;
}
/* ===== CHEF NAME ON IMAGE (CENTERED + ONE LINE) ===== */
.chef-overlay-name {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);

  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: rgb(255, 255, 255);

  padding-bottom: 10px;
  text-align: center;
  white-space: nowrap;   /* 🔑 FORCE SINGLE LINE */
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* GOLD UNDERLINE (CENTERED) */
.chef-overlay-name::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 8px auto 0;
  background-color: #E6C78B;
}

/* SHOW ON HOVER */
.chef-image:hover .ch
/* ===== REMOVE ALL WHITE SPACE AROUND CHEF SECTION ===== */

/* Page & body */
html, body {
  margin: 0 ;
  padding: 0 ;
  background: #000 ;
  overflow-x: hidden;
}

/* Elementor / theme wrappers */
main,
#main,
.site-main,
.site-content,
#content,
.elementor-section-wrap,
.elementor-section,
.elementor-container {
  margin: 0 ;
  padding: 0;
  background: #000 ;
}

/* FORCE chef section full width + black */
.chef-section {
  width: 100% ;
  margin: 0 ;
  padding: 80px 0 ;
  background: #000 ;
}

/* Remove inner container side gaps */
.chef-container {
  max-width: 100% ;
  padding-left: 80px;
  padding-right: 80px;
}

/* TOUCH previous & next sections */
.menu-hero,
.akasa-menu-section,
.chef-section {
  margin-bottom: 0 ;
  margin-top: 0 ;
}

/* ================================
   1️⃣ INCREASE IMAGE HEIGHT
================================ */
.chef-image {
  height: 920px;            /* increased height */
}

.chef-image img {
  height: 100%;
  object-fit: cover;
}


/* ================================
   2️⃣ SHIFT IMAGE LEFT
================================ */
.chef-container {
  padding-left: 30px;      /* reduced left padding */
  padding-right: 0;        /* allow text to go till edge */
}

/* Move image slightly left */
.chef-image {
  margin-left: 000px;      /* shift image left */
}


/* ================================
   3️⃣ DESCRIPTION TOUCH RIGHT EDGE
================================ */
.chef-content {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

/* Paragraphs stretch till screen edge */
.chef-text {
  max-width: 100%;
}

/* ===== SHOW MORE BOTTOM PART OF IMAGE ===== */
.chef-image {
  height: 1000px;          /* height adjust (900–1100 try kar sakti ho) */
  overflow: hidden;
}

/* Image crop control */
.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%; /* 🔑 niche ka part zyada visible */
}
/* ===== CINEMATIC CHEF IMAGE FIX ===== */
.chef-image {
  position: relative;
  height: 1000px;          /* tall image */
  overflow: hidden;
}

/* Image crop control */
.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%; /* 👈 face center, bottom visible */
  border-radius: 18px;
}

/* Bottom smoke / fog fade */
.chef-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.0)
  );
  pointer-events: none;
}
/* ===== CHEF NAME ON IMAGE (FOG KE UPAR) ===== */
.chef-overlay-name {
  position: absolute;
  bottom: 70px;              /* fog se upar */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;

  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: rgb(255, 255, 255);

  text-align: center;
  white-space: nowrap;
  opacity: 1;                /* always visible */
}

/* GOLD UNDERLINE */
.chef-overlay-name::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 8px auto 0;/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f6ef962 */.featured-dishes {
  background: #000;
  padding: 80px 20px;
  text-align: center;
}

.featured-content {
  max-width: 900px;
  margin: 0 auto;
}

/* ICON */
.featured-icon {
  font-size: 28px;
  color: #E6C78B;
  margin-bottom: 20px; /* Space before heading */
}

/* HEADING */
.featured-dishes h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  color: #E6C78B;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.featured-dishes p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 33px;
  color: rgba(255, 255, 255, 0.8);
}/* End custom CSS */