/**
* Desarrollado por AmericaPixelGames, americapixelgames.com
*/

/*--------------------------------------------------------------
# Font & Color Variables

--------------------------------------------------------------*/
/* Fonts */
/* ========= FUENTES WESTERN LOCALES ========= */
@font-face{
  font-family:"Cowboys";
  src:url("../fonts/Cowboys 2.0.otf") format("opentype");
  font-weight:400; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Nashville";
  src:url("../fonts/NASHVILL.TTF") format("truetype");
  font-weight:400; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Playbill";
  src:url("../fonts/Playbill Regular.ttf") format("truetype");
  font-weight:400; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Rosewood Std Fill";
  src:url("../fonts/Rosewood Std Fill.otf") format("opentype");
  font-weight:400; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Weston";
  src:url("../fonts/Weston Free.otf") format("opentype");
  font-weight:700; font-style:normal; font-display:swap; /* versión “Free” suele ser bold */
}
@font-face{
  font-family:"Weston";
  src:url("../fonts/Weston Light Free.otf") format("opentype");
  font-weight:300; font-style:normal; font-display:swap;
}

@font-face{
  font-family:"Woodblock";
  src:url("../fonts/Wood Block CG Regular.otf") format("opentype");
  font-weight:400; font-style:normal; font-display:swap;
}

: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: "Playfair Display",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
  --sitename-font: var(--heading-font);
  --sitename-size: 32px;       /* tamaño por defecto */
  --sitename-spacing: 0px;     /* espaciado por defecto */
}


/* 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: #0c0b09; /* Background color for the entire website, including individual sections */
  --background-gradient: linear-gradient(#0c0b09, #0c0b09);
  --default-color: rgba(255, 255, 255, 0.7); /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #cda45e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-gradient: linear-gradient(#cda45e, #cda45e);
  --surface-color: #29261f; /* 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. */
  --surface-gradient: linear-gradient(#29261f, #29261f);
  --contrast-color: #0c0b09; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --custom-color1: #ffffff;
  --custom-color2: #ffffff;
  --custom-color3: #ffffff;
  --custom-color4: #ffffff;
  --custom-color5: #ffffff;
  --custom-color6: #ffffff;
  --custom-color7: #ffffff;
  --sitename-color: var(--heading-color);
}

/* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #cda45e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29261f; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29261f; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #ffffff; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #cda45e; /* 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: #29261f;
  --background-gradient: linear-gradient(#29261f, #29261f);
  --surface-color: #464135;
  --surface-gradient: linear-gradient(#464135, #464135);
}

.dark-background {
  --background-color: #000000;
  --background-gradient: linear-gradient(#000000, #000000);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --surface-gradient: linear-gradient(#1a1a1a, #1a1a1a);
  --contrast-color: #ffffff;
}

.surface-bg {
  background: var(--surface-gradient, var(--surface-color));
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: var(--background-gradient, 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);
}

/* 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-gradient, 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);
  }
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(12, 11, 9, 0.61);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
}

.header .topbar {
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--accent-color);
}

.header .topbar .languages ul a {
  color: var(--default-color);
}

.header .topbar .languages ul a:hover {
  color: var(--accent-color);
}

.header .topbar .languages ul li+li {
  padding-left: 10px;
}

.header .topbar .languages ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  content: "/";
}

.header .branding {
  background: var(--background-gradient, var(--background-color));
  min-height: 60px;
  padding: 10px 0;
  transition: 0.3s;
  border-bottom: 1px solid var(--background-color);
}

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

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

.header .logo h1 {

  margin: 0;

  color: var(--sitename-color, var(--heading-color));
}

.sitename {
  color: var(--sitename-color, var(--heading-color));
  font-family: var(--sitename-font, var(--heading-font));
  font-size: var(--sitename-size);
  letter-spacing: var(--sitename-spacing);
}


.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  text-transform: uppercase;
  font-size: 14px;
  padding: 6px 24px;
  margin: 0 5px 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: var(--default-color);
  background: var(--accent-gradient, var(--accent-color));
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

.scrolled .header .branding {
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
  --default-color: #000000;
  --contrast-color: #000000;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    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;
    transition: 0.3s;
  }

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

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

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

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

/* Navmenu - Mobile */
@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%);
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    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 {
  color: var(--default-color);
  background: var(--background-gradient, var(--background-color));
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--sitename-color, var(--heading-color));
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.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 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background: var(--background-gradient, var(--background-color));
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background: var(--background-gradient, var(--background-color));
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-gradient, var(--accent-color));
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

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

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

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

strong.sitename {
  color: var(--sitename-color, var(--heading-color));
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-gradient, var(--background-color));
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background: var(--background-gradient, var(--background-color));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-gradient, var(--accent-color));
  margin: 4px 10px;
}

.section-title p {
  color: var(--accent-color);
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

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

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

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

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .cta-btn {
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.3s;
  flex-shrink: 0;
}

.hero .cta-btn:first-child {
  margin-right: 10px;
}

.hero .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 480px) {
  .hero .cta-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: url("https://cdn.wallpapersafari.com/45/38/Ky8JMB.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 12%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .container {
  position: relative;
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

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

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

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

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

.about .about-img {
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: 0.3s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .card-item {
  background: var(--surface-gradient, var(--surface-color));
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
  border-radius: 2%;
}

.why-us .card-item span {
  color: var(--accent-color);
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.why-us .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.why-us .card-item h4 a {
  color: var(--heading-color);
}

.why-us .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  padding: 0;
}

.why-us .card-item:hover {
  background: var(--accent-gradient, var(--accent-color));
  padding: 30px 30px 70px 30px;
}

.why-us .card-item:hover span,
.why-us .card-item:hover h4 a,
.why-us .card-item:hover p {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu {
  background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
}

.menu .menu-filters {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu .menu-filters li {
  color: var(--default-color);
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all ease-in-out 0.3s;
  font-family: var(--heading-font);
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu .menu-filters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
  position: relative;
}

.menu .menu-img {
  width: 80px;
  border-radius: 50%;
  float: left;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu .menu-content {
  margin-left: 95px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  color: var(--heading-color);
  background: var(--background-gradient, var(--background-color));
  padding-right: 10px;
  position: relative;
  z-index: 3;
  font-weight: 700;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--accent-color);
}

.menu .menu-content span {
  background: var(--background-gradient, var(--background-color));
  color: var(--accent-color);
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}

.menu .menu-ingredients {
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  font-family: var(--nav-font);
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Specials Section
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--heading-color);
  border-radius: 0;
  border-right: 2px solid var(--accent-color);
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: var(--accent-color);
}

.specials .nav-link.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.specials .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }

  .specials .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-gradient, var(--accent-color));
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  padding: 80px 0;
  position: relative;
}

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

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

.events .section-title h2 {
  color: #ffffff;
}

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

.events .event-item h3 {
  font-weight: 700;
  font-size: 30px;
}

.events .event-item .price {
  font-size: 26px;
  font-family: var(--default-font);
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid var(--accent-color);
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

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

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

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

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

/*--------------------------------------------------------------
# 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(--default-color);
  border: 2px solid var(--accent-color);
  background: transparent;
  padding: 14px 60px;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: var(--accent-gradient, var(--accent-color));
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

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

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--background-gradient, var(--background-color));
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

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

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs {
  --default-color: #ffffff;
  --contrast-color: #ffffff;
}

.chefs .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.chefs .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 10px;
  display: inline-block;
}

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

.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-color: color-mix(in srgb, var(--background-color) 90%, white 5%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .info-item {
  background: var(--surface-gradient, var(--surface-color));
  padding: 20px;
  border-radius: 4px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-gradient, var(--accent-color));
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .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(--surface-color), transparent 50%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.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(--accent-color), transparent 50%);
}

.contact .php-email-form button[type=submit] {
  color: var(--default-color);
  background: none;
  border: 2px solid var(--accent-color);
  padding: 8px 36px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--accent-gradient, var(--accent-color));
}

/* Directions Button Styles */
#directions-item {
  text-align: center;
}

#directions-item .btn-directions {
  color: var(--default-color);
  background: none;
  border: 2px solid var(--accent-color);
  padding: 8px 24px;
  transition: 0.3s;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
}

