*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Oswald', sans-serif;
}

/* HEADER BACKGROUND */
body{
  background:#1f5a4c;
    font-family: 'Oswald', sans-serif;
}

/* HEADER */
.header{
  width:100%;
  background: #ffffff;
  padding: 35px 40px;
}

.container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}

/* NAV */
nav a{
  text-decoration:none;
  color:#000;
  font-size:14px;
  letter-spacing:2px;
  margin: 0px 30px;
  transition:0.3s;
  font-weight: 700;
}

nav a:hover{
  opacity:0.7;
}

/* LOGO */
.logo{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}

.logo h1{
  font-size:28px;
  letter-spacing:4px;
  font-weight:600;
}
.logo{
  position:absolute;
  left: 46%;
  transform: translateX(-50%);
}

.logo img{
  height: 78px;   /* desktop size */
  width:auto;
  display:block;
}

/* MOBILE TOGGLE */
.menu-toggle{
  display:none;
  font-size: 30px;
  cursor:pointer;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:100%;
  height: 80%;
  background: #ffffff;
  display:flex;
  flex-direction:column;
  justify-content: center;
  align-items:center;
  transition:0.5s ease;
  z-index:999;
}

.mobile-menu a{
  margin:15px 0;
  font-size:14px;
  letter-spacing:2px;
  text-decoration:none;
  color:#000;
}

.mobile-menu.active{
  right:0;
}

/* CLOSE BUTTON */
.close-btn{
  position:absolute;
  top:20px;
  right:25px;
  font-size:22px;
  cursor:pointer;
}
/* CTA ORDER BUTTON */
.cta-order{
  border:1px solid #000;
  padding:8px 18px;
  margin-left:20px;
  font-size:13px;
  letter-spacing:2px;
  text-decoration:none;
  color:#000;
  transition:0.3s;
}

.cta-order:hover{
  background:#000;
  color:#fff;
}

/* MOBILE VERSION */
.mobile-cta{
  margin-top:30px;
}

.mobile-menu .cta-order{
  padding:10px 25px;
}
/* RESPONSIVE */
@media(max-width:768px){

  .nav-left,
  .nav-right{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .header{
    padding: 45px 20px;
  }

  .logo h1{
    font-size:20px;
    letter-spacing:3px;
  }
  
  .logo img{
    height: 100px;  /* mobile vich chhoti size */
  }
  .mobile-menu .cta-order{
    display:inline-block;
    margin-top:30px;
    padding:12px 28px;
    border:1px solid #000;
    font-size:13px;
    letter-spacing:2px;
    text-decoration:none;
    color:#000;
    text-align:center;
    transition:0.3s;
  }
.logo{
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
}

  .mobile-menu .cta-order:hover{
    background:#000;
    color:#fff;
  }
.mobile-menu{
  transition: all 0.4s ease-in-out;
}
}
/* SECTION */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  top: 0;
  left: 0;
}


/* BACKGROUND */
.hero{
  background: #ffffff;
  padding:80px 40px;
  border-top: 1px black solid;
}

/* CONTAINER */
.hero-container{
  max-width:1200px;
  margin:auto;
}

/* TITLE */
.hero-title{
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight:600;
  line-height:1.1;
  margin-bottom:60px;
  color:#000;
  text-align: center;
}

/* GRID */
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr 1fr;
  gap:50px;
  align-items:start;
}

/* LEFT / RIGHT TEXT */
.hero-left p,
.hero-right p{
  font-size:16px;
  line-height:1.6;
  margin:20px 0;
  color: black;
}

/* LINE */
.line{
  width:100%;
  height:1px;
  background: #000000;
  margin-bottom:20px;
}

/* IMAGES */
.hero img{
  width:100%;
  display:block;
}

/* CENTER IMAGE */
.hero-center img{
  height:500px;
  object-fit:cover;
}

/* SIDE IMAGES */
.hero-left img,
.hero-right img{
  margin-top:20px;
}

/* RIGHT ALIGN TEXT */
.hero-right{
  text-align:left;
}

