/* #region Fondo personalizado */
.custom-bg {
  background-image: url('https://kafyoptudqzmcemcajzu.supabase.co/storage/v1/object/sign/nasc_restauranteLaParrillaLuisa/fondo/parrilla_background.jpg?token=...&t=...');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* #endregion*/

/* #region Colores y fuentes generales */
body {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
}

h1, h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h1 {
  color: #ffd700;
}

h2 {
  color: #ffd700;
}

h3 {
  color: #000000;
  text-shadow: 1px 1px 3px rgb(0, 0, 0);
  font-weight: bold;
}
/* #endregion */

/* #region Botones de pestañas */
button {
  transition: background-color 0.3s ease, color 0.3s ease;
}

button:focus {
  outline: none;
  border: 2px solid;
  border-radius: 4px;
}
/* #endregion */

/* #region Lista de platos */
ul li {
  border-bottom: 1px solid #666666;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

ul li:last-child {
  border-bottom: none;
}

ul li h4 {
  color: #ffd700;
}

ul li p {
  color: #cccccc;
  font-size: 0.9em;
}
/* #endregion */

/* #region Precios */
span.font-bold {
  color: #ffd700;
  font-weight: bold;
}
/* #endregion */

/* #region Efecto de hover en elementos de la lista */
ul li:hover h4 {
  color: #ffcc00;
}

ul li:hover span {
  color: #ffcc00;
}
/* #endregion */

/* #region Contenedor principal */
.min-h-screen {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 8px;
}
/* #endregion */

/* #region Estilos de la pestaña activa */
.active-tab {
  background-color: #ffd700;
  color: #000000;
  border-radius: 4px;
}
/* #endregion */

/* #region Estilos de navegación */
.bg-dark, .nav-link.active, .btn-dark {
  background-color: rgb(131, 21, 40) !important;
  color: #ffffff !important;
}

.nav-item {
  margin-right: 8px;
}

.nav-item:last-child {
  margin-right: 0;
}
/* #endregion */

/* #region Agrega estos estilos de depuración */
section {
  border: 1px;
}

footer p {
  margin: 5px 0; /* Separación entre párrafos */
}
/* #endregion */

/* #region Estilo específico para el botón "Reservar Mesa" */
.btn-reservar {
  background-color: #ffd700; /* Dorado brillante */
  color: #8b0000; /* Rojo oscuro */
  font-weight: bold;
  padding: 8px 18px;
  border-radius: 6px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-size: 22px;
  text-decoration: underline;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
  font-family: 'Cormorant Garamond', serif;
}

.btn-reservar:hover {
  color: #000000; /* Más oscuro en hover */
  transform: translateY(-2px); /* Efecto de elevación */
}
/* #endregion */

/* #region Botón flotante de WhatsApp REALISTA */
.whatsapp-float {
  position: fixed;
  width: 64px;
  height: 64px;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 
    0 4px 12px rgba(37, 211, 102, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.whatsapp-float:hover {
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 
    0 8px 20px rgba(37, 211, 102, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.2);
}

.whatsapp-float:active {
  transform: scale(1.05) translateY(-1px);
  transition: all 0.1s ease;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
}

.whatsapp-float:hover svg {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Animación de pulso mejorada */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 
      0 4px 12px rgba(37, 211, 102, 0.4),
      0 2px 6px rgba(0, 0, 0, 0.15),
      0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 
      0 4px 12px rgba(37, 211, 102, 0.6),
      0 2px 6px rgba(0, 0, 0, 0.2),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 
      0 4px 12px rgba(37, 211, 102, 0.4),
      0 2px 6px rgba(0, 0, 0, 0.15),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: whatsapp-pulse 2.5s infinite;
}

/* Efecto de brillo sutil */
@keyframes whatsapp-shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  animation: whatsapp-shine 4s infinite;
  pointer-events: none;
  opacity: 0.6;
}

/* Efecto de ondas concéntricas */
@keyframes whatsapp-ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: whatsapp-ripple 2s infinite;
  pointer-events: none;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 16px;
    right: 16px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.08) translateY(-1px);
  }
}

