* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f7f1e5;
  color: #1e1e1e;
  overflow-x: hidden;
}

/* =====================
   NAVBAR – CALM & PREMIUM
===================== */
/* NAVBAR */
.wada-navbar{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  height:90px;
  padding:0 40px;
  background:rgba(30, 151, 84, 0.966);
  backdrop-filter:blur(10px);
  border-radius:60px;
  display:flex;
  align-items:center;
  z-index:999;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* LEFT + RIGHT MENU WRAPPER */
.nav-left-menu,
.nav-right-menu{
  display:flex;
  gap:30px;
  flex:1;                 /* 🔥 balance both sides */
}

/* LEFT ALIGN */
.nav-left-menu{
  justify-content:flex-start;
}

/* RIGHT ALIGN */
.nav-right-menu{
  justify-content:flex-end;
}

/* MENU LINKS */
.desktop-menu a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  letter-spacing:.4px;
  position:relative;
}

.desktop-menu a{
  padding:8px 18px;
  border-radius:30px;
  transition:.35s ease;
}

.desktop-menu a:hover{
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(6px);
}

/* CENTER LOGO – NEVER MOVES */
.nav-logo{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  perspective:800px; /* 🔥 3D depth */
}

.nav-logo img{
  width:85px;
  height:85px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.7);
  transition:transform .8s ease;
  transform-style:preserve-3d;
  position: relative;
  top: 2px;
}

/* COIN SPIN */
.nav-logo:hover img{
  transform:rotateY(360deg);
}


/* MOBILE TOGGLE */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:2px;
  background:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){

  .desktop-menu{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .wada-navbar{
    height:80px;
    padding:0 24px;
    justify-content: flex-end;
  }

  .nav-logo img{
    width:77px;
    height:77px;
  }
}

/* OFFCANVAS */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  height: 100vh;
  background: #2f4f3f;
  padding: 120px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: 0.5s ease;
  z-index: 998;
}

.offcanvas-menu a {
  color: #f7f1e5;
  font-size: 22px;
  font-family: "Cinzel", serif;
  text-decoration: none;
}

/* OVERLAY */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 997;
}

/* ACTIVE */
.offcanvas-menu.active {
  right: 0;
}

.offcanvas-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .wada-navbar {
    height: 80px;
    padding: 0 24px;
  }
}

/* =====================
   HERO SECTION
===================== */
.hero-wada {
  position: relative;
  min-height: 50vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 120px 8% 80px;
  overflow: hidden;

  /* 🌿 SOFT OLIVE + CREAM (EYE RELAX) */
  background: linear-gradient(
      120deg,
      rgba(94, 48, 42, 0.589) 0%,
      rgba(122, 92, 74, 0.61) 48%,
      rgba(248, 246, 240, 0.836) 48%,
      rgba(248, 246, 240, 0.418) 100%
    ),
    url("images/dining8.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
 
}

/* 🌾 SOFT TEXTURE OVERLAY */
.hero-wada::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 7px
  );
  pointer-events: none;
}

/* 🌿 LIGHT VIGNETTE */
.hero-wada::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 55%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
}
.wada-circle img{
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 50%;
}
/* CONTENT ABOVE IMAGE */
.hero-content,
.hero-art {
  position: relative;
  z-index: 2;
}

.highlight{
  font-weight: 500;
font-size: 30px;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-wada {
    grid-template-columns: 1fr;
    background: linear-gradient(
        180deg,
        rgba(63, 127, 99, 0.96),
        rgba(42, 94, 74, 0.96)
      ),
      url("images/wada-bg.jpg");
    padding: 140px 6% 80px;
  }
}

/* LEFT */
.hero-content {
  max-width: 420px;
  z-index: 2;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: 52px;
  line-height: 1.2;
  color: #f6f4ee;
  animation: fadeUp 1s ease forwards;
}

.hero-title span {
  color: #63c94a; /* muted red (soft logo red) */
}

