/**
* Template Name: Yummy
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Playfair Display", "Times New Roman", serif;
  --nav-font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --accent-font: "Playfair Display", "Times New Roman", 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: #f8f5ef;
  /* Warm neutral base for the site */
  --default-color: #2e254d;
  /* Primary body text for strong contrast */
  --heading-color: #1b1633;
  /* Regal deep tone for headings */
  --accent-color: #d4af37;
  /* Gold accent for premium feel */
  --surface-color: #ffffff;
  /* Card and surface backgrounds */
  --contrast-color: #ffffff;
  /* Contrast color for text on dark backgrounds */
  --muted-color: #6f678d;
  /* Supporting copy color */
  --shadow-soft: 0 24px 60px rgba(29, 22, 53, 0.08);
  /* Soft elevated shadow */
  --radius-large: 28px;
  /* Rounded corners for major surfaces */
  --radius-medium: 18px;
  --radius-small: 12px;
}

/* 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: #1f1a3d;
  --nav-hover-color: #d4af37;
  --nav-mobile-background-color: rgba(255, 255, 255, 0.96);
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #211b3f;
  --nav-dropdown-hover-color: #d4af37;
}

/* 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: #f6f1e8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #171329;
  --default-color: #f2eefc;
  --heading-color: #ffffff;
  --surface-color: #201a3d;
  --contrast-color: #ffffff;
}

/* Theme-specific overrides */
body.dark-theme {
  --nav-color: #ffffff;
  --nav-hover-color: #d4af37;
  --header-background: rgba(23, 19, 41, 0.9);
  --drawer-background: #201a3d;
  --default-color: #f2eefc;
  --heading-color: #ffffff;
  --surface-color: #201a3d;
  --contrast-color: #ffffff;
}

:root {
  --header-background: rgba(255, 255, 255, 0.9);
  --drawer-background: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background:
    radial-gradient(1200px circle at 90% -10%, rgba(212, 175, 55, 0.12), transparent 60%),
    radial-gradient(900px circle at -10% 110%, rgba(33, 27, 63, 0.08), transparent 55%),
    var(--background-color);
  font-family: var(--default-font);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="hi"],
html[lang="hi"] * {
  letter-spacing: 0 !important;
}

html[lang="hi"] *::before,
html[lang="hi"] *::after {
  letter-spacing: 0 !important;
}

html[lang="hi"] [style*="letter-spacing"] {
  letter-spacing: 0 !important;
}

.mobile-nav {
  display: none;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, opacity 0.3s ease;
}

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

.btn-get-started,
.btn-get-started:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.28);
}

.btn-get-started::after {
  content: "\f285";
  font-family: "Bootstrap Icons";
  font-size: 1rem;
  transition: transform 0.35s ease;
}

.btn-get-started:hover,
.btn-get-started:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color) 92%, black 8%);
  transform: translateY(-3px);
  box-shadow: 0 26px 48px rgba(212, 175, 55, 0.32);
}

.btn-get-started:hover::after,
.btn-get-started:focus:hover::after {
  transform: translateX(4px);
}

.btn-outline-accent,
.btn-outline-accent:focus {
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 68%, transparent 32%);
  background: color-mix(in srgb, var(--accent-color) 6%, transparent 94%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color) 85%, black 15%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.24);
}

.text-accent {
  color: var(--accent-color) !important;
}

.btn-lang-toggle,
.btn-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(248, 245, 239, 0.35);
  background: rgba(248, 245, 239, 0.08);
  color: var(--heading-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.btn-lang-toggle:hover,
.btn-theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 245, 239, 0.65);
  background: rgba(248, 245, 239, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

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
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background: var(--header-background);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.header.sticky-top {
  position: sticky;
  top: 0;
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scrolled .header {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  background: var(--header-background);
  padding: 10px 0;
}

/*--------------------------------------------------------------
# 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 a,
  .navmenu a:focus {
    color: #1f1a3d !important;
    /* Force Dark Color for Light Mode with !important */
    padding: 10px 18px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.5px;
    position: relative;
  }

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus,
  .navmenu li:hover>a {
    color: var(--accent-color);
  }

  /* Underline effect */
  .navmenu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 18px;
    background-color: var(--accent-color);
    transition: width 0.3s ease-in-out;
  }

  .navmenu a:hover::after,
  .navmenu .active::after {
    width: calc(100% - 36px);
  }

  body.dark-theme .navmenu a,
  body.dark-theme .navmenu a:focus {
    color: #ffffff !important;
  }
}

