@charset "UTF-8";
/* ÔöÇÔöÇÔöÇ CSS Variables ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
:root {
  --clr-white: #ffffff;
  --clr-black: #000000;
  --clr-main: #f40301;
  --clr-red-dk: #a50000;
  --vintage-dark: #1a1a1a;
  --clr-light-pink: #FFF8F8;
  --clr-border: rgba(201,168,76,.18);
  --dark-bg: #0d0d0d;
  --light-gray: #f2f2f2;
  --star-yellow: #ffc107;
  --font-playfairy: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;
  --radius: 12px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --section-padding: clamp(2.5rem, 7.5vw, 5rem);
  --section-padding-small: clamp(2.5rem, 5vw, 3.75rem); }

/* ÔöÇÔöÇÔöÇ Base ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip; }

body {
  color: var(--clr-black);
  font-family: var(--ff-body);
  font-weight: 400;
  overflow-x: clip;
  font-size: 1rem; }

ul {
  list-style: none;
  padding-left: 0;
  margin: 0; }

img {
  max-width: 100%;
  object-fit: cover; }

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px; }

::-webkit-scrollbar-track {
  background: var(--clr-light-pink); }

::-webkit-scrollbar-thumb {
  background: var(--clr-main);
  border-radius: 3px; }

/* ÔöÇÔöÇÔöÇ Utility ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-playfairy); }

.section-title {
  font-family: var(--font-playfairy);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2; }

.btn {
  padding: 1rem 1.5rem !important;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px !important;
  text-decoration: none;
  transition: var(--transition); }

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 10, 13, 0.25); }

.btn-primary-red {
  background: var(--clr-main) !important;
  color: var(--clr-white) !important;
  border: 1px solid var(--clr-main) !important; }

.btn-primary-red:hover {
  background: var(--clr-white) !important;
  border: 1px solid var(--clr-main) !important;
  color: var(--clr-main) !important; }

.btn-dark {
  background: var(--clr-black);
  color: var(--clr-white) !important;
  border: 1px solid var(--clr-black); }

.btn-dark:hover {
  background: var(--clr-white);
  color: var(--clr-black) !important; }

.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--clr-black);
  color: var(--clr-black) !important; }

.btn-outline-dark:hover {
  background: var(--clr-black);
  color: #fff !important; }
.instagram-btn{
	background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
)!important;
}
.form-control, textarea {
  width: 100%;
  background: #f4f4f4;
  border: none;
  border-radius: 10px;
  padding: 12px 16px !important;
  font-size: 14px;
  outline: none;
  box-shadow: none; }

.p-sticky {
  position: sticky;
  top: 100px; }

.section-pad {
  padding: var(--section-padding) 0; }

.section-pad-small {
  padding: var(--section-padding-small) 0; }

.banner-overlay-dark {
  position: relative;
  z-index: 0; }
  .banner-overlay-dark:after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1; }
  .banner-overlay-dark > * {
    position: relative;
    z-index: 2; }

.fancybox__content{
    padding:0 !important;
    overflow:hidden !important;
    border-radius:20px;
    max-width:50vw !important;
    max-height:90vh !important;
}

.fancybox__iframe{
    width:100% !important;
    height:100% !important;
    overflow:hidden !important;
}
/* ÔöÇÔöÇÔöÇ Navbar ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.custom-nav {
  padding: clamp(10px, 2vw, 15px) 0;
	background: rgba(255, 255, 255, 0.65);
/*   background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--clr-border); */
  transition: padding 0.45s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease; }

.custom-nav .container {
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1); }

.custom-nav .nav-logo {
  height: clamp(60px, 6vw, 80px);
  width: auto;
  object-fit: contain;
  transform-origin: left center;
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1); }

.custom-nav.scrolled {
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

/* Container stays stable (no layout shift) */
.custom-nav.scrolled .container {
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1); }

/* Logo shrink on scroll */
.custom-nav.scrolled .nav-logo {
  height: clamp(45px, 4vw, 60px);
  transform: scale(0.95); }

