/* ===============================
   GOOGLE FONTS
================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

/* ===============================
   ROOT VARIABLES
================================ */
:root{
  --primary:#c0392b;        /* Malwani red */
  --secondary:#0f766e;      /* Sea green */
  --gold:#c9a14a;
  --dark:#111111;
  --light:#fffaf3;
  --text:#555;
}

/* ===============================
   RESET
================================ */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--light);
  color:var(--text);
  line-height:1.7;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

h1,h2,h3,h4{
  font-family:'Playfair Display',serif;
  color:#222;
}

/* ===============================
   BUTTONS
================================ */
.btn-main{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:14px 34px;
  border-radius:40px;
  font-weight:500;
  transition:.4s;
}

.btn-main:hover{
  background:#a93226;
  transform:translateY(-2px);
}

.btn-outline{
  display:inline-block;
  border:2px solid var(--primary);
  color:var(--primary);
  padding:12px 32px;
  border-radius:40px;
  transition:.4s;
}

.btn-outline:hover{
  background:var(--primary);
  color:#fff;
}

/* Mobile Header */

/* HEADER */
.site-header{
  background:#fff;
  padding:12px 0;
  position:sticky;
  top:0;
  z-index:999;
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */
.logo img{
  height:48px;
}

/* NAV */
.nav-menu ul{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-menu a{
  text-decoration:none;
  color:#222;
  font-weight:500;
}

/* BOOK BTN */
.btn-book{
  background:#c0392b;
  color:#fff;
  padding:10px 22px;
  border-radius:30px;
  text-decoration:none;
}

/* HAMBURGER ICON */
.hamburger {
  width: 28px;
  cursor: pointer;
  display: none;              /* hidden on desktop */
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #222;
  margin: 5px 0;
  border-radius: 3px;
}

/* HEADER LAYOUT */
.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

@media (max-width: 768px) {

  .hide-mobile {
    display: none;
  }

  .hamburger {
    display: block;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
  }

  /* Fixed selector from .nav-menu to .main-nav to match HTML */
  .main-nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    transition: 0.3s ease;
    padding-top: 40px;
    z-index: 1000;
    display: block; /* Ensure it is not hidden by desktop styles if any */
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* Removed redundant duplicate media query block that was here */


/* ===============================
   HEADER
================================ */
.main-header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:999;
  background:#fff;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.header-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.logo a{
  font-size:26px;
  font-weight:700;
  color:var(--primary);
}
.logo img{
  height: 70px;          /* adjust if needed */
  width:auto;
  display:block;
}


.main-nav ul{
  list-style:none;
  display:flex;
  gap:30px;
}

.main-nav ul li a{
  font-weight:500;
  position:relative;
}

.main-nav ul li a::after{
  content:'';
  width:0;
  height:2px;
  background:var(--primary);
  position:absolute;
  left:0;
  bottom:-6px;
  transition:.3s;
}

.main-nav ul li a:hover::after{
  width:100%;
}

@media (max-width: 768px) {
  .header-btn {
    display: none;
  }
}

/* ===============================
   HERO SLIDER
================================ */
.hero-slider{
  height:100vh;
}

.hero-slide{
  height:100vh;
  background-size:cover;
  background-position:center;
  position:relative;
}

.hero-slide::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.hero-content{
  position:relative;
  max-width:600px;
  padding-top:220px;
  color:#fff;
}

.hero-tag{
  color:var(--gold);
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:25px;
}

.hero-content h1{
  font-size:64px;
  line-height:1.15;
  margin:20px 0;
  color:#fff;
}

.hero-content h1 span{
  color:var(--gold);
}

.hero-content p{
  font-size:18px;
  margin-bottom:30px;
}

/* HERO NAV ARROWS (TICROU STYLE) */
.hero-slider .owl-nav{
  position:absolute;
  top:42%;
  width:100%;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  padding:0 30px;
}

.hero-slider .owl-nav button{
  width:55px;
  height:55px;
  background:#fff !important;
  border-radius:50%;
  color:#000 !important;
  font-size:18px !important;
  transition:.3s;
}

.hero-slider .owl-nav button:hover{
  background:var(--primary) !important;
  color:#fff !important;
}

@media (max-width: 991px){
  .hero-slider .owl-nav{
    padding: 0 15px;
  }

  .hero-slider .owl-nav button{
    width: 40px;  /* Decreased size */
    height: 40px; /* Decreased size */
    font-size: 14px !important;
  }
}

@media (max-width: 768px){
  /* Show arrows on mobile */
  .hero-slider .owl-nav{
    display: flex !important;
  }
   .hero-slider .owl-nav button{
    width: 35px; /* Even smaller for mobile */
    height: 35px;
    font-size: 12px !important;
  }
}


/* CENTER TEXT LIKE TICROU */
.hero-content.text-center{
  margin:auto;
  padding-top:260px;
  max-width:800px;
}

/* ===============================
   SECTIONS
================================ */
.section-tag{
  display:inline-block;
  color:var(--primary);
  font-weight:500;
  margin-bottom:10px;
  
}

.section-title{
  margin-bottom:50px;
}

.section-title h2{
  font-size:44px;
}

/* ===============================
   ABOUT
================================ */
.about-section{
  padding:120px 0;
}

.about-image img{
  border-radius:30px;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* ===============================
   DARK SECTION
================================ */
.dark-section{
  background:var(--dark);
  color:#fff;
}

.dark-section h2,
.dark-section p{
  color:#fff;
}

/* ===============================
   MENU
================================ */
.menu-section{
  padding:120px 0;
}

.menu-item{
  padding:20px 0;
  border-bottom:1px dashed rgba(255,255,255,.2);
}

.menu-item h5{
  display:flex;
  justify-content:space-between;
  font-size:20px;
  color:#fff;
}

.menu-item span{
  color:var(--gold);
}

/* ===============================
   PRODUCTS
================================ */
.product-section{
  padding:120px 0;
}

.product-card{
  background:#fff;
  border-radius:25px;
  padding:20px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,.12);
  transition:.4s;
}

.product-card:hover{
  transform:translateY(-8px);
}

.product-card img{
  border-radius:20px;
  margin-bottom:15px;
}

.product-card h6{
  font-size:18px;
  font-weight:600;
}

/* ===============================
   GALLERY
================================ */
.gallery-section{
  padding:120px 0;
}

.gallery-section img{
  border-radius:20px;
  transition:.4s;
}

.gallery-section img:hover{
  transform:scale(1.05);
}

/* ===============================
   TESTIMONIAL
================================ */
.testimonial-section{
  padding:120px 0;
  text-align:center;
}

.testimonial-section p{
  font-size:20px;
  max-width:800px;
  margin:30px auto;
}

/* ===============================
   RESERVATION
================================ */
.reservation-section{
  padding:120px 0;
}

.reservation-section input{
  width:100%;
  padding:14px 18px;
  margin-bottom:20px;
  border:none;
  border-radius:12px;
  outline:none;
}

/* ===============================
   FOOTER
================================ */
.footer{
  background:#000;
  color:#fff;
  padding:40px 0;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:991px){
  .hero-content h1{
    font-size:48px;
  }
  /* Removed .main-nav display:none to allow hamburger toggle to work */
  /*.main-nav{
    display:none; 
  }*/
}

@media(max-width:575px){
  .hero-content{
    padding-top:180px;
  }
  .hero-content h1{
    font-size:38px;
  }
}

/* ===== FORCE OWL NAV ARROWS ===== */

.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex !important;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
  z-index: 999;
}

.hero-slider .owl-nav button {
  pointer-events: all;
  width: 55px;
  height: 55px;
  background: #ffffff !important;
  border-radius: 50%;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: all 0.1s ease;
}

.hero-slider .owl-nav button:hover {
  background: #c0392b !important;
  color: #fff !important;
}

.hero-slider .owl-nav i {
  font-size: 18px;
}
/* FINAL OWL NAV FIX */
.hero-slider {
  position: relative;
}

.hero-slider .owl-nav {
  z-index: 9999;
}

.hero-slide::before {
  pointer-events: none;
}
/* ===============================
   OWL CAROUSEL FINAL NAV FIX
================================ */

/* Force nav container */
.hero-slider .owl-nav {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Force buttons */
.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure icons show */
.hero-slider .owl-nav button i {
  display: inline-block !important;
  font-size: 18px !important;
}

/* ===============================
   ABOUT PREMIUM (TICROU STYLE)
================================ */

.about-premium{
  padding:120px 0;
  background:#fff;
  position:relative;
  overflow:hidden;
}

.about-tag{
  font-family:'Playfair Display',serif;
  color:#a93226;
  font-size:22px;
  display:block;
  margin-bottom:15px;
}

.about-title{
  font-size:52px;
  line-height:1.2;
  margin-bottom:25px;
   font-family:'Playfair Display',serif;
}

.about-title span{
  color:#a93226;
   font-family:'Playfair Display',serif;
}

.about-text{
  font-size:16px;
  max-width:520px;
  margin-bottom:30px;
}

.about-signature{
  font-family:'Playfair Display',serif;
  font-size:28px;
  margin-bottom:30px;
}

.btn-about{
  display:inline-block;
  background:#a93226;
  color:#fff;
  padding:14px 36px;
  border-radius:40px;
  transition:.3s;
}

.btn-about:hover{
  background:var(--primary);
  color:#fff;
}

/* IMAGE SIDE */
.about-image-wrap{
  position: relative;
  width: 520px;
  height: 520px;
  margin-left: auto;
}

/* BIG BACK CIRCLE */
.about-circle{
  width: 100%;
  height: 100%;
  background: #f4ebdf;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* IMAGE */
.about-chef {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* 🔥 REQUIRED */
  object-position: 65% center;    /* 🔥 MOVE RIGHT */
  border-radius: 50%;             /* PERFECT CIRCLE */
  z-index: 2;
}



.about-float{
  position:absolute;
  z-index:3;
}



@media (max-width: 768px){
  .about-image-wrap{
    width: 360px;
    height: 360px;
    margin: 0 auto;
  }

  .about-chef{
    object-position: 60% center;
  }
}

.hero-slide {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* 🔥 FULL SCREEN */
  z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45); /* adjust darkness */
  z-index: 2;
}

/* CONTENT */
.hero-slide .container {
  position: relative;
  z-index: 3;
}

.hero-content {
  color: #fff;
}

/* MODAL OVERLAY */
.modal-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

/* MODAL BOX */
.modal-box{
  background:#fff;
  width:95%;
  max-width:520px;
  padding:30px;
  border-radius:16px;
  position:relative;
  animation:popup 0.4s ease;
}

/* CLOSE */
.close-btn{
  position:absolute;
  top:15px;
  right:18px;
  font-size:26px;
  cursor:pointer;
}

/* FORM INPUTS */
.modal-box input,
.modal-box select{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
}

/* BUTTON */
.btn-reserve{
  background:#c59d5f;
  color:#fff;
  padding:12px 30px;
  border:none;
  border-radius:30px;
  font-weight:600;
}

/* ANIMATION */
@keyframes popup{
  from{
    transform:translateY(40px);
    opacity:0;
  }
  to{
    transform:translateY(0);
    opacity:1;
  }
}


/* ===============================
   WAVE SEPARATOR (HERO → ABOUT)
================================ */

.wave-separator{
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  line-height:0;
  z-index:5;
}

.wave-separator svg{
  display:block;
  width:100%;
  height:90px;
}

/* ===============================
   MENU OF THE DAY – TICROU CARD
================================ */

/* ===============================
   MENU OF THE DAY – BG IMAGE
================================ */

.menu-day{
  position: relative;
  padding:120px 0;
  color:#fff;

  /* BACKGROUND IMAGE */
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY */
.menu-day::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.78); /* control darkness */
  z-index:0;
}

/* KEEP CONTENT ABOVE OVERLAY */
.menu-day .container{
  position:relative;
  z-index:1;
}


.menu-title .menu-tag{
  color:#a93226;
  font-family:'Playfair Display',serif;
  font-size:40px;
}

.menu-title h2{
  font-size:48px;
  margin-top:10px;
  color:#fff;
}

/* Tabs */
.menu-tabs{
  display:flex;
  justify-content:center;
  gap:15px;
  margin:40px 0 60px;
}

.menu-tab{
  background:transparent;
  border:1px solid #a93226;
  color:white;
  padding:10px 26px;
  border-radius:30px;
  cursor:pointer;
  transition:.3s;
}

.menu-tab.active,
.menu-tab:hover{
  background:#a93226;
  color:white;
}

/* Card */
.menu-card{
  background:#fff;
  color:#333;
  padding:45px;
  border-radius:30px;
  margin-bottom:30px;
  position:relative;
}

/* Notch top effect */
.menu-card::before{
  content:'';
  position:absolute;
  top:-20px;
  left:50%;
  transform:translateX(-50%);
  width:60px;
  height:20px;
  background:#1e1f21;
  border-bottom-left-radius:40px;
  border-bottom-right-radius:40px;
}

/* Items */
.menu-item{
  padding-bottom:22px;
  margin-bottom:22px;
  border-bottom:1px dashed #ccc;
}

.menu-item:last-child{
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}

.menu-item h4{
  display:flex;
  justify-content:space-between;
  font-size:20px;
}

.menu-item h4 span{
  color:#a93226;
}

.menu-item p{
  font-size:15px;
  margin-top:6px;
}

/* Switch logic */
.menu-content{
  display:none;
}

.menu-content.active{
  display:flex;
}

/* Responsive */
@media(max-width:991px){
  .menu-content.active{
    display:block;
  }
  .menu-title h2{
    font-size:36px;
  }
}

/* ===============================
   PRODUCT SECTION BG
================================ */

.product-bg{
  position:relative;
  padding:120px 0;
  background-image:url('https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?auto=format&fit=crop&w=1920&q=80');
  background-size:cover;
  background-position:center;
}

.product-bg::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.85);
}