body.dark-theme .header .logo h1 {
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# Header Actions & Auth
--------------------------------------------------------------*/
.header-actions {
  display: flex;
  align-items: center;
}

.hb-icon-link {
  color: var(--heading-color);
  font-size: 1.3rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hb-icon-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.bg-accent {
  background-color: var(--accent-color) !important;
  color: #fff;
}

.btn-get-started-sm {
  background: var(--accent-color);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  cursor: pointer;
}

.btn-get-started-sm:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 10%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-icon-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  background: rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  font-size: 0.9rem;
}

.btn-icon-sm:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

/* Auth Dropdown */
.auth-avatar {
  width: 32px;
  height: 32px;
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.btn-auth-dropdown {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 4px 12px 4px 4px;
  border-radius: 50px;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s;
}

.btn-auth-dropdown:hover,
.btn-auth-dropdown[aria-expanded="true"] {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu.animate {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.slideIn {
  animation-name: slideIn;
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation (Drawer)
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: var(--heading-color);
  font-size: 28px;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
  margin-left: 15px;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  /* Hidden by default */
  width: 300px;
  bottom: 0;
  background: var(--drawer-background);
  z-index: 9999;
  transition: 0.3s ease-in-out;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--heading-color);
  cursor: pointer;
}

.mobile-nav-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 15px;
}

.mobile-nav-links a {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding: 5px 0;
  transition: 0.3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.auth-avatar-lg {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Header Auth Controls
--------------------------------------------------------------*/
.header-auth {
  display: flex;
  align-items: center;
}

.header-auth .auth-state.auth-signed-out {
  flex-direction: row;
  align-items: center;
  gap: 0.35rem;
}

.header-auth .auth-status-message {
  width: auto;
}

.auth-state {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-state[hidden] {
  display: none !important;
}

.auth-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.12em;
}

.auth-login-btn::after {
  content: none !important;
}

.auth-login-btn .bi {
  font-size: 1rem;
}

.auth-state.auth-signed-out {
  flex-direction: column;
  align-items: flex-start;
}

.auth-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.auth-user-chip .bi {
  font-size: 1rem;
}

body.dark-theme .auth-user-chip {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.auth-user-name {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.auth-role-badge {
  background: rgba(212, 175, 55, 0.32);
  color: #f4d27a;
  border-radius: 999px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.2rem 0.7rem;
}

.auth-logout-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.auth-logout-btn:hover,
.auth-logout-btn:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

body.dark-theme .auth-logout-btn {
  border-color: rgba(255, 255, 255, 0.4);
}

body.dark-theme .auth-role-badge {
  background: rgba(212, 175, 55, 0.75);
  color: #1a1a1a;
}

.auth-status-message {
  width: 100%;
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.auth-status-message[hidden] {
  display: none !important;
}

.auth-status-message[data-status-type='error'] {
  color: #f29fa5;
}

.auth-page {
  background:
    radial-gradient(900px circle at 90% 10%, rgba(212, 175, 55, 0.1), transparent 60%),
    radial-gradient(820px circle at 0% 110%, rgba(27, 22, 53, 0.08), transparent 55%),
    var(--background-color);
}

.auth-section {
  padding: 4.5rem 0 6rem;
}

.auth-card {
  background: var(--surface-color);
  border-radius: var(--radius-large);
  padding: 2.75rem 2.5rem;
  border: 1px solid rgba(33, 27, 63, 0.06);
  box-shadow: 0 20px 60px rgba(27, 22, 53, 0.08);
}

.auth-card h1 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  letter-spacing: 0.02em;
}

.auth-card p {
  color: var(--default-color);
}

.auth-card .text-muted {
  color: color-mix(in srgb, var(--muted-color) 92%, var(--heading-color) 8%) !important;
}

.auth-card .form-label {
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--heading-color);
}

.auth-card .form-control {
  border-radius: var(--radius-small);
  border: 1px solid rgba(33, 27, 63, 0.08);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.auth-card .form-control:focus {
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.18);
}

.auth-card .form-text {
  font-size: 0.8rem;
  color: var(--muted-color);
}

.auth-card .auth-submit-btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.auth-card .auth-submit-btn:hover,
.auth-card .auth-submit-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(212, 175, 55, 0.32);
}

.auth-status.alert {
  border: none;
  border-radius: var(--radius-small);
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(27, 22, 53, 0.06);
  color: var(--default-color);
}

.auth-card p a {
  color: var(--accent-color);
}

.auth-card p a:hover {
  text-decoration: underline;
}

body.dark-theme .auth-card {
  background: rgba(24, 19, 37, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(2, 0, 12, 0.5);
}

body.dark-theme .auth-card h1,
body.dark-theme .auth-card p {
  color: rgba(255, 255, 255, 0.88);
}

body.dark-theme .auth-card .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-theme .auth-card .form-control {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--contrast-color);
}

body.dark-theme .auth-card .form-control:focus {
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.24);
}

body.dark-theme .auth-card .form-label {
  color: rgba(236, 206, 120, 0.95);
}

body.dark-theme .auth-card .form-text {
  color: rgba(255, 255, 255, 0.65);
}

body.dark-theme .auth-status.alert {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 575px) {
  .auth-card {
    padding: 2.25rem 1.75rem;
  }
}

.mobile-nav .auth-wrapper {
  display: block;
  margin-top: 1.5rem;
}

.mobile-nav .auth-login-btn-mobile {
  width: 100%;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.auth-login-btn-mobile::after {
  content: none !important;
}

.auth-login-btn-mobile .bi {
  font-size: 1rem;
}

.form-status-inline {
  margin-top: 0.75rem;
}

.form-status-inline.is-hidden {
  display: none !important;
}

.auth-logout-btn-mobile {
  align-self: flex-start;
}

.highlight-card {
  border-radius: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-card .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  color: var(--accent-color);
}

.highlight-card .icon-wrapper i {
  line-height: 1;
}

.journal-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--surface-color);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.journal-card a {
  color: var(--accent-color);
  text-decoration: none;
}

.journal-card a:hover {
  text-decoration: underline;
}

.experience .badge-card {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent 85%);
  color: var(--heading-color);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 575px) {
  .experience .badge-card {
    position: static;
    margin-top: 1rem;
  }
}

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
    gap: 10px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 0;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: rgba(248, 245, 239, 0.78);
    font-size: 0.8rem;
    padding: 0.45rem 1.15rem;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-radius: 999px;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--default-color);
    background: rgba(212, 175, 55, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  }

  .navmenu .nav-highlight>a,
  .navmenu .nav-highlight>a:focus {
    border: 1px solid rgba(212, 175, 55, 0.6);
    color: var(--accent-color);
    padding-inline: 1.4rem;
    letter-spacing: 0.22em;
  }

  .navmenu .nav-highlight>a:hover {
    background: rgba(212, 175, 55, 0.18);
    color: var(--default-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  }

  .navmenu .nav-highlight>a.active {
    background: var(--accent-color);
    color: var(--default-color);
    box-shadow: 0 16px 32px rgba(212, 175, 55, 0.35);
  }

  .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(--background-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    background: rgba(248, 245, 239, 0.08);
    border-radius: 50%;
    padding: 10px;
    border: 1px solid rgba(248, 245, 239, 0.35);
  }

  .mobile-nav-toggle:hover {
    background: rgba(248, 245, 239, 0.18);
    transform: translateY(-2px);
  }

  .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);
  }

  html,
  body {
    overflow-x: hidden;
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--contrast-color);
    position: absolute;
    font-size: 32px;
    top: 18px;
    right: 22px;
    margin-right: 0;
    z-index: 10001;
    background: var(--accent-color);
    border-color: color-mix(in srgb, var(--accent-color) 85%, black 15%);
  }

  .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;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: min(340px, 84vw);
    height: 100vh;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 232, 0.96));
    padding: 70px 0 30px;
    overflow-y: auto;
    transition: right 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
    box-shadow: -24px 0 60px rgba(17, 15, 33, 0.24);
    border-left: 1px solid color-mix(in srgb, var(--accent-color) 28%, transparent 72%);
    backdrop-filter: blur(16px);
    display: block;
  }

  .mobile-nav.active,
  .mobile-nav-active .mobile-nav {
    right: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-wrapper {
    padding: 0 28px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-nav-menu li {
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color) 18%, transparent 82%);
    padding-bottom: 8px;
  }

  .mobile-nav-menu li:last-child {
    border-bottom: none;
  }

  .mobile-nav-menu a {
    display: block;
    padding: 16px 4px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-nav-menu a:hover,
  .mobile-nav-menu .active {
    color: var(--accent-color);
    transform: translateX(4px);
  }

  .mobile-nav-buttons {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid color-mix(in srgb, var(--accent-color) 18%, transparent 82%);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .mobile-nav-buttons .btn-cart-indicator {
    grid-column: 1 / -1;
    justify-content: space-between;
    border-radius: 18px;
    padding: 12px 18px;
  }

  .mobile-nav-buttons .btn-cart-indicator .cart-count {
    min-width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .mobile-nav-buttons .btn-lang-toggle,
  .mobile-nav-buttons .btn-theme-toggle {
    width: 100%;
    border-radius: var(--radius-small);
    padding: 12px;
    background: color-mix(in srgb, var(--accent-color) 12%, transparent 88%);
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--accent-color) 22%, transparent 78%);
  }

  .mobile-nav-buttons .btn-getstarted {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 4px;
  }

  .dark-theme .mobile-nav {
    background: color-mix(in srgb, #171329 92%, var(--surface-color) 8%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.4);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --heading-font: var(--heading-font);
  color: var(--default-color);
  background: linear-gradient(180deg, rgba(23, 18, 40, 0.95), rgba(17, 13, 29, 0.98));
  font-size: 14px;
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}

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

.footer h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #f1ecff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer .address p {
  margin-bottom: 0px;
  color: rgba(241, 236, 255, 0.72);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 16px;
  color: rgba(241, 236, 255, 0.75);
  margin-right: 12px;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
  backdrop-filter: blur(6px);
}

.footer .social-links a:hover {
  color: #121212;
  border-color: transparent;
  background: var(--accent-color);
  transform: translateY(-3px);
}

.footer .copyright {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(241, 236, 255, 0.62);
}

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

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(241, 236, 255, 0.55);
}