/* ---------------- MOBILE ---------------- */
@media(max-width:768px){

  .hero{
    padding:40px 20px;
  }

  .hero-title{
    font-size: 30px;
    line-height:1.2;
    margin-bottom:30px;
  }

  .hero-grid{
    display:flex;
    flex-direction:column;
    gap:30px;
  }

  /* ORDER LIKE IMAGE */
  .hero-center{
    order:1;
  }

  .hero-left{
    order:2;
  }

  .hero-right{
    order:3;
  }

  .hero-center img{
    height:auto;
  }

  .hero-left p,
  .hero-right p{
    text-align:center;
    font-size:14px;
  }

  .line{
    margin:15px 0;
  }

}
/* SECTION */
.about-text{
  background: #ffffff;
  padding: 85px 20px;
  border-top: 1px solid #000000;
}

/* CONTAINER */
.about-container{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

/* TEXT */
.about-container p{
  font-family: 'Playfair Display', serif;
  font-size:40px;
  line-height:1.4;
  color:#000;
  letter-spacing:0.3px;
}
@media(max-width:768px){

  .about-text{
    padding:60px 20px;
  }

  .about-container p{
    font-size:22px;
    line-height:1.5;
  }

}
/* SECTION */
.chef-section{
  background: #ffffff;
  padding:100px 40px;
}

/* CONTAINER */
.chef-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  position:relative;
}

/* VERTICAL LINE */
.chef-container::after{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:100%;
  background: #000000;
}

/* LEFT */
.chef-left h2{
  font-family:'Playfair Display', serif;
  font-size:80px;
  margin-bottom:30px;
}

.chef-left p{
  font-size:16px;
  line-height:1.7;
  max-width: 500px;
  margin-bottom:30px;
  color: black;
}

.view-more{
  text-decoration:none;
  font-size:13px;
  letter-spacing:2px;
  color:#000;
}

/* RIGHT */
.chef-right{
  position:relative;
  height:500px;
}

/* CIRCLE IMAGE */
.img-circle{
  position:absolute;
  top:0;
  right:60px;
  width:360px;
  height:360px;
  border-radius:50%;
  overflow:hidden;
  z-index:2;
  transform:scale(0.9);
  transition:0.5s;
}

.img-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* RECT IMAGE */
.img-rect{
  position:absolute;
  bottom:0;
  right:0;
  width:280px;
  height:360px;
  overflow:hidden;
  border-radius:6px;
  transform:translateY(40px);
  transition:0.5s;
}

.img-rect img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* HOVER ANIMATION */
.chef-right:hover .img-circle{
  transform:scale(1);
}

.chef-right:hover .img-rect{
  transform:translateY(0);
}
@media(max-width:768px){

  .chef-section{
    padding:60px 20px;
    text-align: center;
  }

  .chef-container{
    display:flex;
    flex-direction:column;
    gap:30px;
  }

  .chef-container::after{
    display:none;
  }

  /* IMAGES TOP */
  .chef-right{
    height:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
  }

  .img-circle{
    position:relative;
    width: 200px;
    height: 200px;
    right: 60px;
    top: 45px;
    transform:none;
  }

  .img-rect{
    position:absolute;
    width: 280px;
    height:180px;
    top: 0px;
    left: -40px;
    transform:none;
  }

  /* TEXT */
  .chef-left h2{
    font-size:40px;
  }

  .chef-left p{
    font-size:14px;
    max-width:100%;
  }

}
/* SECTION */
.dish-section{
  background: #ffffff;
  padding:100px 40px;
}

/* CONTAINER */
.dish-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  position:relative;
}

/* CENTER LINE */
.dish-container::after{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:100%;
  background: #000000;
}

/* LEFT IMAGES */
.dish-left{
  position:relative;
  height:420px;
}

/* BACK IMAGE */
.img-back{
  position:absolute;
  top:0;
  left:0;
  width: 280px;
  height: 380px;
  overflow:hidden;
  border-radius:6px;
  transform:translateX(-20px);
  transition:0.5s;
}

.img-back img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* CIRCLE IMAGE (renamed) */
.dish-bowl{
  position:absolute;
  bottom:-40px;
  left: 140px;
  width: 270px;
  height: 270px;
  border-radius:50%;
  overflow:hidden;
  z-index:2;
  transform:scale(0.9);
  transition:0.5s;
}

.dish-bowl img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* HOVER UPDATE */
.dish-left:hover .dish-bowl{
  transform:scale(1);
}
/* HOVER ANIMATION */
.dish-left:hover .img-back{
  transform:translateX(0);
}

.dish-left:hover .img-circle{
  transform:scale(1);
}

/* RIGHT CONTENT */
.dish-right h2{
  font-family:'Playfair Display', serif;
  font-size:70px;
  margin-bottom:20px;
}