.product-bg .container{
  position:relative;
  z-index:1;
}

/* ===============================
   PRODUCT CARD PREMIUM
================================ */

.product-card-premium{
  background:#fff;
  border-radius:20px;
  padding:30px 20px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  transition:.4s;
}

.product-card-premium:hover{
  transform:translateY(-10px);
}

/* IMAGE */
.product-img{
  position:relative;
  margin-bottom:20px;
  justify-content: center;

  
}

.product-img img{
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
}

/* CART BUTTON */
.cart-btn{
  position:absolute;
  bottom:-15px;
  left:50%;
  transform:translateX(-50%);
  background:#c9a14a;
  color:#fff;
  border:none;
  padding:10px 24px;
  border-radius:30px;
  opacity:0;
  transition:.3s;
  font-size:14px;
}

.product-card-premium:hover .cart-btn{
  opacity:1;
}

/* TEXT */
.product-card-premium h5{
  font-size:18px;
  margin:30px 0 8px;
}

.rating{
  color:#f4b400;
  font-size:14px;
  margin-bottom:8px;
}

.price{
  font-size:18px;
  font-weight:600;
}
/* PRODUCT CAROUSEL FIX */
.product-carousel .owl-stage{
  display:flex;
}

.product-carousel .owl-item{
  display:flex;
  justify-content:center;
}