/* Efecto de aparición suave */
@keyframes whatsapp-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.whatsapp-float {
  animation: 
    whatsapp-fadeIn 0.6s ease-out,
    whatsapp-pulse 2.5s infinite 0.6s;
}
/* #endregion */

/* #region Estilos mejorados para iconos del desarrollador */
.developer-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.developer-icon-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: #ffffff !important;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

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

.developer-icon-link:hover::before {
  left: 100%;
}

.developer-icon-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
  color: #ffffff !important;
}

.developer-icon-link:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.1s ease;
}

.developer-icon-svg {
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.developer-icon-link:hover .developer-icon-svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.developer-icon-text {
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.developer-icon-link:hover .developer-icon-text {
  color: #ffd700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Estilos específicos para cada tipo de icono */
.developer-icon-link.instagram:hover {
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.2), rgba(255, 193, 7, 0.2));
  border-color: rgba(255, 45, 85, 0.3);
}

.developer-icon-link.website:hover {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(40, 167, 69, 0.2));
  border-color: rgba(0, 123, 255, 0.3);
}

.developer-icon-link.whatsapp:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(25, 118, 210, 0.2));
  border-color: rgba(37, 211, 102, 0.3);
}

/* Animación de aparición escalonada */
.developer-icon-link:nth-child(1) {
  animation: slideInUp 0.6s ease-out 0.1s both;
}

.developer-icon-link:nth-child(2) {
  animation: slideInUp 0.6s ease-out 0.2s both;
}

.developer-icon-link:nth-child(3) {
  animation: slideInUp 0.6s ease-out 0.3s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .developer-icons {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .developer-icon-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1rem;
  }
  
  .developer-icon-svg {
    width: 22px;
    height: 22px;
    margin-right: 0.5rem;
  }
  
  .developer-icon-text {
    font-size: 0.9rem;
  }
}

/* Efecto de brillo sutil en hover */
.developer-icon-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.developer-icon-link:hover::after {
  opacity: 1;
  animation: shine 0.8s ease-out;
}

@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
/* #endregion */

/* #region Estilos mejorados para redes sociales del restaurante */
.restaurant-social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.restaurant-social-link {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  color: #ffffff !important;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

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

.restaurant-social-link:hover::before {
  left: 100%;
}

.restaurant-social-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(255, 255, 255, 0.1);
  text-decoration: none !important;
  color: #ffffff !important;
}

.restaurant-social-link:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.1s ease;
}

.restaurant-social-svg {
  width: 24px;
  height: 24px;
  margin-right: 0.75rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.restaurant-social-link:hover .restaurant-social-svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.restaurant-social-text {
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.restaurant-social-link:hover .restaurant-social-text {
  color: #ffd700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Estilos específicos para cada tipo de red social del restaurante */
.restaurant-social-link.instagram:hover {
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.2), rgba(255, 193, 7, 0.2));
  border-color: rgba(255, 45, 85, 0.3);
}

.restaurant-social-link.facebook:hover {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(66, 103, 178, 0.2));
  border-color: rgba(24, 119, 242, 0.3);
}

/* Animación de aparición escalonada para redes del restaurante */
.restaurant-social-link:nth-child(1) {
  animation: slideInUp 0.6s ease-out 0.1s both;
}

.restaurant-social-link:nth-child(2) {
  animation: slideInUp 0.6s ease-out 0.2s both;
}

/* Responsive para móviles - redes del restaurante */
@media (max-width: 768px) {
  .restaurant-social-icons {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  
  .restaurant-social-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 1rem;
  }
  
  .restaurant-social-svg {
    width: 22px;
    height: 22px;
    margin-right: 0.5rem;
  }
  
  .restaurant-social-text {
    font-size: 0.9rem;
  }
}

/* Efecto de brillo sutil en hover - redes del restaurante */
.restaurant-social-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.restaurant-social-link:hover::after {
  opacity: 1;
  animation: shine 0.8s ease-out;
}
/* #endregion */