@media (min-width: 991px) {
  .navbar-nav ul {
    display: flex;
    align-items: center; }

  /* Nav Links */
  .navbar-nav a {
    color: var(--clr-black) !important;
    font-family: var(--ff-body);
    text-decoration: none;
    font-weight: 500 !important;
    font-size: 1rem;
    margin: 0 20px;
    transition: var(--transition); }

  .navbar-nav a:hover {
    color: var(--clr-main) !important; }

  /* Add space for the arrow */
  .menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 5px; }

  /* Create the arrow using :after */
  .menu-item-has-children > a:after {
    content: "\f107";
	  font-family:FontAwesome;
	  font-size:14px;
   		margin-top:-18px;
/*     border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--clr-white); */
    /* Color of the arrow */
    transition: transform 0.3s ease;
    margin-top: 2px; }

  /* Optional: Rotate arrow when parent is hovered */
  .menu-item-has-children:hover > a:after {
    transform: rotate(-180deg);
    border-top-color: var(--clr-main);
    /* Changes color on hover */ }

  /* 1. Hide the dropdown by default */
  .menu-item-has-children ul {
    display: none;
    position: absolute;
    /* Ensures it floats over content instead of pushing it down */
    z-index: 1000;
    border-radius: 6px;
    min-width: 200px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    background-color: var(--clr-black);
    border: 1px solid var(--clr-border); }

  /* 2. Show the dropdown on hover */
  .menu-item-has-children:hover > ul {
    display: block; }

  /* 3. Ensure the parent item is positioned relatively so the dropdown aligns to it */
  .menu-item-has-children {
    position: relative; }

  /* 4. Link Styling (Your existing styles updated) */
  .menu-item-has-children ul a {
    display: block;
    padding: 8px 20px;
    color: var(--clr-white);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition); }

  .menu-item-has-children ul a:hover {
    background-color: var(--clr-main);
    color: var(--clr-white) !important; }

  .current-menu-item a {
    color: var(--clr-main) !important; }

  /* 1. Hide SlickNav on Desktop */
  .slicknav_menu {
    display: none; } }
/* 2. Responsive Styling */
@media (max-width: 991px) {
  /* Hide original menu */
	.slicknav_parent.slicknav_collapsed > .slicknav_item > a, .slicknav_collapsed > .slicknav_item .slicknav_arrow, .slicknav_parent.slicknav_collapsed > .slicknav_item{
		color:#000!important;
		background-color: var(--clr-white)!important; 
	}
	.slicknav_parent.slicknav_open > .slicknav_item > a, .slicknav_open > .slicknav_item .slicknav_arrow{
		color:#fff!important;
		background-color: var(--clr-main)!important; 
	}
  #mainNav,
  .navbar-toggler,
  .menu-primary-menu-container {
    display: none !important; }

  /* =====================================
     SLICKNAV WRAPPER (DO NOT POSITION ABSOLUTE)
  ===================================== */
  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin: 0;
    z-index: 9999; }

  /* =====================================
     HAMBURGER BUTTON (STAYS IN HEADER FLOW)
  ===================================== */
  .slicknav_btn {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center; }

  .slicknav_menu .slicknav_icon {
    height: 30px !important; }

  /* Hamburger icon */
  .slicknav_icon-bar {
    display: block;
    width: 26px !important;
    height: 3px !important;
    background: #000;
    margin: 4px 0;
    border-radius: 2px; }

  /* =====================================
     DROPDOWN MENU (ABSOLUTE HERE ONLY)
  ===================================== */
  .slicknav_nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 360px;
    margin: 0;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999; }

  /* =====================================
     LIST RESET
  ===================================== */
  .slicknav_nav ul {
    margin: 0;
    padding-left: 20px;
    list-style: none; }

  .slicknav_nav > li:not(:last-of-type) {
    border-bottom: 1px solid rgba(204, 204, 204, 0.59); }

  .slicknav_nav li {
    margin: 0;
    padding: 0;
    width: 100%; }

  /* =====================================
     LINKS
  ===================================== */
  .slicknav_nav a,
  .slicknav_nav .slicknav_row {
    display: block;
    padding: 12px 16px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: transparent !important; }

  .slicknav_nav a:hover {
    background: rgba(255, 255, 255, 0.08); }

  /* Active item */
  .slicknav_nav .current-menu-item > a, .slicknav_nav li a:hover {
    background-color: var(--clr-main) !important;
    color: #fff !important;
    border-radius: 6px !important; }

  /* =====================================
     SUBMENU
  ===================================== */
  .slicknav_nav ul a {
    padding-left: 15px; }

  /* =====================================
     ARROW FIX (NO FONT AWESOME CONFLICT)
  ===================================== */
  .menu-item-has-children {
    position: relative; }

  .slicknav_arrow {
    position: absolute;
    right: 15px;
    top: 24px;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none; } }
