
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Amatic SC",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37373f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ce1212; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #7f7f90;  /* The default color of the main navmenu links */
  --nav-hover-color: #ce1212; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #7f7f90; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ce1212; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f2f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 12px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 55px;
  margin-right: -11px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Alternative: Hide text on mobile, show only logo */
@media (max-width: 768px) {
  .header .logo img {
    max-height: 45px;
    margin-right: 0; /* Remove margin since text is hidden */
  }
  
  .header .logo h1,
  .header .logo span {
    display: none; /* Hide text on mobile */
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --heading-font: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 48px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/* ================================================================
   HERO - FINAL PERFECT VERSION • Gandhi Restaurant Siegburg 2026
   Premium colors + Original attractive text sizes = Perfection
   ================================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #000;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.78) 70%,
    rgba(0,0,0,0.93) 100%
  );
  z-index: 2;
}

/* Video container for stacking & cross-fade */
.hero-video-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* All videos same positioning */
/* .hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  opacity: 0,6;                           
  transition: opacity 1.2s ease-in-out; 
  filter: brightness(0.90) contrast(1.10) saturate(1.18);
  z-index: 1;
} */

/* Active video is visible */
.hero-video-bg.active {
  opacity: 0.86;
  z-index: 2;                           /* on top during fade */
}

/* Overlay – renamed for clarity (was ::before) */
.hero-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.78) 70%,
    rgba(0,0,0,0.93) 100%
  );
  z-index: 3;                           /* above videos, below content */
}

/* Hero content stays on top */
.hero-content-wrapper {
  position: relative;
  z-index: 4;
  /* ... rest remains exactly the same */
}

/* Optional: subtle pulse on active video for premium feel */
/* Main video styling – lower brightness & opacity for softer look */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  opacity: 0.65;                        /* ← lowered from 0.86 → much softer overall */
  transition: opacity 1.2s ease-in-out;
  filter: 
    brightness(0.72)                    /* ← reduced from 0.90 – less bright */
    contrast(1.05)                      /* slight contrast kept for clarity */
    saturate(1.08);                     /* reduced saturation – colors less vivid */
  z-index: 1;
}

/* Active video – still visible but calmer */
.hero-video-bg.active {
  opacity: 0.72;                        /* ← main visible one slightly higher than inactive */
  z-index: 2;
  animation: subtleCalm 10s infinite alternate ease-in-out;
}

/* Softer pulse animation (optional – makes it feel alive but not aggressive) */
@keyframes subtleCalm {
  0%   { filter: brightness(0.52) contrast(1.05) saturate(1.08); }
  100% { filter: brightness(0.68) contrast(1.08) saturate(1.12); }
}

.hero-content-wrapper {
  position: relative;
  z-index: 4;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5vw;
  text-align: center;
}

/* Original attractive sizes - PERFECT */
.hero-welcome {
  font-family: 'Playfair Display', serif;
  font-size: 22px;                  /* exactly your old size */
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #f0d9a2;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 68px;                  /* your original perfect size */
  font-weight: 800;
  line-height: 1.1;
  color: #fff8f0;
  margin: 0 0 25px 0;
  text-shadow: 
    0 4px 25px rgba(0,0,0,0.85),
    0 2px 10px rgba(0,0,0,0.6);
  -webkit-text-stroke: 0.4px #d4a37333;
}

@media (max-width: 1200px) {
  .hero-main-title { font-size: 58px; }
}
@media (max-width: 992px) {
  .hero-main-title { font-size: 52px; }
}
@media (max-width: 768px) {
  .hero-main-title { font-size: 44px; }
}

.hero-main-title .text-line {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hero-main-title .text-line.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  font-size: 18px;
  font-style: italic;
  color: #f5e9d8;
  max-width: 720px;
  margin: 0 auto 35px;
  line-height: 1.7;
  border-left: 3px solid #ce1212;
  padding-left: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #ffebc8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.highlight-item i {
  color: #e8c07d;
  font-size: 20px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.8px;
  min-width: 200px;
  transition: all 0.4s ease;
}

.btn-book {
  background: #ce1212;
  color: white;
  box-shadow: 0 8px 30px rgba(206,18,18,0.4);
}

.btn-book:hover {
  background: #b50f0f;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(206,18,18,0.5);
}

.btn-menu {
  background: transparent;
  color: #f5e9d8;
  border: 2px solid #d4a373;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Optional: for spacing between icon and text */
}

.btn-menu:hover {
  background: #d4a373;
  color: #0f0703;
  transform: translateY(-4px);
}