#directions-item .btn-directions:hover {
  background: var(--accent-gradient, var(--accent-color));
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Styles for starter section can be added here when needed */
  position: relative;
}

#menu-items{
  min-height: 700px !important;
  max-height: 760px !important;

}



/* ============================================================
   PARALLAX OPTIMIZADO
   ============================================================ */

:root {
  --parallax-opacity: 0.12;
  --parallax-blend: soft-light;
}

/* Secciones con parallax */
.section-parallax {
  position: relative;
  overflow: clip;
}

/* Capa de parallax optimizada */
.section-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--parallax-image, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Mejor performance que fixed */
  opacity: var(--parallax-opacity);
  mix-blend-mode: var(--parallax-blend);
  pointer-events: none;
}

/* Contenido sobre parallax */
.section-parallax > * {
  position: relative;
  z-index: 2;
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .section-parallax::after {
    background-attachment: scroll;
    transform: none;
    opacity: 0.05;
  }
}



/* === DECORACIONES OPTIMIZADAS === */
.decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  z-index: 3;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

/* Tamaños responsivos */
.decor--sm { width: clamp(40px, 8vw, 72px); height: auto; }
.decor--md { width: clamp(60px, 12vw, 120px); height: auto; }
.decor--lg { width: clamp(80px, 16vw, 180px); height: auto; }

/* Capas Z */
.decor[data-z="1"] { z-index: 1; }
.decor[data-z="2"] { z-index: 2; }
.decor[data-z="3"] { z-index: 3; }
.decor[data-z="4"] { z-index: 4; }
.decor[data-z="5"] { z-index: 5; }

/* Contenedores parallax */
.parallax-layer {
  position: relative;
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .decor {
    transform: none !important;
    animation: none !important;
  }
}




/* Asegura contención por sección */
section, .section { position: relative; overflow: clip; }

/* Decoradores APG (compatibilidad) */
.apg-decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  will-change: transform;
  z-index: 2;
}
.apg-decor.decor--sm { width: clamp(28px, 7vw, 56px); }
.apg-decor.decor--md { width: clamp(40px, 9vw, 84px); }
.apg-decor.decor--lg { width: clamp(56px, 12vw, 120px); }

/* En móviles reducimos aún más el tamaño y el rango visual */
@media (max-width: 768px) {
  .apg-decor.decor--sm { width: clamp(24px, 6vw, 44px); }
  .apg-decor.decor--md { width: clamp(34px, 7.5vw, 66px); }
  .apg-decor.decor--lg { width: clamp(46px, 10vw, 96px); }
}






/* Contenedor para superponer el sombrero sobre la imagen */
.menu-thumb {
  position: relative;
  float: left;              /* reemplaza el float que antes tenía .menu-img */
  margin-right: 15px;
  /* evita que el sombrero provoque desbordes en móviles */
  overflow: visible;
}

/* Tu .menu-img ya tiene width:80px, border, etc. 
   Quitamos el float porque ahora lo tiene el wrapper. */
.menu .menu-img {
  float: none;
  display: block;
}

/* Primera definición eliminada - se mantiene solo la segunda con animación */
/* Sombrero superpuesto */
.menu-hat {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  top: -22px;
  width: 90%;
  pointer-events: none;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.25));

  /* 👇 Animación de balanceo */
  animation: hat-sway 4s ease-in-out infinite;
}

/* Keyframes del movimiento suave */
@keyframes hat-sway {
  0%   { transform: translateX(-50%) rotate(-8deg); }
  25%  { transform: translateX(-48%) rotate(-6deg); }
  50%  { transform: translateX(-50%) rotate(-8deg); }
  75%  { transform: translateX(-52%) rotate(-10deg); }
  100% { transform: translateX(-50%) rotate(-8deg); }
}

/* Ajustes responsive para móvil - Sombrero más pequeño */
@media (max-width: 768px) {
  .menu-hat {
    width: 40%; /* Significativamente más pequeño para no tapar imagen */
    top: -6px;
    transform: translateX(-50%) rotate(-4deg);
    animation: none; /* Sin animación en móvil para mejor rendimiento */
    opacity: 0.7; /* Más sutil */
    z-index: 2; /* Menor z-index para que no tape tanto */
  }
  
  /* En las tarjetas móviles, hacer el sombrero aún más pequeño */
  .menu-card .menu-hat {
    width: 30%;
    top: -4px;
    opacity: 0.6;
    transform: translateX(-50%) rotate(-2deg);
  }
}

@media (max-width: 480px) {
  .menu-hat {
    width: 30%; /* Aún más pequeño */
    top: -5px;
    transform: translateX(-50%) rotate(-3deg);
    opacity: 0.6;
  }
  
  /* En tarjetas móviles pequeñas, sombrero mínimo */
  .menu-card .menu-hat {
    width: 25%;
    top: -3px;
    opacity: 0.5;
    transform: translateX(-50%) rotate(-1deg);
  }
}

@media (max-width: 320px) {
  .menu-hat {
    width: 25%; /* Mínimo tamaño */
    top: -4px;
    transform: translateX(-50%) rotate(-2deg);
    opacity: 0.5;
  }
  
  /* En tarjetas móviles muy pequeñas, sombrero casi invisible */
  .menu-card .menu-hat {
    width: 20%;
    top: -2px;
    opacity: 0.4;
    transform: translateX(-50%) rotate(0deg);
  }
}


/* Aplica solo al IMG dentro del logo */
/* .logo img {
  animation: bull-charge 5s infinite;
  transform-origin: center;
} */

/* Keyframes de corneo */
/* @keyframes bull-charge {
  0%   { transform: rotate(0deg) translateX(0); }
  10%  { transform: rotate(-8deg) translateX(-6px); }
  20%  { transform: rotate(8deg) translateX(6px); }
  30%  { transform: rotate(-10deg) translateX(-8px); }
  40%  { transform: rotate(10deg) translateX(8px); }
  50%  { transform: rotate(0deg) translateX(0); }
  100% { transform: rotate(0deg) translateX(0); }
}
.logo img:hover {
  animation: bull-charge 1s ease-in-out;
} */


/* Animación de corneo para el logo */
/* .logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: bull-charge 5s infinite;
  transform-origin: center;
} */