/*--------------------------------------------------------------
# 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: 110px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  isolation: isolate;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.section-title h2 {
  font-size: 12px;
  letter-spacing: 0.4em;
  font-weight: 600;
  padding: 0;
  margin: 0 0 16px 0;
  color: color-mix(in srgb, var(--default-color) 45%, transparent 55%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-family: var(--nav-font);
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  flex: 1 1 42px;
  height: 1px;
  background: color-mix(in srgb, var(--accent-color) 45%, transparent 55%);
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: clamp(2.4rem, 3vw + 1rem, 3.4rem);
  font-weight: 600;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
}

.section-title .section-subtitle {
  color: var(--heading-color);
  margin: 12px 0 0;
  font-size: clamp(1.35rem, 1.6vw + 0.6rem, 1.9rem);
  font-weight: 600;
  font-family: var(--heading-font);
  letter-spacing: -0.01em;
}

.section-title .section-note {
  margin-top: 12px;
  color: color-mix(in srgb, var(--heading-color) 72%, transparent 28%);
  font-size: clamp(1rem, 1.2vw + 0.45rem, 1.25rem);
  line-height: 1.7;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title .section-note strong {
  color: var(--accent-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85em;
  margin-right: 6px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 85vh;
  position: relative;
  padding: 140px 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 245, 239, 0.8) 50%, rgba(232, 225, 206, 0.85) 100%);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 4vw + 1rem, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  font-family: var(--heading-font);
}

.hero p {
  color: color-mix(in srgb, var(--default-color) 70%, transparent 30%);
  margin: 5px 0 36px;
  font-size: 1.125rem;
  font-weight: 400;
}

.hero .btn-get-started {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  padding: 18px 48px;
  box-shadow: 0 26px 48px rgba(212, 175, 55, 0.3);
}

.hero .btn-get-started:hover,
.hero .btn-get-started:focus:hover {
  box-shadow: 0 32px 60px rgba(212, 175, 55, 0.34);
}

.hero .btn-watch-video {
  font-size: 1rem;
  transition: color 0.4s ease;
  margin-left: 28px;
  color: color-mix(in srgb, var(--default-color) 85%, transparent 15%);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 1.75rem;
  transition: transform 0.4s ease, color 0.4s ease;
  line-height: 0;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color) 88%, black 12%);
  transform: translateX(4px);
}

.hero .animated {
  animation: up-down 3s ease-in-out infinite alternate;
  border-radius: var(--radius-large);
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: drop-shadow(0 30px 60px rgba(23, 18, 40, 0.25));
}

.hero .animated:hover {
  transform: translateY(-6px) scale(1.01);
  filter: drop-shadow(0 34px 68px rgba(23, 18, 40, 0.28));
}

@media (max-width: 991px) {
  .hero {
    padding: 110px 0 90px;
    border-radius: var(--radius-medium);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 0 80px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 6vw + 1rem, 3rem);
    line-height: 1.15;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Special Offer Section
--------------------------------------------------------------*/
.special-offer .offer-box {
  position: relative;
  overflow: hidden;
  background: var(--surface-color);
  border-radius: var(--radius-large);
  padding: 52px 48px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 24%, transparent 76%);
  box-shadow: var(--shadow-soft);
}