/* ===============================
   ADD TO CART – FIXED & CENTERED
================================ */

.product-img{
  position: relative;
}

/* Button default hidden */
.cart-btn{
  position: absolute;
  left: 50%;
  bottom: -22px;              /* sits nicely below image */
  transform: translateX(-50%) translateY(10px);
  
  background: #c9a14a;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Show on hover */
.product-card-premium:hover .cart-btn{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Slight hover effect */
.cart-btn:hover{
  background: #b89045;
}

/* ===============================
   GALLERY – WHITE THEME
================================ */

.gallery-white{
  background:#ffffff;
  padding:120px 0;
}

/* Heading */
.gallery-white .section-tag{
  color:var(--primary);
}

.gallery-white h2{
  color:#111;
}

/* Card */
.gallery-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  transition:all 0.4s ease;
}

/* Image */
.gallery-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:transform 0.6s ease;
}

/* Hover effect */
.gallery-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.gallery-card:hover img{
  transform:scale(1.08);
}

/* Responsive */
@media(max-width:768px){
  .gallery-card img{
    height:220px;
  }
}

/* ===============================
   TESTIMONIAL PREMIUM
================================ */

.testimonial-premium{
  position:relative;
  padding:120px 0;
  background:#fff;
  overflow:hidden;
}

/* STATIC BG IMAGE */
.testimonial-bg{
  position:absolute;
  left:0;
  top:0;
  width:50%;
  height:100%;
  background:url('../images/testimonial.png')
  center/cover no-repeat;
}