.hero-sub {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #e6ebe7;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-buttons {
  margin-top: 35px;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

.btn-primary {
  background: #3f7f63; /* olive green */
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  margin-right: 14px;
  box-shadow: 0 12px 28px rgba(63, 127, 99, 0.35);
}

.btn-secondary {
  border: 2px solid #f6f4ee;
  color: #f6f4ee;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
}

/* RIGHT */
.hero-art {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ORGANIC SHAPE */
.organic-shape {
  position: absolute;
  width: 420px;
  height: 420px;
  background: #cfe3d8;
  border-radius: 60% 40% 55% 45% / 55% 45% 60% 40%;
  opacity: 0.4;
  z-index: 0;
  animation: shapeFloat 8s infinite alternate ease-in-out;
}

/* FOOD IMAGES */
.food-img {
  position: absolute;
  width: 220px;
  z-index: 2;
  animation: floatFood 6s infinite ease-in-out;
}

.food-img.veg {
  left: 8%;
  top: 5%;
}

/* WADA STAMP */
.wada-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 3px dashed #c94a4a;
  background: #f8f6f0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 22px;
  color: #3f7f63;
  z-index: 3;
  animation: slowRotate 18s linear infinite;
}

/* =====================
   ANIMATIONS
===================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatFood {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes shapeFloat {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =====================
   MOBILE FINAL
===================== */
@media (max-width: 900px) {
  .hero-wada {
    grid-template-columns: 1fr;
    background: #3f7f63;
    padding: 140px 6% 80px;
  }

  .hero-art {
    margin-top: 60px;
    height: auto;
  }

  .food-img {
    position: relative;
    width: 180px;
    margin: 15px auto;
    display: block;
  }

  .organic-shape {
    display: none;
  }
}

/* =====================
   ORBIT SYSTEM
===================== */

.hero-art {
  position: relative;
  width: 520px;
  height: 520px;
  margin: auto;
}

/* 🌾 CENTER FIXED CIRCLE */
.wada-circle {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #f7f1e5;
  border: 3px dashed #e31e25;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 24px;
  color: #049646;
  z-index: 3;
}

/* 🔄 ORBIT SYSTEM */
.orbit {
  position: absolute;
  inset: 0;
  animation: orbitRotate 22s linear infinite;
}

/* 🍽 IMAGES COMMON STYLE */
.food-img {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ⭕ PERFECT CIRCLE POSITIONS */
.food-img.one {
  top: -15px;
  left: 40%;
  transform: translateX(-50%);
}

.food-img.two {
  right: -15px;
  top: 40%;
  transform: translateY(-50%);
}

.food-img.three {
  bottom: -15px;
  left: 30%;
  transform: translateX(-50%);
}

.food-img.four {
  left: -5px;
  top: 20%;
  transform: translateY(-50%);
}

/* 🌀 ROTATION */
@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



@media (max-width: 900px) {

  /* HERO LAYOUT */
  .hero-wada{
    grid-template-columns:1fr;
    padding:120px 6% 80px;
    text-align:center;
  }

  /* LEFT CONTENT */
  .hero-content{
    max-width:100%;
    margin:auto;
  }

  .hero-title{
    font-size:36px;
    line-height:1.25;
  }

  .hero-sub{
    font-size:15px;
  }

  /* BUTTONS FIX */
  .hero-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
    align-items:center;
  }

  .hero-buttons a{
    width:100%;
    max-width:260px;
    text-align:center;
  }

  /* RIGHT VISUAL SAME BUT SMALLER */
  .hero-art{
    width:100%;
    max-width:360px;
    height:360px;
    margin:60px auto 0;
  }

  /* CENTER BADGE */
  .wada-circle{
    width:170px;
    height:170px;
    font-size:18px;
  }

  /* ORBIT – KEEP ROTATING */
  .orbit{
    animation:orbitRotate 22s linear infinite;
  }

  /* FOOD IMAGES SCALE */
  .food-img{
    width:95px;
    height:95px;
  }

  .food-img.one{
    top:-9px;
    left:21%;
    transform:translateX(-50%);
  }

  .food-img.two{
    right:-40px;
    top:19%;
    transform:translateY(-50%);
  }

  .food-img.three{
    bottom:-12px;
    left:50%;
    transform:translateX(-50%);
  }

  .food-img.four{
    left:-35px;
    top:41%;
    transform:translateY(-50%);
  }
}

/* =====================
   WADA EXPERIENCE
===================== */
.wada-experience {
  padding: 120px 8%;
  background: #f8f6f0; /* soft cream */
}

.wada-exp-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.wada-exp-text .exp-tag {
  display: inline-block;
  padding: 6px 16px;
  background: #3f7f63; /* olive green */
  color: #fff;
  font-size: 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.wada-exp-text h2 {
  font-family: "Cinzel", serif;
  font-size: 42px;
  line-height: 1.2;
  color: #2f4f3f; /* deep olive text */
}

.wada-exp-text h2 span {
  color: #c94a4a; /* muted logo red */
}

.wada-exp-text p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #3e4a45; /* soft dark gray-green */
}

.wada-exp-text .small {
  font-size: 14px;
  color: #6b6f6c;
}

/* IMAGES – ZIG ZAG */
.wada-exp-images {
  position: relative;
  height: 420px;
}

.wada-exp-images img {
  position: absolute;
  width: 260px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
  transition: transform 0.4s ease;
}

.wada-exp-images img:hover {
  transform: translateY(-6px);
}

.img-one {
  top: 0;
  left: 0;
}

.img-two {
  top: 80px;
  right: 0;
}

.img-three {
  bottom: 0;
  left: 60px;
}

/* MOBILE */
@media (max-width: 900px) {
  .wada-exp-wrap {
    grid-template-columns: 1fr;
  }

  .wada-exp-images {
    height: 360px;
    margin-top: 40px;
  }

  .wada-exp-images img {
    width: 220px;
  }
}

/* =====================
   SIGNATURE THALI
===================== */
/* =========================
   SIGNATURE THALI SECTION
========================= */
.signature-thali{
  padding:120px 8%;
  background:#2f4f3f;
  color:#ffffff;
  overflow:hidden;
  text-align:center;
}

/* =========================
   HEADING
========================= */
.signature-thali h2{
  font-size:48px;
  font-family:"Cinzel", serif;
  margin-bottom:10px;
}

.signature-thali h2 span{
  color:#c94a4a;
}

/* =========================
   MARQUEE WRAPPER
========================= */
.marquee{
  margin-top:70px;
  width:100%;
  overflow:hidden;
  position:relative;
}

/* =========================
   MARQUEE TRACK
========================= */
.marquee-track{
  display:flex;
  gap:40px;
  width:max-content;
  animation:marqueeScroll 28s linear infinite;
}

/* pause on hover */
.marquee-track:hover{
  animation-play-state:paused;
}

/* =========================
   THALI CARD (FIXED SIZE)
========================= */
.thali-card{
  background:#ffffff;
  border-radius:28px;
  padding:30px 24px;
  min-width:320px;
  height:380px;               /* 🔥 CARD HEIGHT FIXED */
  text-align:center;

  box-shadow:0 18px 40px rgba(0,0,0,.15);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;

  transition:transform .35s ease, box-shadow .35s ease;
}

.thali-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 55px rgba(0,0,0,.22);
}

/* =========================
   IMAGE
========================= */
.thali-card img{
  width:180px;
  height:120px;
  object-fit:cover;
  margin-bottom:18px;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.15));
}

/* =========================
   TITLE
========================= */
.thali-card h3{
  font-size:22px;
  color:#3f7f63;
  margin-bottom:10px;
}

/* =========================
   TEXT (NO CARD STRETCH)
========================= */
.thali-card p{
  font-size:14px;
  line-height:1.6;
  color:#5f6b65;

  display:-webkit-box;
  -webkit-line-clamp:3;   /* max 3 lines */
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* =========================
   MARQUEE ANIMATION
========================= */
@keyframes marqueeScroll{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:900px){
  .signature-thali{
    padding:90px 6%;
  }

  .signature-thali h2{
    font-size:36px;
  }

  .thali-card{
    min-width:260px;
    height:360px;
  }
}

/* CARD */
.thali-card{
  background:#fff;
  border-radius:28px;
  padding:28px 22px;
  min-width:320px;
  height:380px;

  box-shadow:0 18px 40px rgba(0,0,0,.15);
  transition:.35s ease;

  display:flex;
  flex-direction:column;
  align-items:center;
}

/* hover */
.thali-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 55px rgba(0,0,0,.22);
}

/* IMAGE WRAPPER (IMPORTANT FIX) */
.thali-img{
  width:100%;
  height:150px;              /* 🔥 FIXED IMAGE AREA */
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
}

.thali-img img{
  max-width:180px;
  max-height:130px;
  object-fit:contain;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.15));
}

/* TITLE */
.thali-card h3{
  font-size:22px;
  color:#3f7f63;
  margin-bottom:10px;
}

