/**
<!--
Proyecto Carnes del Rancho
Creado por: Tatiana Matías Jiménez
Fecha: 27 de mayo de 2025
-->



/* Colores globales del sitio web */
:root {
  --background-color: #101719; /* Color de fondo para todo el sitio web, incluyendo las secciones individuales */
  --default-color: #f1f3f5; /* Color predeterminado para la mayoría del texto en todo el sitio */
  --heading-color: #f4f7fa; /* Color para títulos, subtítulos y encabezados en el sitio */
  --accent-color: #ffac2a; /* Color de acento para elementos destacados como botones, enlaces y otros elementos que necesitan resaltar */
  --surface-color: #252a2b; /* Color de fondo para cajas, tarjetas o elementos que se separan visualmente del fondo general */
  --contrast-color: #ffffff; /* Color de contraste para el texto, asegurando que sea legible sobre fondos de acento, títulos o colores predeterminados */
}


/* Colores del Menú de Navegación Menu principal*/
:root {
  --nav-color: #f1f3f5;  /* Color predeterminado de los enlaces del menú de navegación */
  --nav-hover-color: #ffac2a; /* Color de los enlaces al pasar el cursor o cuando están activos */
  --nav-mobile-background-color: #243438; /* Color de fondo para el menú de navegación en la versión móvil */
  --nav-dropdown-background-color: #243438; /* Color de fondo para los menús desplegables */
  --nav-dropdown-color: #f1f3f5; /* Color de los enlaces dentro de los menús desplegables */
  --nav-dropdown-hover-color: #ffac2a; /* Color de los enlaces de los menús desplegables al pasar el cursor */
}


/* Colores predefinidos - Estas clases sobrescriben los colores globales cuando se aplican a una sección o elemento, permitiendo reutilizar el mismo esquema de color */

.light-background {
  --background-color: #243438; /* Fondo para secciones claras */
  --surface-color: #385157; /* Fondo para elementos dentro de secciones claras */
}

.dark-background {
  --background-color: #060606; /* Fondo para secciones oscuras */
  --default-color: #ffffff; /* Texto principal en secciones oscuras */
  --heading-color: #ffffff; /* Títulos y subtítulos en secciones oscuras */
  --surface-color: #252525; /* Fondo para elementos dentro de secciones oscuras */
  --contrast-color: #ffffff; /* Texto de contraste para asegurar legibilidad en secciones oscuras */
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header .logo i {
  font-size: 24px;
  margin-right: 5px;
  color: var(--accent-color);
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--heading-color);
}

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #23292b;
}

/*--------------------------------------------------------------
# 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: 16px;
    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;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

/* 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);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .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-color: 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 {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.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 50%);
  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 20%);
  display: inline-block;
  line-height: 1;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: 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);
  }
}

/* Boton de Scroll de pagina web */

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 35px;
  bottom: 110px; /* antes -15px → lo subimos más arriba */
  z-index: 99999;
  background-color: var(--accent-color);
  width: 50px; /* un poco más grande para que se vea bien cuadrado */
  height: 50px;
  border-radius: 8px; /* antes 50px → ahora cuadrado con esquinas suaves */
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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);
  transform: translateY(-3px); /* efecto leve al pasar el mouse */
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 110px; /* coincide con la posición final */
}