.special-offer .offer-box::before {
  content: "";
  position: absolute;
  inset: -20% -40% 50% -20%;
  background: radial-gradient(circle at top right, color-mix(in srgb, var(--accent-color) 85%, #ffffff 15%), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.special-offer .offer-box::after {
  content: "";
  position: absolute;
  inset: 45% -30% -30% 50%;
  background: radial-gradient(circle at center, rgba(33, 27, 63, 0.12), transparent 68%);
  pointer-events: none;
}

.special-offer .offer-box h2 {
  position: relative;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(2rem, 2.6vw + 1rem, 2.8rem);
  margin-bottom: 18px;
  color: var(--heading-color);
}

.special-offer .offer-box .lead {
  position: relative;
  font-size: 1.06rem;
  color: color-mix(in srgb, var(--default-color) 68%, transparent 32%);
  margin-bottom: 32px;
}

.special-offer .offer-box strong {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 18px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.about .book-a-table {
  text-align: center;
  padding: 32px;
  border-radius: var(--radius-medium);
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 22%, transparent 78%);
  box-shadow: var(--shadow-soft);
}

.about .book-a-table h3 {
  font-family: var(--heading-font);
  margin: 0 0 6px 0;
  font-size: 1.6rem;
}

.about .book-a-table p {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.about .content ul li {
  padding: 16px 20px 16px 52px;
  position: relative;
  border-radius: var(--radius-small);
  background: color-mix(in srgb, var(--accent-color) 8%, transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color) 16%, transparent 84%);
  box-shadow: 0 12px 24px rgba(33, 27, 63, 0.08);
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.about img {
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 56px rgba(17, 15, 33, 0.18);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 85%, #ffffff 15%), var(--accent-color));
  padding: 40px;
  border-radius: var(--radius-large);
  box-shadow: 0 28px 52px rgba(212, 175, 55, 0.32);
  position: relative;
  overflow: hidden;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 2.1rem;
  margin-bottom: 24px;
}

.why-us .why-box p {
  margin-bottom: 28px;
  opacity: 0.88;
  font-size: 1.05rem;
}

.why-us .why-box .more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.18);
  padding: 12px 34px;
  color: var(--contrast-color);
  transition: 0.35s ease;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(17, 15, 33, 0.16);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 46px 36px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-medium);
  border: 1px solid color-mix(in srgb, var(--accent-color) 14%, transparent 86%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-us .icon-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 52px rgba(17, 15, 33, 0.16);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 38px;
  margin-bottom: 28px;
  background: color-mix(in srgb, var(--accent-color) 18%, transparent 82%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.why-us .icon-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 18px 0;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.why-us .icon-box p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color) 65%, transparent 35%);
}