@media (max-width: 767px) {
  .slicknav_nav {
    width: 90vw; }

  .slicknav_btn {
    right: 10px; } }
/* ÔöÇÔöÇÔöÇ Common-bannerÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.common-banner {
  height: clamp(350px, 40vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-repeat: no-repeat;
  background-size: cover; }

.common-banner h1 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  margin-bottom: 1rem;
  font-weight: 600; }

.common-banner p {
  max-width: 600px;
  margin: 0 auto;
  font-size: clamp(16px, 2rem, 18px); }

.small-banner .common-banner {
  padding-top: clamp(80px, 4vw, 100px);
  height: 360px; }

/* ÔöÇÔöÇÔöÇ banner end ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
/* ÔöÇÔöÇÔöÇ Home page ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */

.hero-home-slider .swiper {
    width: 100%;
    height: 100vh;
}

.hero-home-slider .swiper-button-next, 
.hero-home-slider .swiper-button-prev {
    color: #fff; /* White arrows */
}
@media (max-width:767px){
	.hero-home-slider .swiper-button-next, 
	.hero-home-slider .swiper-button-prev {
		display:none;
	}
}
.hero-home-slider .swiper-button-next{
	right:60px!important;
}
.hero-home-slider .swiper-button-prev{
	left:60px!important;
}

.hero-home-slider .swiper-pagination-bullet-active {
    background: #ff4d4d; /* Match your "Primary Red" */
}

.home-banner-title {
  font-family: var(--font-playfairy);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem; }

.home-banner-details {
  max-width: 600px;
  opacity: 1;
  font-size: clamp(0.9rem, 2vw, 1.1rem); }

body {
  background-color: #f8f9fa;
  margin: 0; }

.menu-delivery-section {
  position: relative;
  background-color: var(--dark-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden; }

/* Optional dark overlay for better readability */
.menu-delivery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1; }

/* Keep content above overlay */
.menu-delivery-section .container {
  position: relative;
  z-index: 2; }

.section-title {
  font-family: var(--font-playfairy);
  font-size: 2.5rem;
  font-weight: 700; }

.main-card-wrapper {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  /* Keeps the edges clean */ }

.img-container {
  min-height: 400px; }

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the image fills the area without distortion */
  display: block; }

/* Content Styles */
.bg-light-gray {
  background-color: var(--light-gray); }

.card-heading {
  font-family: var(--font-playfairy);
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px; }

.card-text {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px; }

/* Button Styles */
.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 1rem;
  width: fit-content;
  transition: transform 0.2s ease; }

.btn:hover {
  transform: translateY(-2px); }

.btn-red {
  background-color: var(--clr-main);
  color: white;
  border: none; }

.btn-black {
  background-color: #000;
  color: white;
  border: none; }

/* Responsive Adjustments */
@media (max-width: 991px) {
  .main-card-wrapper {
    margin: 0 15px; }

  .card-heading br {
    display: none;
    /* Flatten headings on smaller screens */ } }
@media (max-width: 767px) {
  .img-container {
    height: 300px; } }