/* TEXT – NEVER EXPANDS CARD */
.thali-card p{
  font-size:14px;
  line-height:1.6;
  color:#5f6b65;
  text-align:center;

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* MOBILE */
@media(max-width:900px){
  .thali-card{
    min-width:260px;
    height:360px;
  }
}

/* GLOBAL FIX */
*{
  box-sizing:border-box;
}

/* MARQUEE TRACK */
.marquee-track{
  display:flex;
  gap:40px;
  animation:marqueeScroll 28s linear infinite;
}

/* CARD – WIDTH 100% LOCKED */
.thali-card{
  width:320px;              /* 🔥 FIXED WIDTH (NO min-width) */
  height:380px;
  background:#fff;
  border-radius:28px;
  padding:28px 22px;

  box-shadow:0 18px 40px rgba(0,0,0,.15);

  display:flex;
  flex-direction:column;
  align-items:center;

  overflow:hidden;          /* 🔥 MOST IMPORTANT */
  flex-shrink:0;            /* 🔥 marquee fix */
}

/* IMAGE AREA */
.thali-img{
  width:100%;
  height:180px;
  border-radius:18px;
  overflow:hidden;
  margin-bottom:16px;
  background:#f4f4f4; /* fallback bg */
}

.thali-img img{
  width:100%;
  height:100%;
  object-fit:cover;   /* 🔥 KEY CHANGE */
  display:block;
}

/* TITLE */
.thali-card h3{
  font-size:22px;
  color:#3f7f63;
  margin-bottom:8px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* TEXT – NEVER AFFECT WIDTH */
.thali-card p{
  font-size:14px;
  line-height:1.6;
  color:#5f6b65;
  text-align:center;

  max-width:100%;
  overflow:hidden;

  word-break:break-word;
  overflow-wrap:break-word;
  hyphens:auto;

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
}

/* MOBILE */
@media(max-width:900px){
  .thali-card{
    width:260px;
    height:360px;
  }
}
/* =====================
   WHY WADA – CINEMATIC
===================== */
.why-wada-cinematic {
  position: relative;
  padding: 140px 8%;
  background-color: #2f4f3f;
  color: #f6f4ee;
  overflow: hidden;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.10' stroke-width='2'%3E%3Cpath d='M0 140 Q80 120 160 140 T320 140 T480 140'/%3E%3Cpath d='M0 165 Q100 145 200 165 T400 165'/%3E%3Cpath d='M0 190 Q120 170 240 190 T480 190'/%3E%3Cline x1='60' y1='20' x2='60' y2='80'/%3E%3Cline x1='120' y1='30' x2='120' y2='90'/%3E%3Cline x1='300' y1='25' x2='300' y2='85'/%3E%3Ccircle cx='340' cy='40' r='4'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 420px;

}
.why-wada-cinematic::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(47,79,63,0.6);
  pointer-events:none;
}

/* SOFT TEXTURE */


.why-inner {
  position: relative;
  z-index: 2;
}

/* HEADING */
.why-heading span {
  font-size: 12px;
  letter-spacing: 3px;
  color: #e6ebe7;
}

.why-heading h2 {
  margin-top: 15px;
  font-family: "Cinzel", serif;
  font-size: 48px;
  line-height: 1.2;
}

.why-heading h2 b {
  color: #c94a4a; /* muted red */
}

/* PANELS */
.why-panels {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* PANEL */
.panel {
  position: relative;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.panel i {
  font-size: 32px;
  color: #e6ebe7;
}

.panel h3 {
  margin-top: 20px;
  font-size: 22px;
  font-family: "Cinzel", serif;
}

.panel p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.7;
  color: #dce3de;
}

/* HIGHLIGHT PANEL */
.panel.highlight {
  background: #f8f6f0;
  color: #2f4f3f;
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.panel.highlight i {
  color: #c94a4a;
}

.panel.highlight p {
  color: #5f6b65;
}

/* HOVER */
.panel:hover {
  transform: translateY(-12px);
}

/* MOBILE */
@media (max-width: 900px) {
  .why-panels {
    grid-template-columns: 1fr;
  }

  .panel.highlight {
    transform: none;
  }
}

/* =====================
   DINING EXPERIENCE
===================== */
.dining-experience {
  padding: 140px 0;
  background: #f8f6f0; /* premium cream */
}

/* =====================
   CREATIVE HEADING
===================== */

.creative-head {
  padding: 0 8%;
  position: relative;
}

.creative-head span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  color: #5f6b65; /* muted olive */
  margin-bottom: 20px;
}

.creative-head h2 {
  font-family: "Cinzel", serif;
  font-size: 52px;
  line-height: 1.05;
  color: #2f4f3f;
  max-width: 540px;
}

/* GAAV */
.creative-head h2 em {
  display: block;
  font-style: normal;
  font-size: 34px;
  opacity: 0.55;
}

/* CITY */
.creative-head h2 strong {
  display: block;
  font-size: 68px;
  font-weight: 700;
  color: #c94a4a; /* muted logo red */
  margin-left: 40px;
}

/* COMFORT */
.creative-head h2 b {
  display: block;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-left: 120px;
  opacity: 0.8;
}

/* =====================
   DINING TRACK
===================== */

.dining-track {
  margin-top: 80px;
  display: flex;
  gap: 40px;
  padding: 0 8%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.dining-track::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.dining-item {
  min-width: 360px;
  height: 480px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease;
}

.dining-item:hover {
  transform: translateY(-10px);
}

.dining-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
/* OVERLAY – DEFAULT HIDDEN */
.dining-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.25),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #f6f4ee;

  opacity: 0;                     /* 👈 hidden */
  transform: translateY(30px);    /* 👈 niche se */
  transition: 0.45s ease;
}

/* TEXT STYLE */
.dining-item h3 {
  font-family: "Cinzel", serif;
  font-size: 26px;
  transform: translateY(10px);
  transition: 0.45s ease;
}

.dining-item p {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0;
  transition: 0.45s ease 0.1s;
}

/* 🟢 HOVER EFFECT */
.dining-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.dining-item:hover h3 {
  transform: translateY(0);
}

.dining-item:hover p {
  opacity: 0.95;
}


/* =====================
   MOBILE
===================== */
@media (max-width: 900px) {
  .creative-head h2 {
    font-size: 42px;
  }

  .creative-head h2 strong {
    font-size: 56px;
    margin-left: 20px;
  }

  .creative-head h2 b {
    margin-left: 60px;
  }

  .dining-item {
    min-width: 300px;
    height: 420px;
  }
}

/* =====================
   CUSTOMER MOMENTS
===================== */
.customer-moments {
  position: relative;
  padding: 150px 8%;
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("images/family.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #f7f1e5;
  overflow: hidden;
}

/* SOFT TEXTURE */
.moments-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 7px
  );
  z-index: 1;
}