.why-us .icon-box:hover i {
  color: #121212;
  background: #e0c56e;
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(212, 175, 55, 0.28);
}

.dark-theme .why-us .icon-box h4,
.dark-theme .why-us .icon-box p {
  color: var(--default-color);
}

.dark-theme .menu .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 140px 0;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.stats:before {
  content: "";
  background: linear-gradient(135deg, rgba(23, 18, 40, 0.75), rgba(33, 27, 63, 0.55));
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats::after {
  content: "";
  position: absolute;
  inset: 18% -22% -28% 40%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.28), transparent 65%);
  z-index: 2;
  opacity: 0.8;
}

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

.stats .stats-item {
  padding: 34px;
  width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-medium);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 44px rgba(10, 7, 18, 0.3);
}

.stats .stats-item span {
  font-size: clamp(2.8rem, 3.4vw + 1rem, 3.8rem);
  display: block;
  color: #fef8de;
  font-weight: 600;
  font-family: var(--heading-font);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
  display: inline-flex;
  gap: 16px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent 88%);
  padding: 8px;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(17, 15, 33, 0.08);
}

.menu .nav-link {
  background: var(--surface-color);
  color: color-mix(in srgb, var(--default-color) 70%, transparent 30%);
  padding: 12px 28px;
  transition: 0.35s ease;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid color-mix(in srgb, var(--accent-color) 18%, transparent 82%);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 575px) {
  .menu .nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu .nav-link {
    padding: 10px 22px;
  }

  .header .btn-cart-indicator {
    padding: 8px 14px;
  }
}

.menu .nav-link i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.menu .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 16px 26px rgba(212, 175, 55, 0.2);
}

.menu .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--accent-color) 85%, black 15%);
  box-shadow: 0 22px 40px rgba(212, 175, 55, 0.28);
}

.menu .menu-item {
  text-align: center;
  background: var(--surface-color);
  padding: 36px 28px 42px;
  border-radius: var(--radius-large);
  border: 1px solid color-mix(in srgb, var(--accent-color) 18%, transparent 82%);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@media (max-width: 575px) {
  .menu .menu-item {
    padding: 28px 20px 34px;
  }
}

.menu .menu-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 56px rgba(17, 15, 33, 0.15);
}

.menu .menu-item .menu-img {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 12px;
  transition: transform 0.4s ease;
}

.menu .menu-item:hover .menu-img {
  transform: translateY(-6px) scale(1.02);
}

.menu .menu-item h4 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 2px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.menu .menu-item .ingredients {
  font-family: var(--default-font);
  color: color-mix(in srgb, var(--default-color) 65%, transparent 35%);
  margin-bottom: 8px;
  min-height: 56px;
}

.menu .menu-item .price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
}

.menu .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 999px;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 16px 28px rgba(212, 175, 55, 0.25);
}

.menu .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color) 92%, black 8%);
  border-color: color-mix(in srgb, var(--accent-color) 92%, black 8%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 24px 38px rgba(212, 175, 55, 0.32);
}

/*--------------------------------------------------------------
# Product & Preorder Modals
--------------------------------------------------------------*/
.product-modal,
.preorder-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem clamp(1rem, 4vw, 3rem);
}

.product-modal .modal-dialog.modal-lg,
.preorder-modal .modal-dialog.modal-lg {
  max-width: min(960px, 92vw);
  width: 100%;
  margin: 0;
}

.product-modal .modal-content,
.preorder-modal .modal-content {
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 18px;
  position: relative;
  text-align: left;
  border: 1px solid color-mix(in srgb, var(--accent-color) 30%, transparent 70%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  min-height: clamp(320px, 60vh, 520px);
}

.product-modal .row,
.preorder-modal .row {
  flex: 1 1 auto;
}

.product-modal .modal-body-right,
.preorder-modal .modal-body-right {
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  background: color-mix(in srgb, var(--surface-color) 92%, var(--accent-color) 8%);
  border-left: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent 75%);
  overflow-y: auto;
}

.product-modal .modal-body-right h4,
.preorder-modal .modal-body-right h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--heading-color);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.product-modal #modalDesc {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-modal .modal-close,
.preorder-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--surface-color) 70%, var(--accent-color) 30%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease;
  line-height: 1;
}