/* TITLE */
.testimonial-title{
  font-size:46px;
  line-height:1.2;
  margin-bottom:40px;
   font-family:'Playfair Display',serif;
}

.testimonial-title span{
  color:var(--primary);
   font-family:'Playfair Display',serif;
}

/* SLIDER ITEM */
.testimonial-item{
  position:relative;
  padding-right:40px;
}

/* GOLD QUOTE */
.quote-badge{
  width:60px;
  height:60px;
  background:var(--primary);
  color:#fff;
  font-size:22px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
}

.quote-badge img{
  width: 30px;
  height: 30px;
  object-fit: contain; /* IMPORTANT */
}
/* TEXT */
.testimonial-text{
  font-size:17px;
  color:#444;
  margin-bottom:30px;
  max-width:520px;
}

/* FOOTER */
.testimonial-footer{
  display:flex;
  align-items:center;
  gap:15px;
}

/* TESTIMONIAL FOOTER */
.testimonial-footer{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:25px;
}

/* AVATAR WRAPPER */
.client-avatar{
  width:70px;
  height:70px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
  background:#eee;
}

/* IMAGE FIX */
.client-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;   /* 🔥 MOST IMPORTANT LINE */
  display:block;
}

/* TEXT */
.client-info h5{
  margin:4px 0 0;
  font-size:16px;
}