/* CONTENT */
.moments-content {
  position: relative;
  max-width: 820px;
  margin: auto;
  text-align: center;
  z-index: 2;
}

.moments-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 5px;
  margin-bottom: 22px;
  color: #ffd8a8;
  opacity: 0.9;
}

.customer-moments h2 {
  font-family: "Cinzel", serif;
  font-size: 52px;
  line-height: 1.2;
}

.customer-moments h2 b {
  color: #ffd8a8;
}

.moments-line {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.9;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* POINT CARDS */
.moments-points {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.point {
  padding: 40px 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  transition: 0.35s ease;
}

.point:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.16);
}

.point h4 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  margin-bottom: 14px;
  color: #ffd8a8;
}

.point p {
  font-size: 14px;
  line-height: 1.75;
  color: #f0e6da;
}

/* MOBILE */
@media (max-width: 900px) {
  .customer-moments {
    padding: 120px 6%;
    background-attachment: scroll;
  }

  .customer-moments h2 {
    font-size: 36px;
  }

  .moments-points {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .point {
    padding: 35px 24px;
  }
}

.wada-gallery {
  min-height: 100vh;
  display: flex;
  gap: 80px;
  padding: 120px 8%;
  background: #0f0f0f;
  color: #fff;
}

.gallery-text {
  flex: 1;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.gallery-text span {
  letter-spacing: 4px;
  color: #2f4f3f;
  font-size: 16px;
}

.gallery-text h2 {
font-size: clamp(28px, 6vw, 56px);  line-height: 1.1;
  margin: 20px 0;
  color: rgb(201, 74, 74);
}

.gallery-text p {
  max-width: 420px;
  opacity: 0.8;
}

.gallery-track {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gallery-track img {
  width: 100%;
  border-radius: 30px;
  filter: grayscale(20%);
  transition: 0.5s;
}

.gallery-track img:hover {
  filter: grayscale(0);
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .wada-gallery {
    flex-direction: column;
  }
  .gallery-text {
    position: relative;
    top: 0;
  }
}

/* =====================
   WADA LOCATION SECTION
===================== */

.wada-location {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

/* GOOGLE MAP */
.wada-location iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) contrast(1.1);
  z-index: 1;
}

/* GLASS LOCATION CARD */
.loc-card {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 32px;
  border-radius: 35px;
  max-width: 440px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
  z-index: 5;
}

/* SMALL TAG */
.loc-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: #2f4f3f;
  margin-bottom: 10px;
}

/* HEADING */
.loc-card h2 {
  margin: 15px 0 18px;
  font-size: 40px;
  line-height: 1.15;
  color: #3a1e10;
  font-family: "Cinzel", serif;
}

/* TEXT */
.loc-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  opacity: 0.85;
}

/* INFO LIST */
.loc-info {
  margin-top: 35px;
  display: grid;
  gap: 18px;
}

/* INFO ITEM */
.loc-info div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #333;
}

/* ICON */
.loc-info i {
  width: 40px;
  height: 40px;
  background: #2f4f3f;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 15px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.loc-info div:hover i {
  transform: scale(1.1);
  transition: 0.3s;
}

/* MOBILE VIEW */
@media (max-width: 900px) {
  .wada-location {
    height: 90vh;
  }

  .loc-card {
    left: 50%;
    top: auto;
    bottom: 30px;
    transform: translateX(-50%);
    width: 88%;
    padding: 40px;
  }

  .loc-card h2 {
    font-size: 32px;
  }
}

.wada-cta {
  position: relative;
  padding: 90px 8%;
  background: #3a1e10;
  overflow: hidden;
}

.cta-grain {
  position: absolute;
  inset: 0;
  background: url(images/grain.png);
  opacity: 0.06;
}

/* 👉 MAIN CTA CARD */
.cta-box {
  position: relative;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  padding: 55px 65px;
  border-radius: 35px;
  color: #fff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

/* TEXT */
.wada-cta h2 {
  font-family: "Cinzel", serif;
  font-size: 42px;
  line-height: 1.25;
}

.wada-cta h2 span {
  color: #f3b27a;
}

.wada-cta p {
  margin-top: 18px;
  font-size: 15px;
  opacity: 0.85;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
}

.cta-buttons a {
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 40px;
}

.cta-call {
  background: #f3b27a;
  color: #3a1e10;
}

.cta-book {
  border: 1px solid #fff;
  color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
  .cta-box {
    padding: 45px 35px;
  }

  .wada-cta h2 {
    font-size: 34px;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
/* =========================
   REAL VOICES / TESTIMONIAL
========================= */

.silent-proof {
  padding: 160px 10%;
  background-color: #f6efe3;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 120px;
  position: relative;
  overflow: visible;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 300'%3E%3Cg fill='none' stroke='%239b8f7a' stroke-opacity='0.18' stroke-width='2'%3E%3Cpath d='M40 260 C120 160 220 160 300 260'/%3E%3Cpath d='M80 260 C150 180 250 180 320 260'/%3E%3Cpath d='M120 260 C180 200 280 200 340 260'/%3E%3Ccircle cx='420' cy='80' r='6'/%3E%3Ccircle cx='60' cy='90' r='3'/%3E%3Cline x1='380' y1='200' x2='460' y2='200'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 520px;
}


/* LEFT SIDE : QUIET INTRO */
.proof-intro {
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.proof-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.55;
}

.proof-intro h2 {
  margin: 22px 0;
  font-family: "Cinzel", serif;
  font-size: 38px;
  line-height: 1.25;
  color: #2c1b12;
}

.proof-intro p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.6;
}

/* RIGHT SIDE : VOICES */
.proof-stream {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.proof-quote {
  max-width: 720px;
}

.proof-quote h3 {
  font-family: "Cinzel", serif;
  font-size: 44px;
  line-height: 1.25;
  color: #2c1b12;
}

.proof-quote.big h3 {
  font-size: 54px;
}

.proof-quote.right {
  margin-left: auto;
  text-align: right;
}

.proof-quote span {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.55;
}

/* MOBILE */
@media (max-width: 900px) {
  .silent-proof {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .proof-intro {
    position: static;
  }

  .proof-quote h3 {
    font-size: 34px;
  }

  .proof-quote.big h3 {
    font-size: 40px;
  }

  .proof-quote.right {
    margin-left: 0;
    text-align: left;
  }
}

/* =====================
   SHETKARI WADA FOOTER
===================== */

.wada-footer {
  background: #2a160c;
  color: #f4efe9;
  padding: 120px 8% 60px;
}

/* TOP BRAND CLOSURE */
.footer-top {
  max-width: 700px;
}

.footer-top h2 {
  font-family: "Cinzel", serif;
  font-size: 48px;
  line-height: 1.2;
}

.footer-top h2 span {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  margin-top: 10px;
  opacity: 0.6;
}

.footer-top p {
  margin-top: 25px;
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.75;
}

/* MID INFO */
.footer-mid {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 60px;
}

.foot-col span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
}

.foot-col a,
.foot-col p {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: #f4efe9;
  text-decoration: none;
  opacity: 0.85;
}

.foot-col a:hover {
  opacity: 1;
}

/* BOTTOM SIGNATURE */
.footer-bottom {
  margin-top: 90px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.6;
}

.footer-bottom em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  opacity: 0.4;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-mid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-top h2 {
    font-size: 36px;
  }
}

.tabs-menu {
  position: relative;
  padding: 160px 8%;
  background: #f8f6f0;
  color: #2f4f3f;
  font-family: "Cinzel", serif;
}

/* Shapes behind content */
.menu-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
}
.menu-shapes .circle {
  width: 500px;
  height: 500px;
  background: #c94a4a;
  top: -100px;
  left: -150px;
}
.menu-shapes .blob {
  width: 400px;
  height: 400px;
  background: #049646;
  top: 200px;
  right: -120px;
  border-radius: 45% 55% 50% 50%;
}

/* Header */
.menu-header span {
  font-size: 12px;
  letter-spacing: 4px;
  color: #c94a4a;
  display: inline-block;
  margin-bottom: 12px;
}
.menu-header h2 {
  font-size: 44px;
  line-height: 1.2;
}
.menu-header h2 b {
  color: #049646;
}

/* Tabs */
.wada-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  justify-content:center;
  margin-top:60px;
  position:relative;
}