/* Keyframes */
/* @keyframes bull-charge {
  0%   { transform: rotate(0deg) translateX(0); }
  10%  { transform: rotate(-8deg) translateX(-6px); }
  20%  { transform: rotate(8deg) translateX(6px); }
  30%  { transform: rotate(-10deg) translateX(-8px); }
  40%  { transform: rotate(10deg) translateX(8px); }
  50%  { transform: rotate(0deg) translateX(0); }
  100% { transform: rotate(0deg) translateX(0); }
} */
/* .logo:hover {
  animation: bull-charge 1s ease-in-out;
} */

/* Animación solo en la imagen del logo */
.logo img {
  animation: bull-charge 4s infinite ease-in-out; /* más lenta y larga */
  transform-origin: center bottom; /* pivote desde abajo para simular el corneo */
}

/* Keyframes con balanceo lateral + corneo */
@keyframes bull-charge {
  0%   { transform: rotate(0deg) translateX(0) translateY(0); }

  /* baja la cabeza hacia un lado */
  15%  { transform: rotate(-10deg) translateX(-12px) translateY(8px); }

  /* sube fuerte como cabezazo */
  30%  { transform: rotate(8deg) translateX(10px) translateY(-12px); }

  /* baja al otro lado */
  45%  { transform: rotate(12deg) translateX(14px) translateY(6px); }

  /* sube otra vez (corneo del otro lado) */
  60%  { transform: rotate(-8deg) translateX(-10px) translateY(-14px); }

  /* regresa al centro */
  80%  { transform: rotate(0deg) translateX(0) translateY(0); }

  100% { transform: rotate(0deg) translateX(0) translateY(0); }
}

/* ============================================================
   ANIMACIONES WESTERN MEJORADAS
   ============================================================ */

/* Partículas de polvo flotantes */
.dust-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.dust-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(205, 164, 94, 0.3);
  border-radius: 50%;
  animation: dust-float 8s infinite linear;
}

.dust-particle:nth-child(2n) {
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  animation-duration: 12s;
  animation-delay: -2s;
}

.dust-particle:nth-child(3n) {
  width: 4px;
  height: 4px;
  background: rgba(205, 164, 94, 0.4);
  animation-duration: 10s;
  animation-delay: -4s;
}

@keyframes dust-float {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px) rotate(360deg);
    opacity: 0;
  }
}

/* Tumbleweed rodando */
.tumbleweed {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #8B4513 0%, #654321 50%, #3E2723 100%);
  border-radius: 50%;
  animation: tumbleweed-roll 15s infinite linear;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.tumbleweed::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #654321;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes tumbleweed-roll {
  0% {
    transform: translateX(-50px) translateY(0) rotate(0deg);
    left: -50px;
  }
  100% {
    transform: translateX(50px) translateY(0) rotate(360deg);
    left: calc(100% + 50px);
  }
}

/* Efecto de humo de pistola */
.gun-smoke {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(200,200,200,0.2) 30%, transparent 70%);
  border-radius: 50%;
  animation: gun-smoke-dissipate 3s infinite ease-out;
  z-index: 3;
}

@keyframes gun-smoke-dissipate {
  0% {
    transform: scale(0.5) translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2) translateY(-20px);
    opacity: 0.4;
  }
  100% {
    transform: scale(2) translateY(-40px);
    opacity: 0;
  }
}

/* Animación de texto western */
.western-text {
  /* font-family: "Cowboys", "Nashville", serif; */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: western-text-glow 3s infinite ease-in-out;
}

@keyframes western-text-glow {
  0%, 100% {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 10px rgba(205, 164, 94, 0.3);
  }
  50% {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 0 0 20px rgba(205, 164, 94, 0.6);
  }
}

/* Animación de entrada western para títulos */
/* ============================================================
   ANIMACIONES WESTERN OPTIMIZADAS
   ============================================================ */

.western-title {
  animation: western-title-entrance 1s ease-out;
}

@keyframes western-title-entrance {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Balanceo suave optimizado */
.western-sway {
  animation: western-sway 6s infinite ease-in-out;
  transform-origin: center bottom;
}

@keyframes western-sway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-1deg); }
}

/* Efecto de parpadeo para estrellas de sheriff */
.sheriff-star {
  animation: sheriff-star-twinkle 2s infinite ease-in-out;
}

@keyframes sheriff-star-twinkle {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Botones western optimizados */
.western-btn {
  transition: all 0.3s ease;
}

.western-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(205, 164, 94, 0.3);
}

/* Animación de entrada suave */
.whip-crack {
  animation: smooth-entrance 0.6s ease-out;
}