.client-info span{
  font-size:13px;
  color:#777;
}

.stars{
  color:#f4b400;
  font-size:14px;
}


.stars{
  color:#f4b400;
  font-size:14px;
}

.testimonial-footer h5{
  margin:3px 0 0;
  font-size:18px;
}

.testimonial-footer span{
  font-size:14px;
  color:#777;
}

/* NAV ARROWS */
.testimonial-carousel .owl-nav{
  margin-top:40px;
}

.testimonial-carousel .owl-nav button{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#fff !important;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  font-size:18px !important;
  margin-right:10px;
}



/* RESPONSIVE */
@media(max-width:991px){
  .testimonial-bg{
    display:none;
  }
  .testimonial-title{
    font-size:34px;
  }
}

/* ===============================
   RESERVATION – WHITE THEME
================================ */

.reservation-white{
  padding:120px 0;
  background:#fff;
}

/* Subtitle text */
.section-desc{
  max-width:520px;
  margin:15px auto 0;
  color:#666;
  font-size:15px;
}

/* Card */
.reservation-card{
  max-width:900px;
  margin:60px auto 0;
  background:#fff;
  padding:50px;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,0.10);
}

/* Inputs */
.reservation-card input{
  width:100%;
  padding:16px 18px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:15px;
  outline:none;
  transition:all 0.3s ease;
}

.reservation-card input:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(201,161,74,0.15);
}

/* Button */
.btn-reserve{
  margin-top:10px;
  background:var(--primary);
  color:#fff;
  border:none;
  padding:15px 44px;
  border-radius:40px;
  font-size:16px;
  font-weight:500;
  transition:all 0.3s ease;
}

.btn-reserve:hover{
  background:#a93226;
  transform:translateY(-2px);
  box-shadow:0 12px 25px rgba(0,0,0,0.2);
}
#reservationForm input,
#reservationForm select{
  width:100%;
  padding:14px 18px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:15px;
  outline:none;
}

#reservationForm select{
  background:#fff;
  cursor:pointer;
}

.btn-reserve{
  background:#c0392b;
  color:#fff;
  padding:14px 40px;
  border:none;
  border-radius:40px;
  font-size:16px;
  font-weight:500;
  transition:.3s;
}

.btn-reserve:hover{
  background:#a93226;
}


/* Responsive */
@media(max-width:768px){
  .reservation-card{
    padding:35px 25px;
  }
}

/* ===============================
   FOOTER – WHITE THEME
================================ */

.footer-white{
  background:#fff;
  padding:80px 0 0;
  border-top:1px solid #eee;
}

/* Brand */
.footer-brand img{
  max-width:180px;
  margin-bottom:15px;
}

.footer-brand p{
  font-size:14px;
  color:#666;
  max-width:320px;
}

/* Titles */
.footer-title{
  font-size:16px;
  font-weight:600;
  margin-bottom:18px;
  color:#222;
}

/* Links */
.footer-links,
.footer-info{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li,
.footer-info li{
  margin-bottom:10px;
  font-size:14px;
  color:#555;
}

.footer-links a{
  color:#555;
  transition:.3s;
}

.footer-links a:hover{
  color:var(--primary);
  padding-left:5px;
}

/* Icons */
.footer-info i{
  color:var(--primary);
  margin-right:8px;
}

/* Social */
.footer-social{
  margin-top:15px;
}

.footer-social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#A73126;
  color:white;
  margin-right:8px;
  transition:.3s;
}