/* TAB BASE */
.wada-tabs .tab-btn{
  position:relative;
  padding:16px 34px;
  border:none;
  border-radius:18px;
  background:#f7f1e5;
  color:#2f4f3f;
  font-weight:600;
  letter-spacing:.5px;
  cursor:pointer;
  box-shadow:
    inset 0 -4px 0 rgba(0,0,0,.08),
    0 18px 35px rgba(0,0,0,.18);
  transition:.35s ease;
  font-family:'Cinzel',serif;
}

/* ROPE DOT (WADA FEEL) */
.wada-tabs .tab-btn::before{
  content:'';
  position:absolute;
  top:-10px;
  left:50%;
  transform:translateX(-50%);
  width:10px;
  height:10px;
  background:#2f4f3f;
  border-radius:50%;
  box-shadow:0 0 0 3px #f7f1e5;
}

/* ACTIVE TAB */
.wada-tabs .tab-btn.active{
  background:#2f4f3f;
  color:#f7f1e5;
  transform:translateY(-8px) scale(1.05);
  box-shadow:
    0 30px 60px rgba(0,0,0,.35),
    inset 0 -6px 0 rgba(0,0,0,.2);
}

/* ACTIVE ROPE */
.wada-tabs .tab-btn.active::before{
  background:#c94a4a;
  box-shadow:0 0 0 4px rgba(201,74,74,.35);
}

/* HOVER */
.wada-tabs .tab-btn:hover:not(.active){
  transform:translateY(-4px);
}

/* MOBILE */
@media(max-width:768px){
  .wada-tabs{
    gap:12px;
  }
  .wada-tabs .tab-btn{
    padding:14px 26px;
    font-size:14px;
  }
}


/* Tab contents – 2 columns */
.tab-contents {
  margin-top: 50px;
}
.tab-content {
  display: none;
  flex-wrap: wrap;
  gap: 30px;
}
.tab-content.active {
  display: flex;
}
.tab-content .menu-item {
  flex: 1 1 calc(50% - 15px);
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Item */

.item-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.item-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #5f6b65;
}

/* Bring content above shapes */
.menu-content {
  position: relative;
  z-index: 1;
}

/* Mobile */
@media (max-width: 900px) {
  .tab-content .menu-item {
    flex: 1 1 100%;
    flex-direction: column;
    text-align: center;
  }

  .menu-item img {
    width: 220px;
    height: 220px;
    margin-bottom: 15px;
  }

  .menu-tabs {
    justify-content: center;
  }
}
/* =========================
   MOBILE / TABLET FIX
========================= */

/* GLOBAL MOBILE SCROLL FIX */

/* MAIN SECTION */
@media (max-width: 900px) {

  .tabs-menu {
    padding: 120px 6%;
    overflow-x: hidden;
    text-align: center;
  }

  /* SHAPES CONTROL */
  .menu-shapes .circle{
    width: 320px;
    height: 320px;
    left: -180px;
    top: -120px;
  }

  .menu-shapes .blob{
    width: 280px;
    height: 280px;
    right: -160px;
    top: 320px;
  }

  /* HEADER CENTER */
  .menu-header{
    text-align: center;
  }

  .menu-header h2{
    font-size: 34px;
  }

  /* TABS CENTER */
  .wada-tabs{
    justify-content: center;
  }

  /* TAB CONTENT CENTER */
  .tab-contents{
    display: flex;
    justify-content: center;
  }

  .tab-content{
    width: 100%;
    justify-content: center;
  }

  /* MENU ITEM CENTER */
  .tab-content .menu-item{
    flex: 1 1 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .menu-item img{
    width: 200px;
    height: 200px;
    max-width: 100%;
  }

  .item-info{
    max-width: 320px;
  }
}

/* ===============================
   CONTACT SECTION
================================ */

.contact-section{
  padding:160px 8%;
  background:#f8f6f0;
  font-family:"Cinzel", serif;
  color:#2f4f3f;
}

/* MAIN GRID */
.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:flex-start;
}