/* Mobile perfection */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 0 80px;
    min-height: 90vh;
  }
  .hero-highlights {
    flex-direction: column;
    gap: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# About Section - Elegant Redesign
--------------------------------------------------------------*/
.about {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.about h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.about .book-a-table {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border: none;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.25);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about .book-a-table::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.about .book-a-table:hover::before {
  transform: scale(3);
}

.about .book-a-table:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(220, 38, 38, 0.35);
}

.about .book-a-table h3 {
  font-family: var(--default-font);
  margin: 0 0 12px 0;
  font-size: 24px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about .book-a-table p {
  color: #ffffff;
  font-weight: 700;
  font-size: 32px;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about .fst-italic {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
  padding: 24px;
  background: #f9fafb;
  border-left: 4px solid #dc2626;
  border-radius: 8px;
  margin-bottom: 30px;
  font-style: normal;
  position: relative;
}

.about .fst-italic::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 48px;
  color: rgba(220, 38, 38, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about .content ul li {
  padding: 16px 0 16px 45px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
  transition: all 0.3s ease;
}

.about .content ul li:hover {
  color: #1f2937;
  transform: translateX(5px);
}

.about .content ul i {
  position: absolute;
  font-size: 24px;
  left: 0;
  top: 14px;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.about .content ul li:hover i {
  background: #dc2626;
  color: #ffffff;
  transform: rotate(360deg);
}

.about .content p {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about img.img-fluid {
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.about img.img-fluid:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about .position-relative {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.about .position-relative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.9) 0%, rgba(185, 28, 28, 0.85) 100%);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.about .position-relative:hover::before {
  opacity: 1;
}

.about .position-relative::after {
  content: '🍛';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 80px;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.about .position-relative:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.about .position-relative:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.about .position-relative img {
  transition: all 0.6s ease;
}

.about .position-relative:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

/* Decorative Badge */
.about .specialty-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.about .specialty-badge::before {
  content: '⭐';
  margin-right: 8px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .about .content {
    margin-top: 30px;
  }
  
  .about h3 {
    font-size: 28px;
  }
  
  .about .book-a-table {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .about .fst-italic {
    font-size: 16px;
    padding: 20px;
  }
  
  .about .content ul li {
    font-size: 15px;
    padding: 14px 0 14px 40px;
  }
  
  .about .book-a-table p {
    font-size: 28px;
  }
}

/* Animations */
@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(220, 38, 38, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

@keyframes pulse-wave {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/*--------/*--------------------------------------------------------------
# Why Us Section - Modern Redesign
--------------------------------------------------------------*/
.why-us {
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-us::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .why-box {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
}

.why-us .why-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.6s ease;
}

.why-us .why-box:hover::before {
  transform: scale(1.5);
}

.why-us .why-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(220, 38, 38, 0.4);
}

.why-us .why-box h3 {
  color: #ffffff;
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.why-us .why-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.why-us .why-box .more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 32px;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 24px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.why-us .why-box .more-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.why-us .why-box .more-btn:hover {
  color: #dc2626;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateX(5px);
}

.why-us .why-box .more-btn:hover i {
  transform: translateX(4px);
}

.why-us .icon-box {
  background: #ffffff;
  text-align: center;
  padding: 45px 30px;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-us .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-us .icon-box:hover::before {
  transform: scaleX(1);
}

.why-us .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.15);
}

.why-us .icon-box i {
  color: #dc2626;
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  transition: all 0.4s ease;
  position: relative;
}

.why-us .icon-box i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #dc2626;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.why-us .icon-box:hover i::after {
  opacity: 0.3;
  transform: scale(1.2);
}

.why-us .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px 0;
  font-family: var(--default-font);
  color: #1a1a1a;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

.why-us .icon-box:hover i {
  color: #ffffff;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.why-us .icon-box:hover h4 {
  color: #dc2626;
}

.why-us .icon-box:hover p {
  color: #374151;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .why-us .why-box {
    margin-bottom: 30px;
  }
  
  .why-us .why-box h3 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .why-us .why-box {
    padding: 40px 30px;
  }
  
  .why-us .why-box h3 {
    font-size: 28px;
  }
  
  .why-us .icon-box {
    margin-bottom: 20px;
  }
  
  .why-us .icon-box i {
    width: 80px;
    height: 80px;
    font-size: 42px;
  }
  
  .why-us .icon-box h4 {
    font-size: 20px;
  }
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 120px 0;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: var(--default-color);
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*------------------------------------------------------------*/
/*MENU SECTION*/
/*------------------------------------------------------------*/

/* Section Filter Tabs - Updated for Mobile */
.section-filter {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 50px;
  /* margin-top: -70px; */
  padding: 0 20px 15px;
  overflow-x: auto;
  /* overflow-y: hidden; */
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: rgba(206, 18, 18, 0.3) transparent;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.section-filter::-webkit-scrollbar {
  height: 6px;
}

.section-filter::-webkit-scrollbar-track {
  background: rgba(206, 18, 18, 0.05);
  border-radius: 10px;
}

.section-filter::-webkit-scrollbar-thumb {
  background: rgba(206, 18, 18, 0.3);
  border-radius: 10px;
}

.section-filter::-webkit-scrollbar-thumb:hover {
  background: rgba(206, 18, 18, 0.5);
}

/* Desktop view - center align */
@media (min-width: 768px) {
  .section-filter {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    white-space: normal;
    padding: 0 20px;
  }
}

.filter-btn {
  padding: 12px 24px;
  background: white;
  border: 2px solid rgba(206, 18, 18, 0.2);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: #5c4a38;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; /* Changed from flex to inline-flex for better mobile behavior */
  align-items: center;
  gap: 8px;
  flex-shrink: 0; /* Prevent buttons from shrinking on mobile */
}

.filter-btn:hover {
  background: rgba(206, 18, 18, 0.05);
  border-color: rgba(206, 18, 18, 0.4);
  transform: translateY(-3px);
}

.filter-btn.active {
  background: #ce1212;
  color: white;
  border-color: #ce1212;
  box-shadow: 0 8px 20px rgba(206, 18, 18, 0.3);
}

.filter-btn i {
  font-size: 1.1rem;
}

/* Mobile-specific button adjustments */
@media (max-width: 767px) {
  .filter-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
  
  .filter-btn i {
    font-size: 1rem;
  }
}

/* Optional: Add gradient fade effect on mobile */
@media (max-width: 767px) {
  .section-filter {
    position: relative;
  }
  
  .section-filter::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(253, 250, 245, 0.9));
    pointer-events: none;
  }
}

/* Grid – unique asymmetric luxury layout */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 200px);
  gap: 1.8rem 1.7rem;
  justify-content: center;
}

/* Remove or update all your media queries since auto-fit handles responsiveness */
@media (max-width: 576px)  { 
  .menu-grid { 
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.3rem; 
  } 
}
@media (max-width: 1400px) { .menu-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1200px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 992px)  { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px)  { .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1.3rem; } }

/* Card – premium without images */
.menu-card {
  position: relative;
  background: white;
  border-radius: 18px;
  padding: 1.9rem 1.5rem 2.2rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  /* overflow: hidden; */
  text-align: center;
  border: 1px solid rgba(206,18,18,0.06);
  min-height: 220px;
  max-height: 350px;
  width: 200px;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 70px rgba(206,18,18,0.22);
  border-color: rgba(206,18,18,0.25);
}

.menu-number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #ce1212 0%, #ff6b6b 100%);
  width: 40px;
  height: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  box-shadow: 0 4px 15px rgba(206,18,18,0.3);
  z-index: 1;
}
.menu-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.18rem, 2.3vw, 1.38rem);
  color: #1a1209;
  font-weight: 700;
  margin: 0.8rem 0 0.9rem;
  line-height: 1.3;
  
  /* Fix for word breaking */
  word-wrap: break-word; /* Allows long words to break */
  overflow-wrap: break-word; /* Modern version of word-wrap */
  word-break: break-word; /* Breaks long words if needed */
  hyphens: auto; /* Adds hyphenation for better breaks (optional) */
  
  /* Ensure text is visible */
  overflow: visible; /* Changed from hidden */
  white-space: normal; /* Allow wrapping to next line */
}

.spice-level {
  font-size: 0.88rem;
  color: #ce1212;
  font-weight: 500;
  margin-left: 0.3rem;
}

.description {
  font-size: 0.96rem;
  color: #5c4a38;
  line-height: 1.58;
  margin: 0.6rem 0 1.4rem;
  flex-grow: 1;
}

.price {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ce1212;
  margin-top: auto; /* This pushes it to the bottom */
  padding-top: 0.6rem; /* Reduced from 1.1rem to raise it up slightly */
  padding-bottom: 0.3rem; /* Add some bottom padding */
  border-top: 1px dashed rgba(206,18,18,0.18);
  text-align: center; /* Center the price text */
  position: relative; /* For fine adjustment if needed */
  width: 100%; /* Ensure it spans full width */
  box-sizing: border-box; /* Include padding in width calculation */
}

/* Optional: If you want to adjust the exact vertical position */
.price {
  /* ... other styles ... */
  bottom: -5px; /* Slightly raise from the absolute bottom */
  position: relative;
}

.menu-accent {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 2.6rem;
  opacity: 0.12;
  color: #ce1212;
  transition: all 0.6s ease;
}

.menu-card:hover .menu-accent {
  opacity: 0.38;
  transform: scale(1.35) rotate(8deg);
}

/* Premium duck highlight */
.highlight-premium {
  background: linear-gradient(145deg, #fffaf5, #ffefeb);
  border: 1px solid rgba(206,18,18,0.18);
  box-shadow: 0 14px 45px rgba(206,18,18,0.12);
}

.highlight-premium h3 {
  color: #a83232;
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chefs .team-member .member-img {
  position: relative;
  overflow: hidden;
}

/* Make all images the same size */
.chefs .team-member .member-img img {
  width: 100%;
  height: 280px; /* Fixed height - adjust as needed (250px-320px) */
  object-fit: cover; /* This crops images to fit */
  object-position: center 30%; /* Adjusts cropping position - center 30% works well for faces */
}

.chefs .team-member .member-img:after {
  position: absolute;
  content: "";
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 100%;
  background-color: var(--surface-color);
  -webkit-mask: url("../img/team-shape.svg") no-repeat center bottom;
  mask: url("../img/team-shape.svg") no-repeat center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 1;
}

.chefs .team-member .social {
  position: absolute;
  right: -100px;
  top: 30px;
  opacity: 0;
  border-radius: 5px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .team-member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .team-member .social a:hover {
  color: var(--default-color);
}

.chefs .team-member .social i {
  font-size: 18px;
}

.chefs .team-member .member-info {
  padding: 15px 20px 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.chefs .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  font-family: var(--default-font);
}

.chefs .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.chefs .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  flex-grow: 1; /* Makes paragraphs equal height */
}

.chefs .team-member:hover {
  transform: scale(1.03); /* Slightly reduced from 1.08 for better look */
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.15);
}

.chefs .team-member:hover .social {
  right: 8px;
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .chefs .team-member .member-img img {
    height: 260px; /* Slightly smaller on tablets */
  }
  
  /* Ensure columns stack properly */
  .chefs .row.gy-4 > [class*="col-"]:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .chefs .team-member .member-img img {
    height: 240px; /* Even smaller on mobile */
  }
}

/* Adjust center member if needed - remove any special styling */
.center-member .team-member {
  /* Remove any special margin or transform if present */
  transform: none;
  margin-top: 0;
}

/* Optional: If you want left/right images slightly different */
/* Uncomment this section if you want left/right chefs larger than center */

.chefs .team-member:not(.center-member) .member-img img {
  height: 300px; 
}
/*
.center-member .team-member .member-img img {
  height: 280px;
}
*/

.book-a-table {
  padding: 100px 0 120px;
  background-color: var(--surface-color);
}

.book-a-table .section-title h2 {
  color: #b1b1b1;
  font-weight: 500;
  letter-spacing: 1px;
}

.book-a-table .description-title {
  font-family: 'Satisfy', cursive;
  color: #2c1a0d;
  font-size: 1.8rem;
  transform: rotate(-1.5deg);
}

.reservation-img {
  min-height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 24px 0 0 24px;
  box-shadow: -12px 0 50px rgba(200,16,46,0.12);
}

.reservation-form-bg {
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  border-radius: 0 24px 24px 0;
  box-shadow: 0 20px 70px rgba(0,0,0,0.07);
}

.whatsapp-booking-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-control {
  border-radius: 14px;
  border: 1px solid #bdb8b4;
  padding: 14px 20px;
  font-size: 1.05rem;
  background-color: var(--surface-color);
  transition: all 0.4s;
}

.form-control:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.15);
  background: white;
}