.footer-social a:hover{
  background:var(--primary);
  color:#fff;
}

/* Bottom */
.footer-bottom{
  margin-top:50px;
  padding:20px 0;
  border-top:1px solid #eee;
  font-size:14px;
  color:#666;
}

@media (max-width: 991px){
  .footer-brand p{
    max-width: 100%;
  }
}

@media (max-width: 768px){
  .footer-white{
    padding: 50px 0 20px;
  }

  .footer-top > div{
    margin-bottom: 30px;
  }

  .footer-title{
    margin-bottom: 12px;
  }

  .footer-social{
    text-align: left;
  }
}

@media (max-width: 576px){
  .footer-white{
    text-align: center;
  }

  .footer-social{
    justify-content: center;
  }

  .footer-social a{
    margin-right: 6px;
  }

  .footer-info i{
    display: none; /* cleaner on small screens */
  }
}


/* IMAGE WRAPPER */
.product-img{
  position: relative;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;   /* 👈 centers image horizontally */
}

/* IMAGE */
.product-img img{
  width:160px;
  height:160px;
  border-radius:50%;
  object-fit:cover;
  display:block;
}

.section-tag{
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
   font-family:'Playfair Display',serif;
  font-size: 40px;        /* 🔥 increase size */
  margin-bottom: 14px;
}


/*About page*/

body{
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* HEADER */
.inner-header{
  padding: 15px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo{
  max-height: 60px;
}

/* PAGE BANNER */
.page-banner{
  padding: 130px 0;
  background: #f7f1e8;
}

.page-banner h1{
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 600;
}
.about-page{
   font-family: 'Playfair Display', serif;
  padding: 100px 0;
  background: #fffaf3; /* soft warm background */
}

.about-page h2{
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 35px;
}

.about-page h2 span{
  color: var(--primary);
  position: relative;
   font-family: 'Playfair Display', serif;
}

/* subtle underline accent */
.about-page h2 span::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:3px;
  background: var(--primary);
  opacity:.25;
}

.about-image{
  max-width: 520px;
  margin-left: auto;
  position: relative;
  
}

/* IMAGE */
.about-image img{
  background: #fffaf3;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);

  -webkit-mask-image: radial-gradient(
  
    ellipse at center,
    black 90%,
    transparent 100%
  );
  
}

.about-image-soft img{
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}



/* VALUES */
.about-values{
  background: #fafafa;
  padding: 60px 0;
}

.about-values h4{
  font-weight: 600;
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 768px){
  .page-banner h1{
    font-size: 32px;
  }

  .about-page h2{
    font-size: 30px;
  }
}

.why-malwani {
  padding: 80px 0;
  background: #fffaf3;
}

.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
}

.why-card i {
  font-size: 36px;
  color:var(--primary);
  margin-bottom: 15px;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.about-values {
  padding: 80px 0;
  background: #fafafa;
}

.value-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background:#c0392b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 30px;
  color: white;
}

.value-card h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}


/* Menu page */
.menu-hero{
  position:relative;
  padding:140px 0;
  background:url("../images/bg.png")
  center/cover no-repeat;
  color:#fff;
}
.menu-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}
.menu-hero .container{
  position:relative;
  z-index:2;
}
.menu-badge{
  display:inline-block;
  background:var(--primary);
  padding:6px 16px;
  border-radius:30px;
  font-size:42px;
  font-family: 'Playfair Display', serif;
  margin-bottom:15px;
}

/* FILTERS */
.menu-filters{
  padding:40px 0;
  background:#fff;
}
.filter-btn{
  border:none;
  background:var(--primary);
  color:#fff;              /* 🔥 FIX */
  padding:10px 20px;
  margin:5px;
  border-radius:30px;
  font-weight:500;
  cursor:pointer;
}

.filter-btn.active{
  background:var(--primary);
  color:white;
}

/* GRID */
.menu-grid{
  padding:80px 0;
}
.menu-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  margin-bottom:30px;
  transition:0.3s;
}
.menu-card:hover{
  transform:translateY(-8px);
}
.menu-img{
  height:200px;
  background-size:cover;
  background-position:center;
}
.menu-body{
  padding:20px;
}
.menu-body h5{
  display:flex;
  font-family: 'Playfair Display', serif;
  justify-content:space-between;
  font-weight:600;
}
.menu-price{
  color:var(--primary);
}