/* LEFT & RIGHT */
.contact-left,
.contact-right{
  background:#ffffff;
  padding:40px;
  border-radius:25px;
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* LEFT CONTENT */
.contact-left h2{
  font-size:40px;
  margin-bottom:15px;
}

.contact-left h2 b{
  color:#c94a4a;
}

.contact-left p{
  font-size:16px;
  line-height:1.7;
  margin-bottom:35px;
}

/* INFO CARDS */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.info-card{
  display:flex;
  align-items:center;
  gap:20px;
  padding:18px 22px;
  border-radius:18px;
  background:#e6ebe7;
  transition:0.35s;
}

.info-card i{
  font-size:24px;
  color:#c94a4a;
}

.info-card h4{
  margin:0;
  font-size:16px;
}

.info-card p{
  margin:5px 0 0;
  font-size:14px;
}

/* HOVER EFFECT */
.info-card:hover{
  background:#c94a4a;
  color:#fff;
  transform:translateY(-3px);
}

.info-card:hover i{
  color:#fff;
}

/* RIGHT FORM */
.contact-right h3{
  font-size:28px;
  margin-bottom:25px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:14px;
  border:1px solid #ccc;
  font-size:15px;
  font-family:"Poppins", sans-serif;
  transition:0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#c94a4a;
  outline:none;
}

/* BUTTON */
.contact-form button{
  margin-top:10px;
  padding:14px;
  background:#c94a4a;
  color:#fff;
  border:none;
  border-radius:16px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.35s;
}

.contact-form button:hover{
  background:#049646;
  transform:translateY(-2px);
}

/* ===============================
   MAP – FULL WIDTH BOTTOM
================================ */

.contact-map{
  margin-top:70px;
  width:100%;
  height:420px;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,0.18);
}

.contact-map iframe{
  width:100%;
  height:100%;
  border:0;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media(max-width:900px){

  .contact-section{
    padding:120px 6%;
  }

  .contact-container{
    grid-template-columns:1fr;
    gap:35px;
  }

  .contact-left,
  .contact-right{
    padding:30px;
  }

  .contact-left h2{
    font-size:32px;
  }

  .contact-right h3{
    font-size:24px;
  }

  .contact-map{
    height:300px;
    margin-top:40px;
  }
}

.gallery-section {
  padding: 120px 8%;
  background: #f8f6f0;
  font-family: "Cinzel", serif;
  color: #2f4f3f;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}
.gallery-header span {
  font-size: 14px;
  letter-spacing: 3px;
  color: #c94a4a;
  display: inline-block;
  margin-bottom: 10px;
}
.gallery-header h2 {
  font-size: 40px;
  margin-bottom: 15px;
}
.gallery-header h2 b {
  color: #049646;
}
.gallery-header p {
  font-size: 16px;
  color: #5f6b65;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  position: relative;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1) rotate(1deg);
}

/* OVERLAY */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(201, 74, 74, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}
.gallery-item:hover .overlay {
  opacity: 1;
}

/* LARGE ITEM for asymmetry */
.gallery-item.large {
  grid-row: span 2;
  grid-column: span 2;
}

/* MOBILE */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
}

/* BIG CATEGORY HEADING */
.menu-type {
  font-size: 28px;
  margin: 40px 0 20px;
  letter-spacing: 2px;
  position: relative;
  display: block; /* IMPORTANT */
  width: 100%; /* IMPORTANT */
}

.menu-type::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #c94a4a;
  display: block;
  margin-top: 8px;
}

.menu-type.veg {
  color: #049646;
}
.menu-type.nonveg {
  color: #c94a4a;
}

/* 2 COLUMN GRID */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 180px;
  row-gap: 50px;
}

/* GAP BETWEEN SECTIONS */
.menu-divider {
  height: 60px;
}

/* MOBILE */
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
.menu-item img {
  width: 100%;
  height: 220px; /* SAME HEIGHT FOR ALL */
  object-fit: cover; /* image crop ho, stretch nahi */
  border-radius: 16px; /* optional, agar pehle se hai to rehne de */
}

/* ===============================
   DINING STORYBOARD – UNIQUE
================================ */

.dining-story {
  padding: 160px 8%;
  background: #f7f1e5;
  color: #2f4f3f;
}

.dining-story {
  padding: 160px 8%;
  background: #f7f1e5;
  color: #2f4f3f;
  position: relative;
  overflow: hidden;
}

/* SOFT ILLUSTRATION BACKGROUND */
.dining-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/village.png");
  background-repeat: repeat;
  background-size: 420px auto;
  opacity: 0.07; /* key value – zyada ya kam kar sakta hai */
  pointer-events: none;
}

/* GLOW EFFECT */
/* .dining-story::after{
  content:'';
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(
    circle,
    rgba(201,74,74,0.18),
    transparent 70%
  );
  bottom:-250px;
  left:50%;
  transform:translateX(-50%);
  pointer-events:none;
} */

/* content upar rahe */
.dining-story > * {
  position: relative;
  z-index: 2;
}

/* HEADER */
.story-head {
  max-width: 620px;
  margin-bottom: 90px;
}

.story-head span {
  font-size: 12px;
  letter-spacing: 5px;
  color: #c94a4a;
}

.story-head h2 {
  font-family: "Cinzel", serif;
  font-size: 52px;
  line-height: 1.1;
  margin: 18px 0;
}

.story-head h2 b {
  color: #049646;
}

.story-head p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.75;
}

/* FRAME */
.story-frame {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* LEFT IMAGE */
.frame-image {
  position: relative;
  height: 520px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.frame-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

/* RIGHT CARDS */
.frame-cards {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.story-card {
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  transform: translateX(0);
  transition: 0.4s ease;
}

.story-card:hover {
  transform: translateX(12px);
}

.story-card h3 {
  font-family: "Cinzel", serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.story-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.75;
}

/* HIGHLIGHT */
.story-card.highlight {
  background: #2f4f3f;
  color: #f7f1e5;
}

.story-card.highlight p {
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 900px) {
  .story-frame {
    grid-template-columns: 1fr;
  }

  .frame-image {
    height: 420px;
  }

  .story-head h2 {
    font-size: 40px;
  }
}
.story-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
}

.story-card h3 i {
  font-size: 22px;
  color: #c94a4a; /* same accent color */
}
.dining-story::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
      rgba(247, 241, 229, 0.815),
      rgba(247, 241, 229, 0.92)
    ),
    url("images/village.png");

  background-repeat: repeat;
  background-size: 360px auto;

  opacity: 1; /* opacity full rakho */
  pointer-events: none;
}
/* SLIDER FRAME */
.frame-image.slider {
  position: relative;
  height: 520px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

/* EACH SLIDE */
.frame-image .slides {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

/* ACTIVE SLIDE */
.frame-image .slides.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.frame-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SOFT OVERLAY – premium feel */
.frame-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.05)
  );
  z-index: 3;
}