.form-control::placeholder {
  color: #636363;
  opacity: 0.9;
}

/* Big WhatsApp button – very prominent */
.btn-whatsapp-big {
  background: #25D366;
  color: white;
  border: none;
  padding: 18px 50px;
  font-size: 1.35rem;
  font-weight: 600;
  border-radius: 60px;
  box-shadow: 0 12px 40px rgba(37,211,102,0.3);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
  min-width: 380px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp-big:hover {
  background: #20b058;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 24px 70px rgba(37,211,102,0.45);
  color: white;
}

@media (max-width: 992px) {
  .reservation-img { border-radius: 24px 24px 0 0; min-height: 480px; }
  .reservation-form-bg { border-radius: 0 0 24px 24px; }
  .btn-whatsapp-big { min-width: 100%; font-size: 1.2rem; padding: 16px 40px; }
}



/* Gallery Section */
.gallery {
  padding: 20px 0 100px;
  background: var(--default-color)
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ce1212 50%, transparent);
}



/* Gallery Container */
.gallery-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  padding: 30px 0 80px;
  border-radius: 25px;
}

/* Slider Track */
.slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  width: 400%; /* 4 slides = 400% */
}

.slide {
  width: 25%; /* 100% / 4 slides = 25% each */
  flex-shrink: 0;
  padding: 0 15px;
  box-sizing: border-box;
}