.product-modal .modal-close:hover,
.preorder-modal .modal-close:hover {
  transform: translateY(-2px);
  color: var(--contrast-color);
  background: var(--accent-color);
}

#productModal,
#preorderSelectionModal {
  transition: opacity 0.2s;
}

.product-modal .img-fluid,
.preorder-modal .img-fluid {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(12, 10, 8, 0.55);
  backdrop-filter: blur(6px);
  z-index: 9998;
  transition: opacity 0.3s ease;
  display: none;
}

.product-modal .desc-tile {
  background: color-mix(in srgb, var(--surface-color) 88%, var(--accent-color) 12%);
  color: var(--default-color);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 35%, transparent 65%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  font-size: 1rem;
  line-height: 1.65;
}

.preorder-modal .modal-body-right {
  background: var(--surface-color);
  border-left: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.preorder-modal .modal-body-right p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  line-height: 1.6;
}

.preorder-modal .size-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.preorder-modal .size-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 35%, transparent 65%);
  background: color-mix(in srgb, var(--surface-color) 94%, var(--accent-color) 6%);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.preorder-modal .size-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.08);
  border-color: color-mix(in srgb, var(--accent-color) 55%, transparent 45%);
}

.preorder-modal .size-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-color);
}

.preorder-modal .size-option span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
}

.preorder-modal .size-option input[type="radio"]:checked+span {
  color: color-mix(in srgb, var(--heading-color) 90%, var(--accent-color) 10%);
}

.preorder-modal .modal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.modal-action-btn {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-action-btn.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.modal-action-btn.primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.modal-action-btn.primary:not(:disabled):hover {
  transform: translateY(-1px);
}

.modal-action-btn.ghost {
  background: color-mix(in srgb, var(--surface-color) 75%, var(--accent-color) 25%);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 35%, transparent 65%);
}

.modal-action-btn.ghost:hover {
  background: color-mix(in srgb, var(--accent-color) 40%, transparent 60%);
}

@media (max-width: 767px) {

  .product-modal,
  .preorder-modal {
    padding: 1.25rem;
  }

  .product-modal .modal-content,
  .preorder-modal .modal-content {
    flex-direction: column;
  }

  .product-modal .modal-dialog.modal-lg,
  .preorder-modal .modal-dialog.modal-lg {
    max-width: 100%;
    margin: 0;
  }

  .product-modal .img-fluid.rounded-start,
  .preorder-modal .img-fluid.rounded-start {
    border-radius: 16px 16px 0 0 !important;
    max-height: 240px;
  }

  .product-modal .modal-body-right,
  .preorder-modal .modal-body-right {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent 75%);
    background: color-mix(in srgb, var(--surface-color) 94%, var(--accent-color) 6%);
  }

  .product-modal .modal-close,
  .preorder-modal .modal-close {
    top: 12px;
    right: 16px;
  }
}

.product-modal.dark-theme .modal-content,
.preorder-modal.dark-theme .modal-content {
  background: #0f0f0f;
  color: #f4f4f4;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.6);
}

.product-modal.dark-theme .modal-body-right,
.preorder-modal.dark-theme .modal-body-right {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.product-modal.dark-theme .desc-tile {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.5);
  color: #f4f4f4;
  box-shadow: none;
}

.product-modal.dark-theme .modal-close,
.preorder-modal.dark-theme .modal-close {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.product-modal.dark-theme .modal-close:hover,
.preorder-modal.dark-theme .modal-close:hover {
  background: var(--accent-color);
  color: #1a1a1a;
}

.preorder-modal.dark-theme .modal-body-right p {
  color: rgba(255, 255, 255, 0.75);
}

.preorder-modal.dark-theme .size-option {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.preorder-modal.dark-theme .size-option:hover {
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 215, 0, 0.45);
}

.preorder-modal.dark-theme .size-option span {
  color: #f5f5f5;
}

.preorder-modal.dark-theme .modal-action-btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #f5f5f5;
  border-color: rgba(255, 255, 255, 0.18);
}

.preorder-modal.dark-theme .modal-action-btn.ghost:hover {
  background: rgba(255, 215, 0, 0.18);
  color: #1a1a1a;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  position: relative;
  padding: 40px 36px;
  border-radius: var(--radius-large);
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--accent-color) 16%, transparent 84%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 60%, transparent 40%));
  pointer-events: none;
}

.testimonials .testimonial-item .testimonial-content {
  padding-top: 16px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--accent-color) 35%, transparent 65%);
  margin: 0 auto 18px;
  width: 96px;
  height: 96px;
  object-fit: cover;
}

.testimonials .testimonial-item h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 10px 0 4px 0;
  font-family: var(--heading-font);
}

.testimonials .testimonial-item h4 {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color) 55%, transparent 45%);
  margin: 0 0 16px 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials .testimonial-item .stars i {
  color: #f9d66e;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color) 80%, transparent 20%);
  font-size: 1.8rem;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  display: inline-flex;
  align-items: center;
}

.testimonials .testimonial-item .quote-icon-right {
  transform: scale(-1, -1);
  opacity: 0.75;
}