.dish-right p{
  font-size:16px;
  line-height:1.7;
  max-width: 500px;
  margin-bottom:25px;
  color: black;
}

.view-more{
  text-decoration: underline;
  font-size: 20px;
  letter-spacing:2px;
  color:#000;
}
@media(max-width:768px){

  .dish-section{
    padding:60px 20px;
    text-align: center;
  }

  .dish-container{
    display:flex;
    flex-direction:column;
    gap: 80px;
  }

  .dish-container::after{
    display:none;
  }

  /* IMAGES TOP */
  .dish-left{
    height:auto;
    display:flex;
    justify-content:center;
    position:relative;
  }

  .img-back{
    position:relative;
    width:280px;
    height:180px;
    transform:none;
  }

 

  /* TEXT */
  .dish-right h2{
    font-size:36px;
  }

  .dish-right p{
    font-size:14px;
    max-width:100%;
  }
    .dish-bowl{
    position:absolute;
    width:180px;
    height:180px;
    bottom: -60px;
    left: 130px;
    transform:none;
  }


}
/* SECTION */
.fresh-section{
  position:relative;
  height:100vh;
  background:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}


.menu-section {
  width: 100%;
}

.menu-block {
  position: relative;
  padding: 150px 8%;
}
.menu-header {
  position: sticky;
  top: 20%;
  text-align: center;
  z-index: 5;
}

.menu-title {
  font-size: 130px;
  letter-spacing: 5px;
  margin: 0;
}

.menu-link {
  margin-top: 10px;
  text-decoration: underline;
  font-size: 14px;
  letter-spacing: 2px;
}
.menu-title {

top: 20%;

text-align: center;

font-size: 60px;

letter-spacing: 5px;

z-index: 1;

color: #ffffff;

font-family: 'Playfair Display', serif;

text-transform: uppercase;
}

.menu-link {

text-align: center;

margin-top: 10px;

text-decoration: underline;

font-size: 20px;

letter-spacing: 2px;

text-transform: uppercase;
}

.menu-grid {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 330px;
  grid-row-gap: 322px;
}

.menu-item {
  position: relative;
  overflow: hidden;
}

.menu-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
  transition: 0.6s;
}

/* Parallax feel */
.menu-item img {
  will-change: transform;
}

.menu-item:hover img {
  transform: scale(1.2);
}

.price {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #eae7e1;
  color: #111;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 18px;
}

.menu-item h3 {
  margin-top: 30px;
  font-size: 20px;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
}