.slide-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

/* Gallery Items */
.gallery-item {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.09);
  background: white;
  height: 450px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(206,18,46,0.18);
}

.item-inner {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

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

/* Handwritten captions */
.handwritten-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: 'Satisfy', cursive;
  font-size: 2rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.75);
  pointer-events: none;
  text-align: center;
}

/* Beautiful Navigation Buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #ce1212;
  color: #ce1212;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 35px rgba(206, 18, 46, 0.2);
  z-index: 10;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.slider-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ce1212 0%, #ff6b6b 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.slider-nav:hover {
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 45px rgba(206, 18, 46, 0.4);
}

.slider-nav:hover::before {
  opacity: 1;
}

.slider-nav:hover .nav-arrow {
  stroke: white;
}

.slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.nav-arrow {
  width: 28px;
  height: 28px;
  stroke: #ce1212;
  stroke-width: 2.5;
  transition: all 0.3s ease;
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

/* Dots Indicator */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(206, 18, 46, 0.2);
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ce1212 0%, #ff6b6b 100%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.dot.active {
  border-color: rgba(206, 18, 46, 0.3);
  transform: scale(1.2);
}

.dot.active::before {
  transform: scale(1);
}

.dot:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(206, 18, 46, 0.1);
}

/* Responsive - Mobile view (1 image) */
@media (max-width: 992px) {
  .slide-content {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 600px;
  }
  
  .gallery-item {
    height: 400px;
  }
  
  .handwritten-caption {
    font-size: 1.8rem;
  }
  
  .slider-nav {
    width: 60px;
    height: 60px;
  }
  
  .nav-arrow {
    width: 24px;
    height: 24px;
  }
  
  .prev-btn {
    left: 15px;
  }
  
  .next-btn {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .gallery-item {
    height: 350px;
  }
  
  .handwritten-caption {
    font-size: 1.6rem;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  
  .slider-nav {
    width: 55px;
    height: 55px;
  }
  
  .nav-arrow {
    width: 22px;
    height: 22px;
  }
  
  .dot {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 576px) {
  .gallery {
    padding: 100px 0 80px;
  }
  
  .gallery-item {
    height: 300px;
  }
  
  .handwritten-caption {
    font-size: 1.4rem;
  }
  
  .slider-nav {
    width: 50px;
    height: 50px;
  }
  
  .nav-arrow {
    width: 20px;
    height: 20px;
  }
  
  .slider-dots {
    bottom: 20px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
  }
  /* Hide buttons on mobile */
@media (max-width: 992px) {
  .slider-nav {
    display: none !important;
  }
}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
}

.contact .info-item .icon {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  font-family: var(--default-font);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .info-item .social-links a:hover {
  color: var(--accent-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/*--------------------------------------------------------------
# Simple Language Toggle Button
--------------------------------------------------------------*/

.nav-language-toggle {
  margin-left: 10px;
}

.lang-toggle-btn {
  background: transparent !important;
  border: none !important;
  color: rgb(114, 112, 112) !important;
  padding: 8px 0 !important;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 60px;
  justify-content: center;
  text-transform: uppercase;
  font-family: inherit;
}

.lang-toggle-btn:hover {
  color: #ce1212 !important; /* Your accent color */
  background: transparent !important;
}

.lang-flag {
  font-size: 18px;
}

.lang-text {
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Mobile responsive */
@media (max-width: 1199px) {
  .nav-language-toggle {
    margin: 5px 0;
    width: 100%;
    text-align: left;
  }
  
  .lang-toggle-btn {
    width: auto;
    display: inline-flex;
    padding: 10px 20px !important;
    background: transparent !important;
    color: rgb(121, 121, 121) !important;
  }
}

/* Hide all Google Translate elements */
.goog-te-banner-frame,
.goog-te-banner,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-gadget span,
.goog-logo-link {
  display: none !important;
}










/* Simple Language toggle with globe + language code */
.lang-toggle-wrapper {
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  color: #333;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover effect - red background */
.lang-toggle:hover {
  background: #ce1212;
  color: white;
}

.lang-icon {
  font-size: 1.1rem;
}

/* Adjust button text style */
.lang-text {
  font-weight: 600;
  min-width: 20px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .lang-toggle-wrapper {
    margin-left: 1rem;
  }
  .lang-toggle {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
}