/*--------------------------------------------------------------
# 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-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .hero-container {
  padding: 0;
}

.hero .hero-container .content-col {
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero .hero-container .content-col {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-container .content-col {
    padding: 2.5rem 1.5rem;
  }
}

.hero .hero-container .content-col .content-wrapper {
  max-width: 570px;
}

.hero .hero-container .content-col .status-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.hero .hero-container .content-col h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 1200px) {
  .hero .hero-container .content-col h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero .hero-container .content-col h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero .hero-container .content-col h2 {
    font-size: 2.2rem;
  }
}

.hero .hero-container .content-col p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero .hero-container .content-col p {
    font-size: 1rem;
  }
}

.hero .hero-container .content-col .opening-hours {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--heading-color);
  font-weight: 500;
}

.hero .hero-container .content-col .opening-hours i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-color);
}

.hero .hero-container .content-col .opening-hours span {
  font-size: 0.95rem;
}

.hero .hero-container .content-col .btn-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero .hero-container .content-col .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .hero .hero-container .content-col .btn-group .btn {
    width: 100%;
    text-align: center;
  }
}

.hero .hero-container .content-col .btn-group .btn {
  padding: 1rem 2rem;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-container .content-col .btn-group .btn.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: transparent;
}

.hero .hero-container .content-col .btn-group .btn.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-container .content-col .btn-group .btn.btn-menu {
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.hero .hero-container .content-col .btn-group .btn.btn-menu:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-container .content-col .social-links {
  display: flex;
  gap: 1rem;
}

.hero .hero-container .content-col .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.hero .hero-container .content-col .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.hero .hero-container .content-col .social-links a i {
  font-size: 1.2rem;
}

.hero .hero-container .hero-swiper {
  position: relative;
}

.hero .hero-container .hero-swiper .swiper-slide {
  position: relative;
}

.hero .hero-container .hero-swiper .swiper-slide .img-container {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 90px);
}

.hero .hero-container .hero-swiper .swiper-slide .img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
}

.hero .hero-container .hero-swiper .swiper-button-next,
.hero .hero-container .hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, #000, transparent 70%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.hero .hero-container .hero-swiper .swiper-button-next:after,
.hero .hero-container .hero-swiper .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: bold;
}

.hero .hero-container .hero-swiper .swiper-button-next:hover,
.hero .hero-container .hero-swiper .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-container .hero-swiper .swiper-button-next {
  right: 20px;
}

.hero .hero-container .hero-swiper .swiper-button-prev {
  left: 20px;
}

@media (max-width: 992px) {
  .hero .hero-container .content-col {
    order: 2;
  }

  .hero .hero-container .swiper-col {
    order: 1;
  }

  .hero .hero-container .hero-swiper .swiper-slide .img-container {
    height: calc(70vh - 80px);
  }

  .hero .hero-container .hero-swiper .swiper-button-next,
  .hero .hero-container .hero-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .hero .hero-container .hero-swiper .swiper-button-next:after,
  .hero .hero-container .hero-swiper .swiper-button-prev:after {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 120px;
  padding-bottom: 60px;
}

.about .about-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
}

.about .about-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

.about .about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about .about-content p.fst-italic {
  font-size: 18px;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
}

.about .about-content .chef-signature {
  padding: 20px;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 8px;
}

.about .about-content .chef-signature .chef-avatar {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.about .about-content .chef-signature .chef-message {
  font-style: italic;
  font-size: 15px;
  color: var(--heading-color);
}

.about .about-content .chef-signature .signature-img {
  max-height: 50px;
  margin-bottom: 5px;
}

.about .about-content .chef-signature .chef-name {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
}

.about .about-image-wrapper {
  position: relative;
}

.about .about-image-wrapper .main-image {
  border-radius: 10px;
  position: relative;
  z-index: 1;
  border: 5px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.about .about-image-wrapper .accent-image {
  position: absolute;
  width: 60%;
  bottom: -15%;
  right: -15%;
  z-index: 2;
  border-radius: 10px;
  border: 5px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .about .about-image-wrapper .accent-image {
    display: none;
  }
}

.about .about-image-wrapper .establishment-year {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1.1;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .about .about-image-wrapper .establishment-year {
    width: 70px;
    height: 70px;
    font-size: 16px;
    top: -10px;
    left: -10px;
  }
}

.about .features-section {
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

.about .features-section .feature-box {
  text-align: center;
  padding: 20px 15px;
  height: 100%;
  transition: all 0.3s ease;
}

.about .features-section .feature-box:hover {
  transform: translateY(-10px);
}

.about .features-section .feature-box:hover .feature-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .features-section .feature-box .feature-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 15%);
  color: var(--accent-color);
  font-size: 28px;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .features-section .feature-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.about .features-section .feature-box p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

.about .stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
  background-color: color-mix(in srgb, var(--background-color), var(--heading-color) 3%);
  padding: 30px 20px;
  border-radius: 10px;
}

.about .stats-container .stat-item {
  text-align: center;
  padding: 15px;
}

@media (max-width: 768px) {
  .about .stats-container .stat-item {
    width: 50%;
    margin-bottom: 15px;
  }
}

.about .stats-container .stat-item .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  font-family: var(--heading-font);
  line-height: 1;
}

.about .stats-container .stat-item .stat-label {
  margin-top: 5px;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 15px;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .menu-filters ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu .menu-filters ul li {
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 25px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.menu .menu-filters ul li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.menu .menu-filters ul li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .menu .menu-filters ul {
    gap: 8px;
  }

  .menu .menu-filters ul li {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

.menu .menu-container {
  position: relative;
}

.menu .specials-badge {
  margin-bottom: 15px;
}

.menu .specials-badge span {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: 20px;
}

.menu .specials-badge span i {
  color: var(--accent-color);
  margin-right: 8px;
}

.menu .specials-container {
  margin-bottom: 2rem;
}

.menu .special-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  background-color: var(--surface-color);
}

.menu .special-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.menu .special-item .menu-item-img {
  position: relative;
  overflow: hidden;
}

.menu .special-item .menu-item-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s;
}

.menu .special-item .menu-item-img:hover img {
  transform: scale(1.05);
}

.menu .special-item .menu-item-img .menu-item-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
}

.menu .special-item .menu-item-img .menu-item-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu .special-item .menu-item-img .menu-item-badges .badge-special {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.menu .special-item .menu-item-img .menu-item-badges .badge-vegan {
  background-color: color-mix(in srgb, green, transparent 30%);
  color: var(--contrast-color);
}

.menu .special-item .menu-item-img .menu-item-badges .badge-spicy {
  background-color: color-mix(in srgb, red, transparent 30%);
  color: var(--contrast-color);
}

.menu .special-item .menu-item-content {
  padding: 20px;
}

.menu .special-item .menu-item-content h4 {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 1.25rem;
}

.menu .special-item .menu-item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.menu .special-item .menu-item-content .menu-item-price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.menu .menu-item {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--surface-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.menu .menu-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.menu .menu-item .menu-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.menu .menu-item .menu-img:hover {
  transform: scale(1.05);
}

.menu .menu-item .menu-content {
  flex: 1;
}

.menu .menu-item .menu-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.menu .menu-item .menu-content .menu-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 20px;
  font-weight: 500;
  display: inline-block;
}

.menu .menu-item .menu-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.menu .menu-item .menu-content .price {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.menu .download-menu {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.menu .download-menu i {
  margin-right: 8px;
}

.menu .download-menu:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .menu .menu-item .menu-img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .menu .specials-container .row {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .menu .menu-item {
    flex-direction: column;
  }

  .menu .menu-item .menu-img {
    width: 100%;
    height: 160px;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Testimonios de clientes
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
  box-sizing: content-box;
  padding: 14px;                 /* ↓ más compacto */
  margin: 16px 8px;              /* ↓ menos margen */
  min-height: 200px;             /* ↓ menos alto */
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform .30s ease, box-shadow .30s ease;
  border-radius: 12px;
  gap: 10px;                     /* ↓ controla espacio interno */
}