/* ÔöÇÔöÇÔöÇ mission ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.values-title {
  font-family: var(--font-playfairy);
  font-weight: 700;
  font-size: 2.2rem;
  color: #1a1a1a; }

.values-subtitle {
  font-family: var(--ff-body);
  font-size: 1rem;
  letter-spacing: 0.5px; }

.value-card {
  border: 1px solid #eee;
  border-radius: 20px;
  /* Matching the soft rounded corners */
  padding: 40px 25px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; }

.value-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: #ddd; }

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem; }

.value-name {
  font-family: var(--font-playfairy);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #1a1a1a; }

.value-description {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.6; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .values-title {
    font-size: 1.8rem; }

  .value-card {
    padding: 30px 20px; } }
/* ÔöÇÔöÇÔöÇ features ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.staggered-info {
  background-color: #fff;
  overflow: hidden; }

.staggered-title {
  font-family: var(--font-playfairy);
  font-weight: 700;
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem; }

.staggered-lead {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem; }

/* Feature List Styling */
.custom-feature-list li {
  font-family: var(--ff-body);
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #000; }

.custom-feature-list i {
  color: var(--clr-main);
  font-size: 1rem;
  margin-right: 15px; }

/* Image Handling */
.rounded-custom {
  border-radius: 12px;
  /* Subtle rounding seen in image */
  width: 100%;
  height: 450px;
  object-fit: cover; }

/* Button Styling */
.btn-red-pill {
  background-color: var(--clr-main);
  color: white;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 0.85rem;
  border: none;
  transition: background 0.3s ease; }

.btn-black-pill {
  background-color: #000;
  color: white;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 0.85rem;
  border: none; }

.btn-red-pill:hover, .btn-black-pill:hover {
  opacity: 0.9;
  color: white; }

/* Responsive Logic */
@media (max-width: 991px) {
  .staggered-row {
    margin-bottom: clamp(2rem, 4vw, 4rem);
    /* More breathing room on tablets */ }

  .rounded-custom {
    height: 350px; }

  .staggered-title {
    font-size: 1.8rem; } }
@media (max-width: 576px) {
  .rounded-custom {
    height: 250px; } }
/* ÔöÇÔöÇÔöÇ videoÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.video-cta-section {
  position: relative;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Optional: Parallax effect */
  display: flex;
  align-items: center;
  color: white; }

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Adjust darkness level here */
  display: flex;
  align-items: center;
  justify-content: center; }

.video-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 15px; }

.video-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto; }

/* Play Button Styling */
.video-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2; }

.video-play-button i {
  margin-left: 5px;
  /* Centers the triangle icon visually */ }

/* Pulsing Animation Effect */
.video-play-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite; }

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1; }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0; } }
.video-play-button:hover {
  transform: scale(1.1);
  color: #c41212; }

/* Responsive Scaling */
@media (max-width: 768px) {
  .video-cta-section {
    height: 400px; }

  .video-title {
    font-size: 1.8rem; }

  .video-play-button {
    width: 60px;
    height: 60px;
    font-size: 1.2rem; } }
/* ÔöÇÔöÇÔöÇ review ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.testimonial-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem; }

.testimonial-card {
  background-color: var(--clr-light-pink);
  border-radius: 20px;
  padding: clamp(20px, 2vw, 40px);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: left; }

.stars i {
  color: var(--star-yellow);
  font-size: 1.1rem;
  margin-right: 2px; }

.stars svg path {
  fill: var(--star-yellow); }

.rating-num {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #333; }

.testimonial-text {
  font-style: normal;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
  font-size: 1rem; }

.client-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #000; }

/* Swiper Pagination Styling */
.testimonial-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffdada;
  opacity: 1;
  transition: all 0.3s ease; }

.testimonial-swiper .swiper-pagination-bullet-active {
  width: 40px;
  /* Stretched effect seen in image */
  border-radius: 10px;
  background: var(--clr-main); }

/* ÔöÇÔöÇÔöÇ faq ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.faq-section {
  background-color: var(--clr-light-pink); }

.faq-title {
  font-family: var(--font-playfairy);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--clr-black); }

.faq-subtitle {
  font-family: var(--ff-body);
  font-size: 1rem; }

/* Accordion Styling */
.accordion-item {
  border-bottom: 1px solid #eee !important;
  border-top: none;
  border-left: none;
  border-right: none;
  background: transparent; }