.footer-company{
  text-decoration:none;
  color: #f7f1e5;
  font-size: 18px;
  font-family: "Cinzel", serif;
  font-weight: 500;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-company:hover{
  color: #c94a4a;
  transition: 0.3s;
}



/* SOCIAL BAR */
/* ==============================
   FLOATING SOCIAL BAR
============================== */

.wada-social-bar{
  position:fixed;
  bottom:20px;
  left:0;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:999;
}

/* ==============================
   SOCIAL ITEM
============================== */

.social-item{
  display:flex;
  align-items:center;
  gap:14px;

  padding:14px 16px;
  width:54px;                  /* 👈 default only icon */
  overflow:hidden;

  border-radius:0 40px 40px 0;
  background:#f8f6f0;
  color:#2f4f3f;
  text-decoration:none;

  font-family:'Poppins',sans-serif;
  font-size:13px;
  font-weight:500;

  box-shadow:0 18px 45px rgba(0,0,0,0.22);

  transition:width 0.45s cubic-bezier(.22,.61,.36,1),
             transform 0.35s ease;
            
}

/* ICON */
.social-item i{
  font-size:18px;
  min-width:20px;
  transition:0.3s ease;
}

/* TEXT */
.social-item span{
  white-space:nowrap;
  opacity:0;
  transform:translateX(-10px);
  transition:0.35s ease;
}

/* ==============================
   HOVER EFFECT
============================== */

.social-item:hover{
  width:190px;                 /* 👈 slide open */
}

.social-item:hover span{
  opacity:1;
  transform:translateX(0);
}

.social-item:hover i{
  transform:scale(1.1);
}

/* ==============================
   PLATFORM COLORS (LEFT STRIP)
============================== */

.insta{ border-left:5px solid #c94a4a; }
.yt{ border-left:5px solid #d62828; }
.fb{ border-left:5px solid #3b5998; }
.wa{ border-left:5px solid #25d366; }
.call{ border-left:5px solid #3f7f63; }

/* ==============================
   SOFT FLOAT ANIMATION
============================== */

.social-item{
  animation:heritageFloat 6s ease-in-out infinite;
}

@keyframes heritageFloat{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-6px); }
  100%{ transform:translateY(0); }
}

/* ==============================
   MOBILE
============================== */

@media(max-width:768px){
  .wada-social-bar{
    bottom:80px;
    left:0;
  }

  .social-item{
    width:50px;
    padding:14px;
  }

  .social-item:hover{
    width:160px;
  }
}
/* ==============================
   MOBILE FIX (LEFT STICKY)
============================== */
@media (max-width: 768px){

  .wada-social-bar{
    position:fixed;
    bottom:90px;        /* 👈 thoda upar */
    left:0;
    right:auto;

    align-items:flex-start;  /* 👈 CENTER SHIFT FIX */
  }

  .social-item{
    width:52px;
    padding:14px 14px;
    border-radius:0 36px 36px 0;

    transform:none !important;   /* 👈 animation shift fix */
  }

  .social-item:hover{
    width:170px;
  }

  /* text smooth open */
  .social-item span{
    font-size:12px;
  }
}

/* 🧨 VERY SMALL PHONES */
@media (max-width: 420px){
  .wada-social-bar{
    bottom:70px;
  }

  .social-item{
    width:48px;
    padding:12px;
  }

  .social-item:hover{
    width:155px;
  }
}


.home-menu-preview{
  padding:140px 8%;
  background-color:#f7f1e5;
  color:#2f4f3f;
  position:relative;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='%232f4f3f' stroke-opacity='0.05' stroke-width='1.5'%3E%3C!-- plate --%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3Ccircle cx='40' cy='40' r='10'/%3E%3C!-- bowl --%3E%3Ccircle cx='140' cy='120' r='12'/%3E%3C!-- spoon line --%3E%3Cpath d='M90 80c4 0 4 8 0 8s-4-8 0-8zM90 88v14'/%3E%3C/g%3E%3C/svg%3E");

  background-repeat:repeat;
  background-size:180px 180px;
}





/* HEADER */
.home-menu-head{
  max-width:100%;
  margin-bottom:60px;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}


.home-menu-head span{
  font-size:12px;
  letter-spacing:4px;
  color:#c94a4a;
}

.home-menu-head h2{
  font-family:'Cinzel',serif;
  font-size:44px;
  margin:18px 0 12px;
}

.home-menu-head p{
  max-width:520px;
  margin:0 auto;
  opacity:.7;
}


.home-menu-head b{color:#049646;}

.home-menu-head p{opacity:.7}

/* TABS */
.home-menu-tabs{
  display:flex;
  gap:16px;
  margin-bottom:40px;
}

.tab-btn{
  padding:14px 28px;
  border-radius:30px;
  border:none;
  background:#fff;
  font-family:'Cinzel',serif;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  transition:.3s;
}

.tab-btn.active{
  background:#2f4f3f;
  color:#f7f1e5;
  transform:translateY(-4px);
}

/* CONTENT */
.home-tab-contents{
  display:block;
}

.tab-content{
  display:none;
  gap:30px;
  flex-wrap:wrap;
}

.tab-content.active{
  display:flex;
}

/* CARD */
.menu-card{
  display:flex;
  gap:18px;
  align-items:center;
  background:#fff;
  padding:18px;
  border-radius:18px;
  width:calc(50% - 15px);
  box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.menu-card img{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:14px;
}

.menu-card h4{
  font-size:18px;
  margin-bottom:6px;
}

.menu-card p{
  font-size:14px;
  opacity:.65;
}

/* THALI SPECIAL */
.menu-card.highlight{
  background:#2f4f3f;
  color:#f7f1e5;
}

/* CTA */
.home-menu-cta{
  margin-top:70px;
}

.home-menu-cta a{
  text-decoration:none;
  color:#c94a4a;
  font-weight:600;
  border-bottom:2px solid #c94a4a;
}

/* MOBILE */
@media(max-width:900px){
  .menu-card{
    width:100%;
  }

  .home-menu-tabs{
    flex-wrap:wrap;
  }
}




/* HERO */
.about-hero{
  padding:120px 8% 120px;
  color:#f7f1e5;
  text-align:center;

  /* background image */
  background-image:
    linear-gradient(
      rgba(47,79,63,0.75),
      rgba(47,79,63,0.75)
    ),
    url("images/wada.png");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.about-hero span{
  letter-spacing:4px;
  font-size:12px;
  color:#c94a4a;
}

.about-hero h1{
  font-family:'Cinzel',serif;
  font-size:60px;
  margin:20px 0;
}

.about-hero b{color:#f4c95d;}

.about-hero p{
  max-width:600px;
  margin:0 auto;
  opacity:.8;
}


/* STORY */
.about-story{
  padding:140px 8%;
  background:#f7f1e5;
}

.about-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:80px;
  align-items:center;
}

.about-text h2{
  font-size:42px;
  margin-bottom:24px;
  font-family: 'Cinzel', serif;
  color: #2f4f3f;
}


.about-text span{
  color:#c94a4a;
  
}

.about-text p{
  margin-bottom:20px;
  opacity:.75;
  line-height:1.7;
}

.about-points{
  margin-top:30px;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.about-points div{
  padding:12px 22px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.1);
}


/* VISUAL BLOCKS */
.about-visual{
  position:relative;
  height:420px;
}

.visual-box{
  position:absolute;
  border-radius:24px;
  background-size:cover;
  background-position:center;
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

.visual-box.one{
  width:260px;
  height:320px;
  top:0;
  left:0;
  background-image:url("images/veg-fried-rice.webp");
}

.visual-box.two{
  width:220px;
  height:260px;
  bottom:0;
  right:0;
  background-image:url("images/chicken-tikka-masala.webp");
}

.visual-box.three{
  width:160px;
  height:180px;
  top:120px;
  right:120px;
  background-image:url("images/chicken-65.webp");
}


/* VALUES */
.about-values{
  padding:120px 8%;
  background:#2f4f3f;
  color:#f7f1e5;
  text-align:center;
  position:relative;

  /* subtle repeated SVG pattern */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='%23f7f1e5' stroke-opacity='0.05' stroke-width='1'%3E%3Ccircle cx='50' cy='50' r='20'/%3E%3Cline x1='50' y1='0' x2='50' y2='100'/%3E%3Cline x1='0' y1='50' x2='100' y2='50'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat:repeat;
  background-size:100px 100px;
}
.value-card{
  background:rgba(255,255,255,.08);
  padding:40px 30px;
  border-radius:24px;
  backdrop-filter:blur(6px);
  position:relative;
  transition:.3s;
}

.value-card i{
  font-size:36px;
  color:#c94a4a;
  margin-bottom:18px;
  display:block;
}

.value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.value-card h4{
  margin-bottom:14px;
  font-size:22px;
}

.value-card p{
  opacity:.85;
  line-height:1.6;
}


.about-values h2{
  font-size:48px;
  margin-bottom:60px;
  font-family: 'Cinzel', serif;
}
.about-values span{
  color: #c94a4a;
}
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.value-card{
  background:rgba(255,255,255,.08);
  padding:40px 30px;
  border-radius:24px;
  backdrop-filter:blur(6px);
}

.value-card h4{
  margin-bottom:14px;
  font-size:22px;
}


/* MOBILE */
@media(max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
  }

  .about-hero h1{
    font-size:42px;
  }

  .values-grid{
    grid-template-columns:1fr;
  }

  .about-visual{
    height:360px;
  }
}
.about-points{
  display:flex;
  gap:28px;
  margin-top:40px;
  flex-wrap:wrap;
}

.point-item{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  padding:14px 22px;
  border-radius:30px;
  font-size:14px;
  font-weight:500;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.point-item i{
  font-size:18px;
  color:#c94a4a;
}

/* subtle hover */
.point-item:hover{
  transform:translateY(-4px);
  transition:.3s;
}



.founder-unique {
  position: relative;
  padding: 100px 20px;
  background: #fff8f2;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.founder-bg-decor {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: rgba(235,180,120,0.2);
  border-radius: 50%;
  z-index: 1;
}

.founder-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap-reverse;
}

.founder-photo img {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border: 8px solid #f7e6d3;
  transition: transform 0.4s ease;
}

.founder-photo img:hover {
  transform: rotate(-3deg) scale(1.05);
}

.founder-info {
  max-width: 600px;
}

.founder-info h2 {
  color: #c57d42;
  font-weight: 600;
  letter-spacing: 1px;
}

.founder-info h1 {
  font-size: 2.8rem;
  color: #6b4226;
  margin: 10px 0 20px;
}

.founder-info p {
  color: #5a3c23;
  line-height: 1.8;
  font-size: 1.1rem;
}

.btn-secondary{
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #c57d42;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* =========================
   EVENT / PARTY SECTION
========================= */
.event-section{
  padding:120px 8%;
  color:#fff;
  text-align:center;

  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-opacity='0.12'%3E%3Ccircle cx='20' cy='20' r='4'/%3E%3Ccircle cx='100' cy='40' r='5'/%3E%3Ccircle cx='60' cy='100' r='4'/%3E%3Cline x1='10' y1='60' x2='30' y2='80'/%3E%3Cline x1='90' y1='10' x2='110' y2='30'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(
      180deg,
      #3b5f4b,
      #2f4f3f
    );

  background-repeat:repeat;
  background-size:140px;
}
/* HEADING */
.event-section h2{
  font-size:46px;
  font-family:"Cinzel", serif;
  margin-bottom:10px;
}

.event-section h2 span{
  color:#c94a4a;
}

.event-sub{
  max-width:720px;
  margin:0 auto 70px;
  font-size:16px;
  color:#e1e6e3;
  line-height:1.7;
}

/* GRID */
.event-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* CARD */
.event-card{
  background:#fff;
  color:#2f4f3f;
  border-radius:28px;
  padding:40px 30px;
  text-align:left;

  box-shadow:0 18px 40px rgba(0,0,0,.15);
  transition:.35s ease;
}

.event-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(0,0,0,.25);
}

/* TITLE */
.event-card h3{
  font-size:22px;
  margin-bottom:14px;
  color:#3f7f63;
}

/* TEXT */
.event-card p{
  font-size:15px;
  line-height:1.7;
  color:#5f6b65;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .event-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .event-section{
    padding:90px 6%;
  }

  .event-section h2{
    font-size:34px;
  }

  .event-grid{
    grid-template-columns:1fr;
  }
}