@keyframes smooth-entrance {
  0% {
    transform: translateX(-15px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Efecto de polvo al hacer hover */
.dust-hover {
  position: relative;
}

.dust-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(205, 164, 94, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dust-hover:hover::after {
  opacity: 1;
  animation: dust-kick 0.6s ease-out;
}

@keyframes dust-kick {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Animación de entrada para cards western */
.western-card {
  animation: western-card-entrance 0.8s ease-out;
  transition: all 0.3s ease;
}

@keyframes western-card-entrance {
  0% {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

.western-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(205, 164, 94, 0.2);
}

/* Animación de balanceo para el logo mejorada */
.logo-enhanced {
  animation: logo-enhanced-sway 6s infinite ease-in-out;
  transform-origin: center bottom;
}

@keyframes logo-enhanced-sway {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  15% {
    transform: rotate(-3deg) scale(1.02);
  }
  30% {
    transform: rotate(2deg) scale(0.98);
  }
  45% {
    transform: rotate(-1deg) scale(1.01);
  }
  60% {
    transform: rotate(1deg) scale(0.99);
  }
  75% {
    transform: rotate(-0.5deg) scale(1.005);
  }
  90% {
    transform: rotate(0.5deg) scale(0.995);
  }
}

/* Efecto de viento para elementos */
.wind-effect {
  animation: wind-effect 4s infinite ease-in-out;
}

@keyframes wind-effect {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(2px) rotate(0.5deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  75% {
    transform: translateX(-2px) rotate(-0.5deg);
  }
}

/* Entrada de secciones optimizada */
.section-entrance {
  animation: section-entrance 0.8s ease-out;
}

@keyframes section-entrance {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Efecto de desvanecimiento western */
.western-fade {
  animation: western-fade 2s infinite ease-in-out;
}

@keyframes western-fade {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* ============================================================
   MEJORAS ADICIONALES WESTERN
   ============================================================ */

/* Efecto de brillo dorado para elementos importantes */
.golden-glow {
  position: relative;
  overflow: hidden;
}

.golden-glow::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #cda45e, #ffd700, #cda45e, #ffd700);
  background-size: 400% 400%;
  animation: golden-shimmer 3s ease-in-out infinite;
  z-index: -1;
  border-radius: inherit;
}

@keyframes golden-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Efecto de latigazo mejorado */
.whip-crack-enhanced {
  animation: whip-crack-enhanced 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes whip-crack-enhanced {
  0% {
    transform: translateX(-30px) rotate(-8deg) scale(0.8);
    opacity: 0;
    filter: blur(8px);
  }
  30% {
    transform: translateX(10px) rotate(3deg) scale(1.05);
    opacity: 0.9;
    filter: blur(2px);
  }
  60% {
    transform: translateX(-5px) rotate(-1deg) scale(0.98);
    opacity: 1;
    filter: blur(0);
  }
  100% {
    transform: translateX(0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

/* Efecto de polvo al caminar */
.dust-walk {
  position: relative;
}

.dust-walk::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(205, 164, 94, 0.3) 0%, transparent 70%);
  animation: dust-walk-effect 2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes dust-walk-effect {
  0%, 100% {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.2);
  }
}

/* Animación de entrada con efecto de saloon */
.saloon-entrance {
  animation: saloon-entrance 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes saloon-entrance {
  0% {
    transform: translateY(100px) rotateX(90deg) scale(0.5);
    opacity: 0;
    filter: blur(15px) brightness(0.5);
  }
  30% {
    transform: translateY(50px) rotateX(45deg) scale(0.8);
    opacity: 0.6;
    filter: blur(8px) brightness(0.8);
  }
  60% {
    transform: translateY(0) rotateX(0deg) scale(1.05);
    opacity: 0.9;
    filter: blur(2px) brightness(1.1);
  }
  100% {
    transform: translateY(0) rotateX(0deg) scale(1);
    opacity: 1;
    filter: blur(0) brightness(1);
  }
}

/* Efecto de viento para texto */
.wind-text {
  animation: wind-text 4s infinite ease-in-out;
  transform-origin: center;
}

@keyframes wind-text {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(3px) rotate(1deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  75% {
    transform: translateX(-3px) rotate(-1deg);
  }
}

/* Efecto de sombra dinámica */
.dynamic-shadow {
  animation: dynamic-shadow 3s infinite ease-in-out;
}

@keyframes dynamic-shadow {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(205, 164, 94, 0.3);
  }
  50% {
    box-shadow: 0 10px 25px rgba(205, 164, 94, 0.6), 0 0 30px rgba(205, 164, 94, 0.2);
  }
}

/* Efecto de parpadeo para elementos importantes */
.important-blink {
  animation: important-blink 2s infinite ease-in-out;
}

@keyframes important-blink {
  0%, 90%, 100% {
    opacity: 1;
  }
  95% {
    opacity: 0.3;
  }
}

/* Efecto de balanceo mejorado para elementos decorativos */
.enhanced-sway {
  animation: enhanced-sway 5s infinite ease-in-out;
  transform-origin: center bottom;
}

@keyframes enhanced-sway {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  10% {
    transform: rotate(-1deg) scale(1.01);
  }
  20% {
    transform: rotate(1deg) scale(0.99);
  }
  30% {
    transform: rotate(-0.5deg) scale(1.005);
  }
  40% {
    transform: rotate(0.5deg) scale(0.995);
  }
  50% {
    transform: rotate(0deg) scale(1);
  }
  60% {
    transform: rotate(0.3deg) scale(1.002);
  }
  70% {
    transform: rotate(-0.3deg) scale(0.998);
  }
  80% {
    transform: rotate(0.1deg) scale(1.001);
  }
  90% {
    transform: rotate(-0.1deg) scale(0.999);
  }
}

/* Efecto de entrada con rebote western */
.western-bounce {
  animation: western-bounce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes western-bounce {
  0% {
    transform: translateY(-50px) scale(0.3);
    opacity: 0;
  }
  50% {
    transform: translateY(10px) scale(1.1);
    opacity: 0.8;
  }
  70% {
    transform: translateY(-5px) scale(0.95);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Efecto de deslizamiento western */
.western-slide {
  animation: western-slide 0.8s ease-out;
}

@keyframes western-slide {
  0% {
    transform: translateX(-100px) rotate(-10deg);
    opacity: 0;
  }
  50% {
    transform: translateX(10px) rotate(2deg);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

/* Efecto de rotación suave */
.gentle-rotate {
  animation: gentle-rotate 8s infinite linear;
}

@keyframes gentle-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Efecto de pulso dorado */
.golden-pulse {
  animation: golden-pulse 2s infinite ease-in-out;
}

@keyframes golden-pulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(205, 164, 94, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(205, 164, 94, 0.8), 0 0 30px rgba(205, 164, 94, 0.4);
  }
}

.card-framed {
  position: relative;
  display: inline-block;
  padding: 20px;
}

.card-framed .card-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; /* que no bloquee clics */
  z-index: 2;
}

.card-framed .card-inner {
  position: relative;
  z-index: 3;

  padding: 20px;
  border-radius: 8px;
}


.section .divider-rope{
  height:10px; margin:28px 0; opacity:.9; border-radius:6px;
  background:
    repeating-linear-gradient(
      -45deg,
      color-mix(in srgb, var(--accent-color), transparent 20%) 0 8px,
      color-mix(in srgb, var(--surface-color), transparent 10%) 8px 16px
    );
}



/* === Calendar basic styles === */
#resv-calendar { --gap: 8px; }

.resv-cal__header{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin-bottom:14px;
}
.resv-cal__nav button{ border:1px solid color-mix(in srgb, var(--default-color), transparent 80%); background:transparent; padding:6px 10px; border-radius:4px; }

.resv-legend{ display:flex; gap:12px; font-size:12px; opacity:.85; }
.resv-legend .dot{ display:inline-block; width:10px; height:10px; border-radius:50%; margin-right:6px; vertical-align:middle; }
.resv-legend .free .dot{ background:#fff; }
.resv-legend .pending .dot{ background:#ffd54f; }
.resv-legend .approved .dot{ background:#66bb6a; }

.resv-cal__grid{
  display:grid; grid-template-columns: repeat(7,1fr);
  gap: var(--gap);
}
.resv-cal__dow{
  text-align:center; font-weight:600; padding:8px 0;
  opacity:.8; border-bottom:1px dashed color-mix(in srgb,var(--default-color),transparent 70%);
}
.resv-cal__cell{
  background: color-mix(in srgb, var(--background-color), white 6%);
  border:1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius:8px; padding:8px; min-height:72px; position:relative;
  cursor:pointer; transition:transform .15s ease, box-shadow .15s ease;
}
.resv-cal__cell:hover{ transform:translateY(-2px); box-shadow:0 6px 18px rgba(0,0,0,.15); }
.resv-cal__cell .date{ font-weight:700; }
.resv-cal__cell .badge{
  position:absolute; right:8px; bottom:6px; font-size:12px; opacity:.8;
  background: color-mix(in srgb, var(--surface-color), transparent 40%);
  padding:2px 6px; border-radius:4px;
}

.resv-cal__cell--free    { background: #ffffff10; }
.resv-cal__cell--pending { background: #ffd54f26; }
.resv-cal__cell--approved{ background: #66bb6a26; }



/* ==== MODAL DE RESERVAS (western) ==== */
.reservation-modal .modal-dialog {
  transition: transform .35s cubic-bezier(.16,.84,.44,1), opacity .25s ease;
}

.modal.fade.reservation-modal .modal-dialog {
  transform: translate3d(0, 16px, 0) scale(.98);
}
.modal.show.reservation-modal .modal-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

/* backdrop un pelín cálido */
.modal-backdrop.show {
  backdrop-filter: blur(2px);
  background-color: color-mix(in srgb, var(--background-color), black 35%);
  opacity: .75;
}

/* Contenido con “placa” western */
.reservation-modal .modal-content {
  background: var(--surface-gradient, var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35), inset 0 0 0 1px color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
}

/* Cabezal con filete y adorno */
.reservation-modal .modal-header {
  border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 75%);
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--background-color), transparent 85%),
    transparent
  );
}
.reservation-modal .modal-title {
  font-family: var(--heading-font);
  color: var(--heading-color);
  letter-spacing: .5px;
  line-height: 1.2;
}
.reservation-modal .modal-title .title-knot {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.reservation-modal .modal-title .title-knot::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background:
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--accent-color), transparent 10%) 0 10px,
      transparent 10px 16px
    );
  opacity: .9;
}

/* Botón cerrar más discreto en dark */
.reservation-modal .btn-close {
  filter: invert(0);
}
.dark-background .reservation-modal .btn-close { filter: invert(1); }

/* Body con separación agradable */
.reservation-modal .modal-body {
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--surface-color), transparent 0%),
    color-mix(in srgb, var(--surface-color), transparent 10%)
  );
}

/* Campos: look western, borde fuerte y foco acento */
.reservation-modal .form-control,
.reservation-modal .form-select,
.reservation-modal textarea {
  color: var(--default-color);
  background: color-mix(in srgb, var(--background-color), white 6%);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  box-shadow: none;
}
.reservation-modal .form-control:focus,
.reservation-modal .form-select:focus,
.reservation-modal textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--background-color), white 10%);
}

/* Etiquetas */
.reservation-modal .form-label {
  font-weight: 700;
  letter-spacing: .3px;
}

/* Footer: botones con estilo del tema */
.reservation-modal .modal-footer {
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 75%);
}
.reservation-modal .btn-primary {
  background: var(--accent-gradient, var(--accent-color));
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  letter-spacing: .4px;
}
.reservation-modal .btn-primary:hover {
  filter: brightness(1.05);
}
.reservation-modal .btn-secondary {
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 75%);
  color: var(--default-color);
}
.reservation-modal .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Lista de solicitudes del día */
#day-requests li {
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
  border-radius: 6px;
  margin-bottom: 8px;
}
#day-requests .badge {
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
}

/* Pequeño adorno lineal separador (si quieres usar <hr>) */
.reservation-modal hr {
  border-top: 1px dashed color-mix(in srgb, var(--default-color), transparent 75%);
  opacity: .7;
}

/* Opcional: “canto” metálico en hover del contenido */
@media (hover:hover) {
  .reservation-modal .modal-content:hover {
    box-shadow: 0 14px 46px rgba(0,0,0,.42), inset 0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 70%);
  }
}
.reservation-modal .input-group-text {
  background: color-mix(in srgb, var(--surface-color), transparent 30%);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
}


/* Admin Calendar UI */
#opening-grid .form-control {
  background: var(--background-gradient, var(--background-color));
  color: var(--default-color);
}
#blackout-list .badge {
  background: color-mix(in srgb, var(--surface-color), white 8%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

/* ==== Waitlist (lista de espera) ==== */

/* Píldora dentro de cada día */
.resv-cal__cell .wl-pill {
  background-color: #6c757d;  /* gris Bootstrap */
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 6px;
  margin-top: 4px;
  left:   inherit;
  right: 1px;
  display: inline-block;
  bottom: 25px;
}

/* Leyenda */
.resv-legend .waitlist {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  margin-left: 0.75rem;
  color: #fff;
  font-size: 12px;
}
.resv-legend .waitlist .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #6c757d;
  margin-right: 7px;
  display: inline-block;
}


/* Día bloqueado (por admin o blackout) */
.resv-cal__cell--blocked {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

/* Día pasado */
.resv-cal__cell--past {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
}

.resv-cal__cell--blocked,
.resv-cal__cell--past {
  cursor: not-allowed;
  opacity: 0.65;
}

.resv-cal__cell--unavailable {
  cursor: not-allowed;
  opacity: 0.6;
  position: relative;
}

.resv-cal__cell .not-available {
  font-size: 0.75rem;
  font-weight: 600;
  color: #dc3545; /* rojo Bootstrap */
  margin-top: 4px;
  text-align: center;
}

.resv-cal__nav>.text-mute{
  color: white;
}

/* Estilos base (desktop) */
.resv-cal__header {
  font-size: 1rem;
}
.resv-legend {
  font-size: 0.9rem;
}
.resv-cal__grid {
  font-size: 0.85rem;
}
.resv-cal__cell .date {
  font-size: 1rem;
  font-weight: bold;
}
.resv-cal__cell .badge,
.resv-cal__cell .wl-pill,
.resv-cal__cell .not-available {
  font-size: 0.75rem;
}
.resv-cal__cell .not-available 
{
  position: relative;
  bottom: 15px;
}
/* 📱 Responsive: pantallas menores a 768px */
@media (max-width: 768px) {
  .resv-cal__header {
    font-size: 0.9rem;
    flex-direction: column;
    gap: 0.3rem;
  }
  .resv-legend {
    font-size: 0.7rem;
  }
  .resv-cal__grid {
    font-size: 0.7rem;
  }
  .resv-cal__cell .date {
    font-size: 0.8rem;
  }
  .resv-cal__cell .badge,
  .resv-cal__cell .wl-pill,
  .resv-cal__cell .not-available {
    font-size: 0.65rem;
  }
}

/* 📱 Aún más pequeño: pantallas menores a 480px */
@media (max-width: 480px) {
  .resv-cal__header {
    font-size: 0.8rem;
  }
  .resv-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.65rem;
  }
  .resv-cal__grid {
    font-size: 0.6rem;
  }
  .resv-cal__cell .date {
    font-size: 0.7rem;
  }
  .resv-cal__cell .badge,
  .resv-cal__cell .wl-pill,
  .resv-cal__cell .not-available {
    font-size: 0.55rem;
  }
}

/* Asegurar que el grid tenga filas dinámicas */
.resv-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  overflow: visible;       /* 👈 nunca cortar contenido */
}