.testimonials .testimonial-item p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color) 75%, transparent 25%);
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
  position: relative;
}

.events .event-item .price {
  color: #ffffff;
  border-bottom: 2px solid var(--accent-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
}

.events .swiper-wrapper {
  height: auto;
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# 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;
}

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

.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: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  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: 10px 15px 20px 15px;
}

.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%);
}

.chefs .team-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

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

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
}

.book-a-table .php-email-form {
  padding: 30px;
}

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

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

.book-a-table .php-email-form input[type=text]:focus,
.book-a-table .php-email-form input[type=email]:focus,
.book-a-table .php-email-form input[type=number]:focus,
.book-a-table .php-email-form input[type=date]:focus,
.book-a-table .php-email-form input[type=time]:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

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

.book-a-table .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 4px;
}

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border: 0;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.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;
  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;
}

/* Map Container */
.map-container {
  position: relative;
  height: 400px;
  background: #f8f9fa;
  border-radius: 4px;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.map-overlay {
  text-align: center;
  color: var(--accent-color);
}

.map-overlay i {
  font-size: 48px;
  margin-bottom: 10px;
  display: block;
}

.map-overlay p {
  margin: 0;
  font-weight: 500;
}

.map-placeholder:hover .map-overlay {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Contact Form */
.contact-form {
  background-color: var(--surface-color);
  padding: 30px;
  margin-top: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  color: var(--default-color);
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 4px;
  width: 100%;
}

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

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

.contact-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
}

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter .starter-item {
  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;
  padding: 30px;
}

/* Performance Optimizations */
.contact .info-item,
.contact-form {
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {

  * {
    scroll-behavior: auto !important;
  }
}


/*--------------------------------------------------------------
# Theme Toggle
--------------------------------------------------------------*/
.btn-theme-toggle {
  color: #ffd700;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s;
}

.btn-theme-toggle:hover {
  color: #b8860b;
}

/*--------------------------------------------------------------
# Dark Theme
--------------------------------------------------------------*/
body.dark-theme {
  --background-color: #05040e;
  --default-color: #e7e3ff;
  --heading-color: #fdfbf3;
  --accent-color: #ffd700;
  --surface-color: #0f1022;
  --contrast-color: #050508;
  --muted-color: #b8b3d6;
  --shadow-soft: 0 36px 72px rgba(0, 0, 0, 0.52);

  --nav-color: rgba(255, 255, 255, 0.9);
  --nav-hover-color: #ffd700;
  --nav-mobile-background-color: rgba(12, 11, 24, 0.96);
  --nav-dropdown-background-color: #0f1022;
  --nav-dropdown-color: rgba(255, 255, 255, 0.85);
  --nav-dropdown-hover-color: #ffd700;

  background:
    radial-gradient(1100px circle at 18% -10%, rgba(255, 215, 0, 0.16), transparent 62%),
    radial-gradient(880px circle at 88% 120%, rgba(82, 52, 160, 0.3), transparent 66%),
    #05040e;
  color: var(--default-color);
}

body.dark-theme .light-background {
  background: linear-gradient(140deg, rgba(12, 11, 24, 0.92) 0%, rgba(22, 19, 42, 0.9) 100%);
  --surface-color: rgba(19, 18, 34, 0.92);
}

body.dark-theme .section-title h2 {
  color: rgba(255, 255, 255, 0.65);
}

body.dark-theme .section-title p,
body.dark-theme .section-title .section-subtitle {
  color: var(--heading-color);
}

body.dark-theme .section-title p .description-title,
body.dark-theme .section-title .description-title {
  color: var(--accent-color);
}

body.dark-theme .section-title .section-note {
  color: color-mix(in srgb, var(--default-color) 82%, transparent 18%);
}

body.dark-theme .section-title .section-note strong {
  color: var(--accent-color);
}

body.dark-theme .header {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

body.dark-theme .header .logo h1 {
  color: var(--background-color);
}

body.dark-theme .header .btn-getstarted,
body.dark-theme .header .btn-getstarted:focus {
  box-shadow: 0 20px 32px rgba(255, 215, 0, 0.28);
}

body.dark-theme .navmenu a,
body.dark-theme .navmenu a:focus {
  color: rgba(255, 255, 255, 0.78);
}

body.dark-theme .navmenu li:hover>a,
body.dark-theme .navmenu .active,
body.dark-theme .navmenu .active:focus {
  color: var(--default-color);
  background: rgba(255, 215, 0, 0.18);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

body.dark-theme .hb-top-bar .logo h1,
body.dark-theme .hb-top-bar .logo span,
body.dark-theme .hb-top-bar .hb-icon-button,
body.dark-theme .hb-top-bar .hb-icon-button i,
body.dark-theme .hb-top-bar .btn-lang-toggle,
body.dark-theme .hb-top-bar .btn-lang-toggle span,
body.dark-theme .hb-top-bar .btn-theme-toggle,
body.dark-theme .hb-top-bar .btn-theme-toggle i {
  color: #ffffff;
}

body.dark-theme .mobile-nav-toggle {
  background: rgba(255, 215, 0, 0.14);
  border-color: rgba(255, 215, 0, 0.25);
}

body.dark-theme .mobile-nav.active {
  box-shadow: -24px 0 64px rgba(3, 2, 8, 0.66);
}

body.dark-theme .hero {
  background: linear-gradient(135deg, rgba(13, 10, 28, 0.94) 0%, rgba(28, 22, 54, 0.88) 52%, rgba(45, 33, 68, 0.82) 100%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
}

body.dark-theme .hero::after {
  inset: 10% -18% -30% 42%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.35), transparent 68%);
  opacity: 0.85;
}

body.dark-theme .hero h1 {
  color: #fdf6d1;
}

body.dark-theme .hero p {
  color: rgba(235, 232, 255, 0.78);
}

body.dark-theme .hero .btn-get-started {
  box-shadow: 0 28px 56px rgba(255, 215, 0, 0.35);
}

body.dark-theme .hero .btn-get-started:hover,
body.dark-theme .hero .btn-get-started:focus:hover {
  box-shadow: 0 36px 68px rgba(255, 215, 0, 0.42);
}

body.dark-theme .special-offer .offer-box {
  background: linear-gradient(140deg, rgba(12, 11, 26, 0.95) 0%, rgba(34, 27, 56, 0.82) 100%);
  border: 1px solid rgba(255, 215, 0, 0.22);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.56);
}

body.dark-theme .special-offer .offer-box::before {
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.38), transparent 70%);
}