.accordion-button {
  padding: 1.5rem 0;
  font-weight: 600;
  color: #333;
  background-color: transparent !important;
  box-shadow: none !important;
  font-size: 1.5rem;
  transition: color 0.3s ease; }

.accordion-button:not(.collapsed) {
  color: #c61d23;
  /* Theme Red */ }

.accordion-body {
  padding: 0 0 1.5rem 0;
  color: #888;
  font-size: 1rem;
  line-height: 1.6; }

/* Custom Icon Replacement (The Red Circle +/-) */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c61d23' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='16'%3E%3C/line%3E%3Cline x1='8' y1='12' x2='16' y2='12'%3E%3C/line%3E%3C/svg%3E");
  background-size: 24px;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease; }

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c61d23' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='8' y1='12' x2='16' y2='12'%3E%3C/line%3E%3C/svg%3E");
  transform: rotate(180deg); }

/* ÔöÇÔöÇÔöÇ follow usÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
/* Ensure the link occupies the full grid item area */
.grid-item a {
  display: block;
  width: 100%;
  height: 100%; }

/* Maintain the rounded corners on the images inside the links */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition); }

/* Hover Zoom Effect */
.grid-item:hover img {
  transform: scale(1.08); }

/* Ensure play icon is centered relative to the link */
.play-icon-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  color: var(--clr-main);
  font-size: 3.5rem;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  pointer-events: none;
  /* Allows the click to pass through to the <a> tag */ }

/* ÔöÇÔöÇÔöÇ home-page end ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
/* ÔöÇÔöÇÔöÇ about-page ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
/* Global Section Styles */
.display-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
/*   font-size: clamp(1.8rem, 4vw, 2.8rem); */
  color: #1a1a1a; }

/* Video Play Button */
.play-btn {
  width: clamp(60px, 10vw, 90px);
  height: clamp(60px, 10vw, 90px);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c61d23;
  font-size: 1.5rem;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }

.play-btn:hover {
  transform: scale(1.1);
  background: #fff; }

/* Why Dine With Us Cards */
.feature-card img {
  width: 100%;
  aspect-ratio: 314 / 320;
  object-fit: cover; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-card {
    flex-direction: column; }

  .feature-card img {
    width: 100%;
    height: 200px; } }
/* ÔöÇÔöÇÔöÇ about-page end ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
/* ÔöÇÔöÇÔöÇ faq-page ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
/* Typography & Spacing */
.faq-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #1a1a1a;
  margin-bottom: 10px; }

.faq-subtitle {
  color: #666;
  font-size: clamp(0.85rem, 2vw, 1rem);
  max-width: 600px;
  margin: 0 auto; }

/* ÔöÇÔöÇÔöÇ faq-page end ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
/* ÔöÇÔöÇÔöÇ Gallery-page ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.gallery-container {
  display: grid;
  /* Defining 3 equal columns */
  grid-template-columns: repeat(3, 1fr);
  /* Your specific row constraints */
  /* Strictly keeps rows between 120px and 210px */
  grid-template-rows: repeat(3, minmax(120px, 210px));
  
  /* Strictly keeps auto-generated rows between 240px and 400px */
  grid-auto-rows: minmax(220px, 340px);
  gap: 15px;
  /* Spacing between images */ }


.gallery-container figure {
  margin-bottom: 0; }

/* Base style for images to ensure they fill the grid cells */
.gallery-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block; }

.gallery-item {
  margin: 0;
  /* Reset figure margins */ }

.gallery-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
  /* Background color for the darken effect */ }

.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s ease; }

/* The Magnifying Glass Icon */
.gallery-link::after {
  content: '\f002';
  position: absolute;
  font-family: "Font Awesome 5 Free", "Font Awesome 6 Free", FontAwesome;
  /* Added fallback/modern stacks */
  font-weight: 900;
  /* Required for FA Solid icons like the magnifying glass */
  /* Circle Styling */
  background: #fff;
  color: #000;
  /* Icon color */
  border-radius: 50%;
  width: 60px;
  /* Adjusted size slightly to fit the 30px font comfortably */
  height: 60px;
  /* Centering the icon inside the circle */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centering the circle inside the image */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  font-size: 24px;
  /* Slightly smaller icon relative to the 60px circle */
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  pointer-events: none; }