/* Cada celda con altura mínima */
.resv-cal__cell {
  min-height: 64px;        /* ajusta según diseño */
  box-sizing: border-box;
}

/* 📱 Móviles: celdas más compactas pero visibles */
@media (max-width: 768px) {
  .resv-cal__cell {
    min-height: 50px;
    padding: 2px;
  }
}
@media (max-width: 480px) {
  .resv-cal__cell {
    min-height: 40px;
    padding: 1px;
  }
}

/*--------------------------------------------------------------
# Enhanced Menu Design & Pagination
--------------------------------------------------------------*/

/* Enhanced Menu Background */
.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(139,69,19,0.1)"/><circle cx="90" cy="20" r="1" fill="rgba(139,69,19,0.1)"/><circle cx="30" cy="80" r="1" fill="rgba(139,69,19,0.1)"/><circle cx="70" cy="70" r="1" fill="rgba(139,69,19,0.1)"/></svg>') repeat;
  pointer-events: none;
  z-index: 0;
}

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

/* Enhanced Filter Buttons */
.menu .menu-filters {
  background: rgba(139, 69, 19, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
}

/* Menu PDF Button */
.btn-menu-pdf {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: white;
  border: 2px solid var(--accent-color);
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Texto específico por dispositivo */
.pdf-text-desktop {
  display: inline; /* Mostrar en desktop */
}

.pdf-text-mobile {
  display: none; /* Ocultar en desktop */
}

.btn-menu-pdf::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-menu-pdf:hover::before {
  left: 100%;
}

.btn-menu-pdf:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.btn-menu-pdf i {
  font-size: 16px;
}

.btn-menu-pdf span {
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.menu .menu-filters li {
  padding: 12px 24px;
  margin: 0 8px 10px 8px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
  border: 2px solid transparent;
}

.menu .menu-filters li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.menu .menu-filters li:hover::before {
  left: 100%;
}

.menu .menu-filters li:hover,
.menu .menu-filters li.filter-active {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

/* Desktop - Restaurar diseño original sin tarjetas */
@media (min-width: 769px) {
  /* NO usar .menu-card en desktop, usar el diseño original */
  .menu .menu-item {
    margin-top: 50px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 15px;
    /* Sin background especial - usar el diseño original */
  }
  
  .menu .menu-item:hover {
    background: rgba(139, 69, 19, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  /* Restaurar estilos originales de desktop */
  .menu .menu-img {
    width: 80px;
    border-radius: 50%;
    float: left;
    border: 8px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .menu .menu-content {
    margin-left: 95px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .menu .menu-content::after {
    content: "......................................................................" "...................................................................." "....................................................................";
    position: absolute;
    left: 20px;
    right: 0;
    top: -4px;
    z-index: 1;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  .menu .menu-content a {
    color: var(--heading-color);
    background: var(--background-gradient, var(--background-color));
    padding-right: 10px;
    position: relative;
    z-index: 3;
    font-weight: 700;
    transition: 0.3s;
  }

  .menu .menu-content a:hover {
    color: var(--accent-color);
  }

  .menu .menu-content span {
    background: var(--background-gradient, var(--background-color));
    color: var(--accent-color);
    position: relative;
    z-index: 3;
    padding: 0 10px;
    font-weight: 600;
  }

  .menu .menu-ingredients {
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    font-family: var(--nav-font);
    color: color-mix(in srgb, var(--default-color), transparent 50%);
  }

  /* Rating desktop */
  .menu-rating {
    margin-left: 95px;
    margin-top: 10px;
  }

  .menu-rating .stars {
    display: flex;
    gap: 2px;
  }

  .menu-rating .star {
    color: #ddd;
    font-size: 16px;
    transition: color 0.2s ease;
  }

  .menu-rating .star.filled {
    color: #ffd700;
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.5);
  }

  /* Desktop overlay con estrella - Nueva posición */
  .menu-overlay {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B4513;
    color: #F4E4BC;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
    border: 2px solid #D2691E;
    border-radius: 3px;
    box-shadow: 
      inset 0 1px 0 rgba(255,255,255,0.3),
      0 2px 4px rgba(0,0,0,0.5);
    z-index: 10;
    transition: all 0.3s ease;
  }

  .menu-overlay::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #D2691E, #CD853F, #D2691E);
    z-index: -1;
    border-radius: 5px;
  }

  .menu-overlay::after {
    content: '★';
    position: absolute;
    top: -6px;
    right: -6px;
    background: #FFD700;
    color: #8B4513;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    border: 2px solid #8B4513;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  }

  .menu-overlay:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 
      inset 0 1px 0 rgba(255,255,255,0.4),
      0 4px 8px rgba(0,0,0,0.6);
  }

  .menu-overlay:hover::after {
    transform: rotate(72deg);
    background: #FFF700;
  }
}

/* Estilos base solo para elementos comunes */
.menu-category {
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

/* Menu Information Display */
.menu-info {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(139, 69, 19, 0.1));
  backdrop-filter: blur(10px);
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  padding: 12px 20px;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-info p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: var(--accent-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

/* Pagination Styles - Restaurado Original */
.menu-pagination {
  margin-top: 40px;
  justify-content: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.menu-pagination .page-item {
  margin: 0 5px;
  display: inline-flex;
  flex-shrink: 0;
}

.menu-pagination .page-link {
  color: var(--default-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-pagination .page-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.menu-pagination .page-link:hover::before {
  left: 100%;
}

.menu-pagination .page-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.menu-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-color: var(--accent-color);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu-pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}

/* Responsive Design for Enhanced Menu */

/* Tablets y pantallas medianas (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .menu .menu-filters li {
    padding: 10px 18px;
    margin: 0 6px 8px 6px;
    font-size: 15px;
  }
  
  .menu-card .menu-img {
    width: 80px;
    height: 80px;
  }
  
  .menu-card .menu-content,
  .menu-card .menu-ingredients,
  .menu-rating {
    margin-left: 100px;
  }
  
  .menu .menu-title {
    font-size: 17px;
  }
  
  .menu .menu-price {
    font-size: 18px;
  }
}

/* Tablets pequeñas y móviles grandes (768px y menos) */
@media (max-width: 768px) {
  /* Contenedor principal del menú */
  .menu {
    padding-bottom: 60px; /* Espacio extra para evitar solapamiento */
    position: relative;
    overflow: hidden; /* Evita desbordamiento */
  }
  
  .menu .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Filtros optimizados para móvil */
  .menu .menu-filters {
    padding: 10px 12px;
    margin-bottom: 25px;
    background: rgba(139, 69, 19, 0.15);
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .menu .menu-filters li {
    padding: 8px 12px;
    margin: 0;
    font-size: 12px;
    border-radius: 20px;
    flex: 0 0 auto;
    min-width: 70px;
    text-align: center;
  }
  
  /* PDF Button responsive - Más explícito en móvil */
  .menu-pdf-btn-container {
    margin-top: 15px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
    /* Hacer más prominente en móvil */
    padding: 10px;
    background: rgba(139, 69, 19, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(205, 164, 94, 0.3);
  }
  
  .btn-menu-pdf {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
    min-width: 160px;
    justify-content: center;
  }
  
  /* Cambiar texto en móvil */
  .pdf-text-desktop {
    display: none; /* Ocultar texto desktop */
  }
  
  .pdf-text-mobile {
    display: inline; /* Mostrar texto móvil */
    font-weight: 600;
  }
  
  .btn-menu-pdf i {
    font-size: 16px;
  }
  
  /* Contenedor de items con clearfix */
  .isotope-container {
    margin-bottom: 30px;
    clear: both;
    overflow: hidden;
  }
  
  /* Tarjetas móviles - Layout horizontal compacto */
  .menu-card {
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Diseño horizontal compacto para móvil */
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 120px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .menu-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(205, 164, 94, 0.3);
  }
  
  .menu .menu-item {
    margin-top: 0;
    margin-bottom: 12px;
    width: 100%;
    max-width: 100%;
  }
  
  /* Imagen principal prominente a la izquierda */
  .menu .menu-thumb {
    float: none;
    margin-right: 15px;
    margin-bottom: 0;
    flex-shrink: 0;
    position: relative;
  }
  
  .menu-card .menu-img {
    width: 90px;
    height: 90px;
    margin: 0;
    display: block;
    border-width: 3px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  
  /* Overlay pequeño en esquina de imagen */
  .menu-overlay {
    position: absolute;
    top: -3px;
    right: -3px;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 8px;
    background: var(--accent-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  /* Contenido compacto a la derecha */
  .menu-card .menu-content {
    flex: 1;
    margin-left: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
  }
  
  .menu-card .menu-content::after {
    display: none; /* Sin línea punteada */
  }
  
  /* Título y precio en una línea */
  .menu-card .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
  }
  
  .menu .menu-title {
    font-size: 16px;
    padding-right: 0;
    text-align: left;
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
  }
  
  .menu .menu-price {
    font-size: 16px;
    padding-left: 8px;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
    margin: 0;
  }
  
  /* Descripción compacta */
  .menu-card .menu-ingredients {
    margin: 0;
    text-align: left;
    font-size: 12px;
    line-height: 1.3;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    /* Limitar a 2 líneas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
  }
  
  /* Rating compacto */
  .menu-rating {
    margin: 0;
    text-align: left;
  }
  
  .menu-rating .stars {
    justify-content: flex-start;
    gap: 1px;
  }
  
  .menu-rating .star {
    font-size: 12px;
  }
  
  /* Efectos simplificados para móvil */
  .menu-overlay::before {
    display: none; /* Quitar efectos complejos en móvil */
  }
  
  .menu-overlay::after {
    display: none; /* Ocultar estrella en móvil */
  }
  
  /* Rating centrado */
  .menu-rating .stars {
    justify-content: center;
  }
  
  /* Info y paginación con z-index alto */
  .menu-info {
    padding: 10px 16px;
    margin-bottom: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
    clear: both;
  }
  
  .menu-info p {
    font-size: 14px;
  }
  
   /* Paginación móvil - Solo ajustes necesarios */
   .menu-pagination {
     margin-top: 20px;
     padding-top: 20px;
     position: relative;
     z-index: 10;
     clear: both;
     /* Solo forzar horizontal sin cambiar estilos */
     flex-wrap: wrap !important;
     gap: 3px;
     overflow-x: auto;
     overflow-y: hidden;
     padding-bottom: 5px;
   }
   
   .menu-pagination .page-item {
     margin: 0 2px;
     flex-shrink: 0;
   }
   
   .menu-pagination .page-link {
     padding: 10px 12px;
     font-size: 13px;
     min-width: 40px;
     white-space: nowrap;
   }
}

/* Móviles pequeños (480px y menos) */
@media (max-width: 480px) {
  /* Contenedor principal con más espacio */
  .menu {
    padding-bottom: 80px;
    margin-bottom: 40px;
  }
  
  .menu .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Filtros ultra-compactos */
  .menu .menu-filters {
    padding: 8px;
    margin-bottom: 20px;
    gap: 6px;
  }
  
  .menu .menu-filters li {
    padding: 6px 8px;
    margin: 0;
    font-size: 11px;
    min-width: 60px;
    border-radius: 15px;
  }
  
  /* PDF Button móvil pequeño - Mantener texto explicativo */
  .menu-pdf-btn-container {
    margin-bottom: 25px;
  }
  
  .btn-menu-pdf {
    padding: 10px 16px;
    font-size: 13px;
    gap: 6px;
    min-width: 140px;
    border-radius: 20px;
  }
  
  /* Mantener texto explicativo en móvil pequeño */
  .pdf-text-desktop {
    display: none;
  }
  
  .pdf-text-mobile {
    display: inline;
    font-weight: 600;
  }
  
  .btn-menu-pdf i {
    font-size: 15px;
  }
  
  /* Contenedor de items con más espacio */
  .isotope-container {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
  
  /* Tarjetas móviles pequeñas - Layout horizontal más compacto */
  .menu-card {
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    min-height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  }
  
  .menu .menu-item {
    margin-bottom: 10px;
    padding-bottom: 0;
  }
  
  /* Imagen más pequeña pero prominente */
  .menu .menu-thumb {
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .menu-card .menu-img {
    width: 70px;
    height: 70px;
    border-width: 2px;
    margin: 0;
    display: block;
  }
  
  /* Overlay más pequeño */
  .menu-overlay {
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 7px;
    padding: 1px 4px;
    border-radius: 6px;
  }
  
  /* Contenido más compacto */
  .menu .menu-title {
    font-size: 14px;
    margin: 0;
    text-align: left;
    line-height: 1.2;
  }
  
  .menu .menu-price {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    text-align: right;
    color: var(--accent-color);
    padding-left: 6px;
  }
  
  .menu-card .menu-ingredients {
    font-size: 11px;
    line-height: 1.3;
    margin: 0;
    text-align: left;
    width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 4px;
  }
  
  .menu-rating {
    margin: 0;
    text-align: left;
  }
  
  .menu-rating .star {
    font-size: 11px;
  }
  
  /* Info con separación clara */
  .menu-info {
    padding: 8px 12px;
    margin: 40px auto 20px;
    position: relative;
    z-index: 15;
    clear: both;
    background: rgba(139, 69, 19, 0.25);
  }
  
  .menu-info p {
    font-size: 13px;
    margin: 0;
  }
  
   /* Paginación móvil pequeño - Solo ajustes de tamaño */
   .menu-pagination {
     margin-top: 30px;
     padding-top: 25px;
     border-top: 1px solid rgba(139, 69, 19, 0.2);
     gap: 2px;
   }
   
   .menu-pagination .page-item {
     margin: 0 1px;
   }
   
   .menu-pagination .page-link {
     padding: 8px 10px;
     font-size: 12px;
     min-width: 35px;
   }
}

/* Móviles muy pequeños (320px y menos) */
@media (max-width: 320px) {
  /* Contenedor principal ultra-compacto */
  .menu {
    padding-bottom: 100px;
    margin-bottom: 50px;
  }
  
  .menu .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  
  /* Filtros ultra-pequeños */
  .menu .menu-filters {
    padding: 6px;
    gap: 4px;
  }
  
  .menu .menu-filters li {
    padding: 4px 6px;
    font-size: 10px;
    min-width: 50px;
  }
  
  /* PDF Button móvil muy pequeño - Texto abreviado pero claro */
  .menu-pdf-btn-container {
    margin-bottom: 30px;
  }
  
  .btn-menu-pdf {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 18px;
    min-width: 100px;
  }
  
  /* Texto aún más explícito en móvil muy pequeño */
  .pdf-text-desktop {
    display: none;
  }
  
  .pdf-text-mobile {
    display: inline;
    font-weight: 600;
  }
  
  .btn-menu-pdf i {
    font-size: 13px;
  }
  
  /* Contenedor con máximo espacio */
  .isotope-container {
    margin-bottom: 50px;
    padding-bottom: 25px;
  }
  
  /* Tarjetas móviles muy pequeñas - Layout horizontal ultra-compacto */
  .menu-card {
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 10px;
    min-height: 85px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  }
  
  .menu .menu-item {
    margin-bottom: 8px;
    padding-bottom: 0;
  }
  
  /* Imagen pequeña pero visible */
  .menu .menu-thumb {
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .menu-card .menu-img {
    width: 60px;
    height: 60px;
    margin: 0;
    display: block;
    border-width: 2px;
  }
  
  /* Overlay mínimo */
  .menu-overlay {
    position: absolute;
    top: -1px;
    right: -1px;
    font-size: 6px;
    padding: 1px 3px;
    border-radius: 4px;
  }
  
  /* Contenido ultra-compacto */
  .menu .menu-title {
    font-size: 13px;
    margin: 0;
    text-align: left;
    line-height: 1.2;
  }
  
  .menu .menu-price {
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    text-align: right;
    color: var(--accent-color);
    padding-left: 4px;
  }
  
  .menu-card .menu-ingredients {
    font-size: 10px;
    line-height: 1.2;
    margin: 0;
    text-align: left;
    width: 100%;
    -webkit-line-clamp: 1; /* Solo 1 línea en muy pequeño */
    line-clamp: 1;
    margin-bottom: 3px;
  }
  
  .menu-rating {
    margin: 0;
    text-align: left;
  }
  
  .menu-rating .star {
    font-size: 10px;
  }
  
  /* Info con máxima separación */
  .menu-info {
    padding: 6px 10px;
    margin: 50px auto 25px;
    z-index: 20;
    background: rgba(139, 69, 19, 0.3);
  }
  
  .menu-info p {
    font-size: 12px;
  }
  
   /* Paginación móvil muy pequeño - Solo ajustes mínimos */
   .menu-pagination {
     margin-top: 40px;
     padding-top: 30px;
     border-top: 2px solid rgba(139, 69, 19, 0.3);
     gap: 1px;
     flex-wrap: nowrap;
     overflow-x: auto;
     scroll-behavior: smooth;
     -webkit-overflow-scrolling: touch;
   }
   
   .menu-pagination .page-item {
     margin: 0;
   }
   
   .menu-pagination .page-link {
     padding: 6px 8px;
     font-size: 11px;
     min-width: 30px;
   }
}

/* Fixes para evitar solapamientos en móvil */
@media (max-width: 768px) {
  /* Asegurar que la siguiente sección tenga espacio suficiente */
  .menu + section,
  .menu + .section,
  #specials {
    margin-top: 60px;
    padding-top: 40px;
    position: relative;
    z-index: 1;
  }
  
  /* Clearfix para contenedores flotantes */
  .menu::after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Asegurar que isotope no cause problemas */
  .isotope-layout {
    position: relative;
  }
  
  .isotope-container::after {
    content: "";
    display: table;
    clear: both;
  }
}

/* Fixes específicos para paginación */
@media (max-width: 480px) {
  /* Separador visual entre menú y siguiente sección */
  .menu::after {
    content: "";
    display: block;
    height: 40px;
    clear: both;
  }
  
  /* Paginación móvil 480px - Solo background y scroll */
  .menu-pagination {
    background: rgba(26, 26, 26, 0.9);
    border-radius: 15px;
    padding: 15px;
    overflow-x: auto;
  }
}

/* Global Pagination Override - Solo forzar horizontal */
.pagination {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
}

.pagination .page-item {
  display: inline-flex !important;
}

/* Touch Device Optimizations */
.touch-device .menu .menu-filters li {
  min-height: 44px; /* iOS recommended touch target size */
  display: flex;
  align-items: center;
  justify-content: center;
}

.touch-device .menu-pagination .page-link {
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Solo asegurar horizontal en móvil si es necesario */
@media (max-width: 768px) {
  .menu-pagination {
    flex-direction: row !important;
  }
}

.touch-device .menu-card {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.touch-device .menu-card:active {
  transform: translateY(-4px);
  transition: transform 0.1s ease;
}

/* Touch feedback for menu items */
.touch-device .menu .menu-item:active {
  transform: translateY(-2px);
  transition: transform 0.1s ease;
}

/* Visual feedback for clickable items */
.menu .menu-item::after,
.menu-card::after {
  content: '';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background: rgba(205, 164, 94, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.menu .menu-item:hover::after,
.menu-card:hover::after {
  opacity: 1;
  animation: pulse-click 1.5s infinite;
}

@keyframes pulse-click {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Smooth scrolling for all devices */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.menu-items-loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-item.loading {
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .menu-card {
    border-width: 2px;
    border-color: currentColor;
  }
  
  .menu-overlay {
    border-width: 2px;
    font-weight: 800;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .menu-card,
  .menu-overlay,
  .menu-pagination .page-link,
  .menu .menu-filters li {
    transition: none;
    animation: none;
  }
  
  .menu-card.animate-in {
    opacity: 1;
    transform: none;
  }
}

/* Print styles */
@media print {
  .menu-pagination,
  .menu-info {
    display: none;
  }
  
  .menu-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .menu-overlay {
    position: static;
    display: inline-block;
    background: #f0f0f0;
    color: #000;
  }
}

/*--------------------------------------------------------------
# Menu Item Modal - Western Theme
--------------------------------------------------------------*/

/* Modal Background */
.modal#menuItemModal .modal-backdrop {
  background-color: rgba(12, 11, 9, 0.8);
  backdrop-filter: blur(5px);
}

/* Modal Content */
.menu-modal-content {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), transparent 10%));
  border: 3px solid var(--accent-color);
  border-radius: 20px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Modal Header */
.menu-modal-header {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  padding: 20px 25px;
  position: relative;
}

.menu-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10 L100,20 L0,20 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x bottom;
  pointer-events: none;
}

.menu-modal-header .modal-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.menu-modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  font-size: 18px;
}

.menu-modal-header .btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Modal Body */
.menu-modal-body {
  padding: 30px 25px;
  background: var(--surface-gradient, var(--surface-color));
}

/* Image Container */
.menu-modal-image-container {
  position: relative;
  margin-bottom: 20px;
}

.menu-modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid var(--accent-color);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.menu-modal-image:hover {
  transform: scale(1.02);
}

/* Category Badge in Modal */
.menu-modal-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Modal Info Section */
.menu-modal-info {
  padding-left: 20px;
}

.menu-modal-title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.menu-modal-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: var(--heading-font);
}

/* Rating in Modal */
.menu-modal-rating {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-modal-rating .stars {
  display: flex;
  gap: 3px;
}

.menu-modal-rating .star {
  font-size: 20px;
  color: #ddd;
  transition: color 0.2s ease;
}

.menu-modal-rating .star.filled {
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.5);
}

.menu-modal-rating .rating-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

/* Description */
.menu-modal-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(139, 69, 19, 0.1);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
}

/* Additional Details */
.menu-modal-details {
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-modal-details h6 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-modal-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-modal-details li {
  padding: 5px 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.menu-modal-details li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 8px;
}

/* Modal Footer */
.menu-modal-footer {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), transparent);
  border-top: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  padding: 20px 25px;
  text-align: center;
}

.menu-modal-footer .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border: 2px solid var(--accent-color);
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  min-width: 120px;
}

.menu-modal-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 10px;
    max-width: calc(100% - 20px);
  }
  
  .menu-modal-body {
    padding: 20px 15px;
  }
  
  .menu-modal-info {
    padding-left: 0;
    margin-top: 20px;
  }
  
  .menu-modal-image {
    height: 250px;
  }
  
  .menu-modal-title {
    font-size: 24px;
  }
  
  .menu-modal-price {
    font-size: 28px;
  }
  
  .menu-modal-rating .star {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .menu-modal-image {
    height: 200px;
  }
  
  .menu-modal-title {
    font-size: 20px;
  }
  
  .menu-modal-price {
    font-size: 24px;
  }
  
  .menu-modal-description,
  .menu-modal-details {
    padding: 15px;
    font-size: 14px;
  }
}