/* CTA */
.menu-cta{
  padding:80px 0;
  background:#f7f1e8;
}

.popup-close{
  position: absolute;
  top: 16px;
  right: 20px;          /* 👈 LEFT SIDE */
  left: auto;         /* remove right */
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  z-index: 10;
}


/* FORM WRAPPER */
.reservation-form input,
.reservation-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
  background: #fff;
}

/* FOCUS */
.reservation-form input:focus,
.reservation-form select:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192,57,43,0.1);
}

/* BUTTON */
.btn-reserve {
  background: #c0392b;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-reserve:hover {
  background: #a93226;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .reservation-form .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Contact page*/

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#fff;
  color:#333;
}

/* HERO */
.contact-hero{
  background:#c0392b;
  color:#fff;
  text-align:center;
  padding:80px 20px;
}

.contact-hero h1{
  font-size:36px;
  margin-bottom:10px;
}

/* SECTION */
.contact-section{
  padding:70px 20px;
}

.container{
  max-width:1100px;
  margin:auto;
}

/* GRID */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

/* INFO */
.contact-info h2{
  margin-bottom:20px;
  font-family:'Poppins', sans-serif;
}

.contact-info p{
  margin-bottom:18px;
  line-height:1.6;
}

/* FORM */
.contact-form form{
  display:flex;
  flex-direction:column;
}

.contact-form input,
.contact-form textarea{
  padding:14px;
  margin-bottom:16px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:14px;
}

.contact-form button{
  background:#c0392b;
  color:#fff;
  border:none;
  padding:14px;
  border-radius:30px;
  font-size:16px;
  cursor:pointer;
}

/* MAP */
.map-section iframe{
  width:100%;
  height:400px;
  border:none;
}

/* RESPONSIVE */
@media(max-width:768px){
  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-hero h1{
    font-size:28px;
  }
}



  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .main-nav.active {
    right: 0;
  }



/* ================= BASE HEADER ================= */

.main-header{
  position: relative;
  background: #fff;
  z-index: 100;
}