body.dark-theme .special-offer .offer-box::after {
  background: radial-gradient(circle at center, rgba(96, 74, 170, 0.26), transparent 70%);
}

body.dark-theme .special-offer .offer-box h2 {
  color: var(--accent-color);
}

body.dark-theme .special-offer .offer-box .lead {
  color: rgba(235, 232, 255, 0.82);
}

body.dark-theme .btn-get-started,
body.dark-theme .menu .btn-primary {
  box-shadow: 0 26px 52px rgba(255, 215, 0, 0.32);
}

body.dark-theme .btn-outline-accent,
body.dark-theme .btn-outline-accent:focus {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color) 72%, rgba(255, 255, 255, 0.22));
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 34px rgba(255, 215, 0, 0.12);
}

body.dark-theme .btn-get-started:hover,
body.dark-theme .menu .btn-primary:hover {
  box-shadow: 0 34px 64px rgba(255, 215, 0, 0.4);
}

body.dark-theme .btn-outline-accent:hover,
body.dark-theme .btn-outline-accent:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color) 85%, black 15%);
  box-shadow: 0 24px 46px rgba(255, 215, 0, 0.24);
}

body.dark-theme .testimonials .testimonial-item {
  background: radial-gradient(120% 140% at 15% 10%, rgba(255, 215, 0, 0.08), transparent), rgba(18, 16, 36, 0.92);
  border: 1px solid rgba(255, 215, 0, 0.18);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
  color: rgba(235, 232, 255, 0.9);
}

body.dark-theme .testimonials .testimonial-item::before {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.85), rgba(255, 215, 0, 0.28));
}

body.dark-theme .testimonials .testimonial-item h3 {
  color: var(--accent-color);
}

body.dark-theme .testimonials .testimonial-item h4 {
  color: rgba(235, 232, 255, 0.6);
}

body.dark-theme .testimonials .testimonial-item p {
  color: rgba(244, 242, 255, 0.82);
}

body.dark-theme .testimonials .testimonial-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 38px 72px rgba(255, 215, 0, 0.28);
}

body.dark-theme .testimonials .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.25);
}

body.dark-theme .testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

body.dark-theme .contact .info-item,
body.dark-theme .contact-form {
  background: rgba(16, 17, 33, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.42);
}

body.dark-theme .map-placeholder {
  background: linear-gradient(135deg, rgba(15, 14, 24, 0.92) 0%, rgba(39, 30, 55, 0.85) 100%);
}

body.dark-theme .contact-form input,
body.dark-theme .contact-form textarea {
  background-color: rgba(5, 5, 10, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(248, 247, 255, 0.92);
}

body.dark-theme .contact-form input::placeholder,
body.dark-theme .contact-form textarea::placeholder {
  color: rgba(198, 196, 220, 0.6);
}

body.dark-theme .why-us .icon-box {
  background: radial-gradient(120% 120% at 20% 0%, rgba(255, 215, 0, 0.08), transparent), rgba(18, 16, 36, 0.92);
  border: 1px solid rgba(255, 215, 0, 0.18);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.55);
}

body.dark-theme .why-us .icon-box h4,
body.dark-theme .why-us .icon-box p {
  color: rgba(235, 232, 255, 0.88);
}

.cart-items-list .cart-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.75rem;
}

.cart-items-list .cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.cart-items-list .cart-quantity-control .cart-qty-input {
  width: 64px;
  text-align: center;
}

.cart-summary.disabled {
  pointer-events: none;
}