/* Hover State */
.gallery-link:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1); }

/* Hover States */
.gallery-link:hover img {
  transform: scale(1.1);
  opacity: 0.7;
  /* Darkens the image against the black background */ }

.gallery-link:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1); }

/* Specific spans to match image_560043.jpg layout */
.gallery-container figure:nth-child(2) {
  grid-row: span 3; }

/* The tall center dining room image */
.gallery-container figure:nth-child(3) {
  grid-row: span 2; }

/* The tall center dining room image */
.gallery-container figure:nth-child(4) {
  grid-row: span 2; }
@media (max-width: 767px) {
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(70px, 170px));
    grid-auto-rows: minmax(70px, 170px);
    gap: 15px;
	}
	    .gallery-container figure:nth-child(3) {
        grid-row: span 1;
    }
	    .gallery-container figure:nth-child(2) {
        grid-row: span 2;
    }
}
/* The tall center dining room image */
/* ÔöÇÔöÇÔöÇ Gallery-page end ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
/* ÔöÇÔöÇÔöÇ Blog-card ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.blog-thumb img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover; }

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important; }

.page-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 0; }

/* ÔöÇÔöÇÔöÇ Blog-card-end ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.blog-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* change to 4 / 3 if needed */
  overflow: hidden;
  border-radius: 12px;
  /* optional smooth look */ }

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.similar-posts {
  border: 1px solid #eee; }

.post-item {
  transition: all 0.25s ease;
  border-radius: 10px;
  padding: 8px; }

.post-item:hover {
  background: #f8f9fa;
  transform: translateX(5px); }

.post-thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover; }

.no-thumb {
  width: 60px;
  height: 60px;
  background: #e9ecef; }

.post-title {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  line-height: 1.3; }

/* ÔöÇÔöÇÔöÇ footer ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */
.main-footer {
  background-color: #1a1a1a;
  color: var(--clr-white);
  font-family: var(--ff-body); }

.footer-logo {
  max-width: 100px;
  height: auto; }

.footer-description {
  font-size: 1rem;
  line-height: 1.6; }

.footer-heading {
  font-family: var(--font-playfairy);
  font-weight: 700;
  margin-bottom: 20px; }

/* Back to top button */
.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--clr-main);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition); }

.back-to-top:hover {
  background-color: var(--clr-red-dk);
  transform: translateY(-5px); }

.contact-info-card a{
	color:#000;
	text-decoration:none;
}
.contact-info-card a:hover{
	color:var(--clr-main);
}

/* Contact and Links */
.contact-info li a {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #fff;
  transition: var(--transition);
  text-decoration: none;
  margin-bottom: 8px; }

.contact-info li a:hover {
  color: var(--clr-main); }

.footer-links li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: var(--transition); }

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

/* Socials */
.social-links a {
  color: white;
  margin-right: 15px;
  font-size: 1.1rem;
  transition: var(--transition); }

.social-links a:hover {
  color: var(--clr-main); }

/* Timing and Delivery */
.timing-highlight {
  color: var(--clr-main);
  font-weight: 600; }

.delivery-partner {
  height: 40px;
  width: auto;
  border-radius: 4px;
  background: white;
  /* Only if images have transparent backgrounds */ }

/* Copyright Section */
.copyright-text {
  font-size: 0.85rem; }

.text-main {
  color: var(--clr-main); }

/* Responsive Adjustments */
@media (max-width: 767px) {
  .main-footer {
    text-align: center; }

  .social-links {
    margin-bottom: 20px; }

  .footer-description {
    padding: 20px 0; } }
/* ÔöÇÔöÇÔöÇ footer end ÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇÔöÇ */

/*# sourceMappingURL=styles.css.map */