/* MOBILE */
@media(max-width: 768px) {

  .menu-title {
    font-size: 28px;
    top: 10%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .menu-item img {
    height: 260px;
  }
  .menu-header {
    position: relative;
    top: 20%;
    text-align: center;
    z-index: 5;
}
}
.reservation-section {
  background: #292828;
  padding: 100px 5%;
  font-family: 'Playfair Display', serif;
}

/* MAIN GRID */
.res-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.res-left {
  width: 50%;
  position: sticky;
  top: 100px;
}

.res-left h2 {
  font-size: 80px;
  line-height: 90px;
  color: #fff;
  margin-bottom: 30px;
}

/* BUTTONS */
.branch-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.branch-tabs button {
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #777;
  color: #fff;
  cursor: pointer;
  text-align: left;
  transition: 0.3s;
  text-transform: uppercase;
}

.branch-tabs button.active,
.branch-tabs button:hover {
  background: #fff;
  color: #000;
  text-transform: uppercase;
  font-size: 20px;
}

/* RIGHT */
.res-right {
  width: 50%;
}

.res-right iframe {
  width: 100%;
  height: 650px;
  border-radius: 10px;
  border: none;
  background: #fff;
}
@media(max-width: 768px){

  .res-container {
    flex-direction: column;
  }

  .res-left {
    width: 100%;
    position: static; /* remove sticky */
    text-align: center;
  }

  .res-left h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .branch-tabs {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .branch-tabs button {
    font-size: 12px;
    padding: 8px 12px;
  }

  .res-right {
    width: 100%;
  }

  .res-right iframe {
    height: 500px; /* FIXED MOBILE HEIGHT */
  }
}
.order-btn{

position:fixed;

bottom:30px;

left:30px;

display:flex;

align-items:center;

gap:10px;

background: #fc6143;

color:white;

padding:12px 22px;

text-decoration:none;

font-weight:bold;

border-radius:6px;

box-shadow:0 6px 15px rgba(0,0,0,0.3);

z-index:999;

animation:pulse 2s infinite;

transition:0.3s;

color: white;

text-transform: uppercase;

font-family: 'Poppins';
}

.order-btn img{

width: 30px;

height: 30px;

object-fit:contain;
}

.order-btn:hover{

background:#fc6143;

}

/* Pulse Animation */

@keyframes pulse{

0%{
box-shadow:0 0 0 0 rgba(252,97,67,0.7);
}

70%{
box-shadow:0 0 0 20px rgba(197,168,106,0);
}

100%{
box-shadow:0 0 0 0 rgba(197,168,106,0);
}

}

/* Mobile */

@media(max-width:600px){

.order-btn{

bottom:20px;
left:20px;
padding:10px 18px;
font-size:14px;

}

.order-btn img{

width:20px;
height:20px;

}

}



.footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.branch {
  background: #1c1c1c;
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.branch:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgb(255 255 255 / 30%);
}

.branch h3 {
  color: #ffa500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.branch p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-family: sans-serif;
}

.map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 10px;
  margin-top: 15px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #aaa;
}

/* Ã°Å¸â€Â¥ Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .branch {
    padding: 18px;
  }

  .map iframe {
    height: 180px;
  }
}

/* HEADER */
.gallery-section {
  background: #ffffff;
  padding: 100px 60px;
  text-align: center;
}
.gallery-header p {
  font-size: 17px;
  letter-spacing: 3px;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

.gallery-header h2 {
  font-size: 48px;
  font-family: 'Playfair Display', serif;
  margin: 10px 0 50px;
  color: #000000;
}

/* GRID */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY TEXT */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: rgb(0 0 0 / 53%);
}

.overlay h3 {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

.overlay p {
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

/* HOVER */
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ================= */
/* RESPONSIVE */
/* ================= */

@media (max-width: 992px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 60px 20px;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }

  .gallery-header h2 {
    font-size: 32px;
  }

  .gallery-item img {
    height: 280px;
  }
}
.order-btn {
    padding: 12px 25px;
    background: #fc6143;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

/* Modal Content */
.modal-content {
    background: #e82f03;
    margin: 15% auto;
    padding: 24px;
    width: 380px;
    text-align: center;
    border-radius: 10px;
}
/* Close Button */
.close-btn {
  float: right;
  font-size: 25px;
  cursor: pointer;
}
.close-btn {
    position: absolute;
    top: 20px;
    left: 8px;
    width: 30px;
    height: 30px;
    background: #ffffff;
    color: #000000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
}
/* Branch Buttons */
.branch-options button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  background: #1d3557;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

/* Modal Box */
.modal-content {
  background: #111;
  color: #fff;
  margin: 8% auto;
  padding: 30px;
  width: 90%;
  max-width: 700px;
  border-radius: 15px;
  text-align: center;
}

/* Close */
.close-btn {
  float: right;
  font-size: 25px;
  cursor: pointer;
}

/* Branch Layout */
.branch-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* Branch Card */
.branch-card {
  flex: 1;
  background: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.branch-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.branch-card h3 {
  margin: 10px 5px 10px;
  padding-bottom: 10px;
}

.branch-card p {
  font-size: 14px;
  color: #bbb;
  padding-bottom: 10px;
}

/* Hover Effect */
.branch-card:hover {
  transform: scale(1.05);
  background: #000000;
}

/* Mobile Responsive */
@media(max-width:600px){
  .branch-container {
    flex-direction: column;
  }
}
.modal-top-img {
  text-align: center;
  margin-bottom: 15px;
}

.modal-top-img img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.modal-top-img {
  text-align: center;
  margin-bottom: 10px;
}

.modal-top-img img {
  width: 120px;          /* ideal size */
  height: 120px;         /* equal rakho for perfect circle */
  border-radius: 50%;    /* makes it circle */
  object-fit: cover;     /* image properly fill kare */
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
/* Branch Cards */
.branch-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.branch-card {
  text-decoration: none;
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #eee;
}

.branch-card:hover {
  background: #f8f8f8;
  transform: translateY(-5px);
}

.branch-card h3 {
  margin: 0;
  font-size: 20px;
  color: black;
}

.branch-card p {
  font-size: 16px;
  color: #000000;
}

iframe#restaurantBooking {
    border-radius: 10px;
}