/* Estrellas */
.testimonials .testimonial-item .stars { margin-bottom: 6px; }
.testimonials .testimonial-item .stars i { color:#ffc107; margin:0 1px; font-size:.9rem; }

/* Foto pequeña */
.testimonials .testimonial-item .testimonial-img{
  width: 52px; height: 52px;     /* ↓ más pequeña */
  border-radius: 50%;
  border: 2px solid var(--background-color);
  margin: 0 auto;
  object-fit: cover;
}

/* Nombre / rol */
.testimonials .testimonial-item h3{ font-size:.95rem; font-weight:600; margin:6px 0 2px; }
.testimonials .testimonial-item h4{ font-size:.8rem; color: color-mix(in srgb, var(--default-color), transparent 40%); margin:0; }

/* Comentario: máx 2-3 líneas para evitar huecos */
.testimonials .testimonial-item p{
  font-size:.95rem; line-height:1.4;
  margin:0 auto 6px auto;
  max-width: 40ch;
  display:-webkit-box; display:box;
  -webkit-box-orient:vertical; box-orient:vertical;
  -webkit-line-clamp:2; line-clamp:2;   /* <= ajusta a 3 si quieres */
  overflow:hidden; text-overflow:ellipsis;
  font-style: normal;                    /* sin cursiva */
}

/* MUY IMPORTANTE: no empujar la foto hacia abajo con mt-auto del HTML */
.testimonials .testimonial-item .profile{ margin-top: 8px !important; }

/* Swiper: animación suave al pasar/centrar */
.testimonials .swiper-wrapper{ height:auto; }
.testimonials .swiper-slide{
  opacity:.1;
  filter: none !important;
  -webkit-filter: none !;
}
.testimonials .swiper-slide-active{
  opacity:1;
  transform: scale(1.02);               /* efecto sutil al slide activo */
}
.testimonials .testimonial-item:hover{
  transform: translateY(-4px) scale(1.01);  /* efecto hover */
}

/* Paginación compacta */
.testimonials .swiper-pagination{ margin-top:12px; position:relative; }
.testimonials .swiper-pagination .swiper-pagination-bullet{
  width:8px; height:8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity:1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active{
  background-color: var(--accent-color);
}

/* Responsive */
@media (max-width:1199px){
  .testimonials .swiper-slide-active{ opacity:1; }
  .testimonials .swiper-pagination{ margin-top:0; }
  .testimonials .testimonial-item{ margin:16px 8px; }
}
@media (min-width:1200px){
  .testimonials .swiper-slide-next{
    opacity:1;
    transform: scale(1.04);  /* más sutil que 1.12 */
  }
}


/* Fuerza misma visibilidad para todos los slides */
.testimonials .swiper-slide,
.testimonials .swiper-slide-active,
.testimonials .swiper-slide-next,
.testimonials .swiper-slide-prev {
  opacity: 1 !important;
  filter: brightness(1) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

/* Hace que al pasar el cursor se note más la animación */
.testimonials .testimonial-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  filter: brightness(1.2); /* aclara ligeramente la tarjeta */
}

/* Asegura que el texto del testimonio sea visible siempre */
.testimonials .testimonial-item p,
.testimonials .testimonial-item h3,
.testimonials .testimonial-item h4 {
  color: rgba(255,255,255,0.9) !important;
}




/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-highlight {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.chefs .chef-highlight .chef-image {
  overflow: hidden;
  margin-bottom: 0;
}

.chefs .chef-highlight .chef-image img {
  transition: transform 0.6s;
  width: 100%;
  object-fit: cover;
}

.chefs .chef-highlight .chef-image:hover img {
  transform: scale(1.05);
}

.chefs .chef-highlight .chef-details {
  padding: 2.5rem;
}

.chefs .chef-highlight .chef-details h3 {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.chefs .chef-highlight .chef-details h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.chefs .chef-highlight .chef-details .chef-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.chefs .chef-highlight .chef-details .chef-awards span {
  font-size: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: inline-flex;
  align-items: center;
}

.chefs .chef-highlight .chef-details .chef-awards span i {
  margin-right: 0.4rem;
  color: var(--accent-color);
}

.chefs .chef-highlight .chef-details p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.chefs .chef-highlight .chef-details .chef-signature {
  display: block;
  max-width: 180px;
  margin-top: 1.5rem;
}

.chefs .chef-highlight .chef-details .chef-signature img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .chefs .chef-highlight {
    margin-bottom: 2.5rem;
  }
}

.chefs .team-container {
  padding-left: 1rem;
}

@media (max-width: 991px) {
  .chefs .team-container {
    padding-left: 0;
  }
}

.chefs .chef-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.chefs .chef-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.chefs .chef-card:hover .social-links {
  opacity: 1;
  visibility: visible;
}

.chefs .chef-card .chef-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-card .chef-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}

.chefs .chef-card .chef-img .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.chefs .chef-card .chef-img .social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-radius: 50%;
  transition: background-color 0.3s, color 0.3s;
}

.chefs .chef-card .chef-img .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.chefs .chef-card .chef-info {
  padding: 1.5rem;
}

.chefs .chef-card .chef-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.chefs .chef-card .chef-info .role {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}

.chefs .chef-card .chef-info .details {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table {
  position: relative;
}

.book-a-table h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.book-a-table h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.book-a-table .reservation-info {
  height: 100%;
}

.book-a-table .reservation-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.book-a-table .reservation-info .reservation-details .detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.book-a-table .reservation-info .reservation-details .detail-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.book-a-table .reservation-info .reservation-details .detail-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.book-a-table .reservation-info .reservation-details .detail-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.book-a-table .reservation-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.book-a-table .reservation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.book-a-table .reservation-image img:hover {
  transform: scale(1.03);
}

.book-a-table .reservation-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.book-a-table .reservation-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.book-a-table .reservation-form-wrapper .form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.book-a-table .reservation-form-wrapper .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.book-a-table .reservation-form-wrapper input,
.book-a-table .reservation-form-wrapper select,
.book-a-table .reservation-form-wrapper textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 5px;
}

.book-a-table .reservation-form-wrapper input:focus,
.book-a-table .reservation-form-wrapper select:focus,
.book-a-table .reservation-form-wrapper textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.book-a-table .reservation-form-wrapper input::placeholder,
.book-a-table .reservation-form-wrapper select::placeholder,
.book-a-table .reservation-form-wrapper textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.book-a-table .reservation-form-wrapper .btn-book-table {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 12px 36px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: 0.3s;
}

.book-a-table .reservation-form-wrapper .btn-book-table:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .book-a-table .reservation-info {
    margin-bottom: 2rem;
  }

  .book-a-table .reservation-image {
    margin-bottom: 2rem;
  }

  .book-a-table .reservation-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .book-a-table h3 {
    font-size: 1.6rem;
  }

  .book-a-table h4 {
    font-size: 1.3rem;
  }

  .book-a-table .reservation-form-wrapper {
    padding: 1.5rem;
  }

  .book-a-table .reservation-form-wrapper .form-header h3 {
    font-size: 1.6rem;
  }
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .row {
  align-items: stretch;
}

.location .map-container {
  height: 100%;
  min-height: 450px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.location .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location .info-container {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.location .info-container .section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.location .info-container .section-header h2 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 2.2rem;
}

.location .info-container .section-header p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.location .info-card {
  display: flex;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.location .info-card:last-of-type {
  border-bottom: none;
}

.location .info-card .info-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location .info-card .info-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.location .info-card .info-content h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.location .info-card .info-content p {
  margin-bottom: 0.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.location .info-card .info-content p.small-text {
  font-size: 0.85rem;
  font-style: italic;
}

.location .info-card .info-content .hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
}

.location .info-card .info-content .hours-grid .day {
  font-weight: 500;
}

.location .info-card .info-content .hours-grid .time {
  text-align: right;
}

.location .cta-wrapper {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.location .cta-wrapper a {
  flex: 1;
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location .cta-wrapper a.btn-book {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.location .cta-wrapper a.btn-book:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.location .cta-wrapper a.btn-contact {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.location .cta-wrapper a.btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .location .info-container {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .location .cta-wrapper {
    flex-direction: column;
  }

  .location .hours-grid {
    grid-template-columns: 1fr !important;
  }

  .location .hours-grid .time {
    text-align: left !important;
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .intro-text {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.events .intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.events .intro-text h2:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.events .intro-text p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .event-types {
  margin-bottom: 4rem;
}

.events .event-types .event-type-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events .event-types .event-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.events .event-types .event-type-card .icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.events .event-types .event-type-card .icon-wrapper i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.events .event-types .event-type-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.events .event-types .event-type-card p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.events .event-types .event-type-card .capacity {
  display: inline-block;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
}

.events .gallery-showcase {
  margin-bottom: 4rem;
}

.events .gallery-showcase .main-image,
.events .gallery-showcase .gallery-item {
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.events .gallery-showcase .main-image img,
.events .gallery-showcase .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.events .gallery-showcase .main-image img:hover,
.events .gallery-showcase .gallery-item img:hover {
  transform: scale(1.05);
}

.events .gallery-showcase .main-image {
  height: 400px;
}

@media (max-width: 992px) {
  .events .gallery-showcase .main-image {
    height: 300px;
  }
}

.events .gallery-showcase .gallery-item {
  height: 192px;
}

@media (max-width: 992px) {
  .events .gallery-showcase .gallery-item {
    height: 200px;
  }
}

.events .event-cta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 4rem;
}

.events .event-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.events .event-cta p {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.events .event-cta .btn-reserve {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.events .event-cta .btn-reserve:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .events .event-cta {
    text-align: center;
  }

  .events .event-cta .col-lg-4 {
    margin-top: 1.5rem;
    text-align: center;
  }
}

.events .featured-events h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.events .featured-events h3:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.events .featured-events .featured-event-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
}

.events .featured-events .featured-event-card .event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  min-width: 70px;
}

.events .featured-events .featured-event-card .event-date .month {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.events .featured-events .featured-event-card .event-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.events .featured-events .featured-event-card .event-content {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .events .featured-events .featured-event-card .event-content {
    flex-direction: row;
  }
}

.events .featured-events .featured-event-card .event-content .event-image {
  flex: 1;
  height: 250px;
}

@media (min-width: 768px) {
  .events .featured-events .featured-event-card .event-content .event-image {
    max-width: 230px;
    height: auto;
  }
}

.events .featured-events .featured-event-card .event-content .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events .featured-events .featured-event-card .event-content .event-info {
  flex: 2;
  padding: 1.5rem;
}

.events .featured-events .featured-event-card .event-content .event-info h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.events .featured-events .featured-event-card .event-content .event-info .event-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.events .featured-events .featured-event-card .event-content .event-info .event-meta li {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.events .featured-events .featured-event-card .event-content .event-info .event-meta li i {
  margin-right: 5px;
  color: var(--accent-color);
}

.events .featured-events .featured-event-card .event-content .event-info p {
  margin-bottom: 1.5rem;
}

.events .featured-events .featured-event-card .event-content .event-info .btn-details {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  padding: 8px 25px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
}

.events .featured-events .featured-event-card .event-content .event-info .btn-details:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

  .contact .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Sección de inicio
--------------------------------------------------------------*/
.starter-section {
  display: block;
}

/* BOTÓN "AGREGAR AL CARRITO"*/

   .btn-brand {
    background-color: #df1529 !important; /* rojo institucional */
    color: #fff !important;
    border: none !important;
    border-radius: 4px;
    padding: 6px 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    text-decoration: none;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .btn-brand:hover {
    background-color: #b9101e !important; /* tono más oscuro al pasar el mouse */
    color: #fff !important;
    transform: translateY(-2px);
  }

  .btn-brand i {
    color: #fff !important;
  }

  /* Garantiza que el contenedor no tape el botón */
  .menu-item {
    overflow: visible !important;
    position: relative !important;
    z-index: 1;
  }

  /* Reduce el espacio extra entre los filtros y el catálogo */
  .menu-filters {
    margin-bottom: 12px !important;
  }

/* ====== Checkout ====== */
.checkout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.checkout__summary,
.checkout__form {
  flex: 1;
  min-width: 300px;
}

.checkout__summary {
  background: #fafafa; /* sutil para diferenciar el resumen */
}

.checkout__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.checkout__item {
  padding: 0.4rem 0;
  border-bottom: 1px dashed #e5e5e5;
}

.checkout__item:last-child {
  border-bottom: none;
}

.checkout__total {
  font-size: 1.05rem;
  margin-top: 0.8rem;
}

/* ====== Form ====== */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  outline: none;
}

.form-group input[type="email"]:focus {
  border-color: #7aa7ff;
  box-shadow: 0 0 0 3px rgba(122,167,255,0.2);
}

.checkout__note {
  margin-top: 0.6rem;
  color: #555;
  font-size: 0.92rem;
}

/* ====== Botones ====== */
.btn {
  display: inline-block;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.05s ease-in-out, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,123,255,0.3);
}

.btn-primary:hover {
  background-color: #0056b3;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .checkout {
    gap: 1rem;
  }
}
/* Aviso amarillo translúcido */
.alert-brand {
  background: rgba(255, 193, 7, 0.15) !important; /* amarillo translúcido */
  border: 1px solid rgba(255, 193, 7, 0.40) !important;
  color: #8a6d00 !important;
  border-radius: .5rem !important;
  text-align: center;
  padding: .75rem 1rem;
}