.header-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* DESKTOP NAV */
.main-nav ul{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a{
  font-size: 16px;
  font-weight: 500;
}

/* HAMBURGER BASE (HIDDEN ON DESKTOP) */
.hamburger{
  display: none;
  width: 28px;
  cursor: pointer;
}

.hamburger span{
  display: block;
  height: 3px;
  width: 100%;
  background: #222;
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 991px){

  body.menu-open{
    overflow: hidden;
  }

  /* SHOW HAMBURGER */
  .hamburger{
    display: block;
    z-index: 10001;
  }

  /* HIDE DESKTOP BUTTON */
  .hide-mobile{
    display: none;
  }

  /* FULLSCREEN MOBILE MENU */
  .main-nav{
    position: fixed;
    inset: 0;
    background: #fff;
    transform: translateX(100%);   /* CLOSED */
    transition: transform 0.4s ease;
    z-index: 10000;
    padding: 100px 30px;
  }

  .main-nav.active{
    transform: translateX(0);     /* OPEN */
  }

  /* MENU TOP BAR */
  .menu-top{
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu-logo{
    height: 45px;
  }

  .menu-close{
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
  }

  /* CENTER MENU LINKS */
  .main-nav ul{
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .main-nav ul li a{
    font-size: 22px;
    font-weight: 600;
  }

  
}

/* ================= DESKTOP ONLY ================= */
@media (min-width: 992px){

  .hamburger,
  .menu-top
  {
    display: none !important;
  }

  .main-nav{
    position: static;
    transform: none !important;
    background: transparent;
    padding: 0;
  }

  body.menu-open{
    overflow: auto;
  }
}

/* ================= FORCE DESKTOP HEADER FIX ================= */
@media (min-width: 992px){

  /* HEADER LAYOUT */
  .header-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* NAV RESET */
  .main-nav{
    position: static !important;
    transform: none !important;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
  }

  /* MENU HORIZONTAL */
  .main-nav ul{
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center;
    gap: 32px;
    height: auto !important;
  }

  .main-nav ul li a{
    font-size: 16px;
    font-weight: 500;
  }

  /* HIDE MOBILE ELEMENTS */
  .menu-top,
  .menu-close,
  
  .hamburger{
    display: none !important;
  }

  /* SHOW BOOK BUTTON */
  .hide-mobile{
    display: block !important;
  }

  body.menu-open{
    overflow: auto;
  }
}

/* ================= STICKY HEADER (DESKTOP ONLY) ================= */
@media (min-width: 992px){

  .main-header{
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    transition: box-shadow 0.3s ease;
  }

  .main-header.scrolled{
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
}

/* ================= PREMIUM MOBILE MENU ================= */
@media (max-width: 991px){

  /* MENU BACKGROUND */
  .main-nav{
    background: #fffdf9;
  }

  /* TOP BAR */
  .menu-top{
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
  }

  .menu-logo{
    height: 42px;
  }

  
  /* MENU LINKS */
  .main-nav ul{
    margin-top: 40px;
    gap: 26px;
  }

  .main-nav ul li a{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #222;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all .3s ease;
  }

  /* ACTIVE / HOVER */
  .main-nav ul li a:hover,
  .main-nav ul li a.active{
    background: #c0392b; /* brand red */
    color: #fff;
  }

  /* SUBTLE ENTRY ANIMATION */
  .main-nav.active ul li{
    animation: fadeUp .45s ease forwards;
  }

  .main-nav.active ul li:nth-child(1){ animation-delay: .1s; }
  .main-nav.active ul li:nth-child(2){ animation-delay: .2s; }
  .main-nav.active ul li:nth-child(3){ animation-delay: .3s; }
  .main-nav.active ul li:nth-child(4){ animation-delay: .4s; }

  @keyframes fadeUp{
    from{
      opacity:0;
      transform:translateY(20px);
    }
    to{
      opacity:1;
      transform:translateY(0);
    }
  }

  
}





/* ================= HAMBURGER / CLOSE ================= */

.hamburger{
  width: 26px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: all .3s ease;
}

/* NORMAL STATE */
.hamburger span:nth-child(1){
  top: 0;
}

.hamburger span:nth-child(2){
  top: 9px;
}

.hamburger span:nth-child(3){
  top: 18px;
}

/* ACTIVE = CLOSE */
.hamburger.active span:nth-child(1){
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity: 0;
}

.hamburger.active span:nth-child(3){
  top: 9px;
  transform: rotate(-45deg);
}

.hamburger.hidden{
  opacity: 0;
  pointer-events: none;
}

/* ================= HIDE HAMBURGER WHEN MENU OPEN ================= */
@media (max-width: 991px){
  .main-nav.active ~ .hamburger{
    display: none;
  }
}


/* ===============================
   HEADER BASE
================================ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo img {
  height: 52px;
}

/* ===============================
   HAMBURGER
================================ */
.hamburger {
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #111;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===============================
   MOBILE MENU (FULLSCREEN)
================================ */
.main-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}

.main-nav.active {
  transform: translateX(0);
}

/* TOP BAR */
.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

.menu-logo {
  height: 45px;
}

.menu-close {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MENU LINKS */
.main-nav ul {
  list-style: none;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.main-nav ul li a {
  font-size: 22px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.main-nav ul li a:hover {
  color: #b63b2e;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-circle img {
  width: 22px;
  height: auto;
}

.icon-circle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}



/* ===============================
   RESPONSIVE RULES
================================ */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .hide-mobile {
    display: none;
  }
}

.footer-social {
  display: flex;
  gap: 12px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #e10600; /* RED */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* WHITE icon */
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.icon-circle:hover {
  background-color: #b80400;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(225, 6, 0, 0.4);
}

.footer-bottom {
  padding: 18px 10px;
 
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-credit {
  font-size: 13px;
  letter-spacing: 0.6px;
  color: black;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.footer-credit a {
  margin-left: 4px;
  font-weight: 600;
  color: #b80400; /* premium gold */
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease;
}

/* Elegant underline animation */
.footer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
 
  transition: width 0.35s ease;
}

.footer-credit a:hover {
  color: black;
}

.footer-credit a:hover::after {
  width: 100%;
}

/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .footer-bottom {
    padding: 22px 14px;
  }

  .footer-credit {
    font-size: 12px;
    letter-spacing: 0.4px;
    line-height: 1.8;
  }

  .footer-credit a {
    display: inline-block;
    margin-left: 6px;
    font-size: 13px;
  }

  /* Better tap feedback on mobile */
  .footer-credit a:active {
    transform: scale(0.96);
  }
}

