/* Estilos para el Menú de WordPress */
.navbar-nav li {
    padding: 0 10px;
}

.navbar-nav li a {
    color: #333 !important; /* Color del texto */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav li a:hover {
    color: #007bff !important; /* Color al pasar el mouse (Azul Bootstrap) */
}

/* Ajuste del logo */
.brand-logo img {
    max-height: 50px;
    width: auto;
}

/* Sombra suave para el header */
.sticky-top {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


/* Variables de Color */
:root {
    --primary-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --bg-light: #f8f9fc;
    --text-dark: #2d3436;
    --text-muted: #636e72;
    --glass-bg: rgba(255, 255, 255, 0.85);
}

body {
    background-color: var(--bg-light);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Título con Gradiente */
.texto-gradiente {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tarjeta Glassmorphism */
.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-glass:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Ajuste de imagen */
.card-img-container {
    overflow: hidden;
    height: 220px;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-glass:hover .card-img-container img {
    transform: scale(1.1);
}

/* Botón Moderno */
.boton-moderno {
    background: var(--primary-gradient);
    color: #fff !important;
    text-align: center;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.boton-moderno:hover {
    box-shadow: 0 8px 20px rgba(37, 117, 252, 0.4);
    transform: scale(1.02);
}

/* Badges de categoría suaves */
.bg-soft-primary {
    background-color: rgba(37, 117, 252, 0.1);
    color: #2575fc;
}

.color-titulos {
    color: var(--text-dark);
    transition: color 0.3s;
}

.color-titulos:hover {
    color: #6a11cb;
}


/* Estilos básicos para el Slider */
.hero-slider-container {
    width: 100%;
    position: relative;
}

.slide-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.7s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.active-slide {
    opacity: 1;
    z-index: 10;
}

.hidden-slide {
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.slide-content {
    background: rgba(0, 0, 0, 0.4); /* Fondo oscuro para leer el texto */
    padding: 20px;
    border-radius: 8px;
}


/* Colores normales */
body {
    background-color: #ffffff;
    color: #333333;
    transition: 0.3s;
}

/* Colores Modo Nocturno */
body.dark-theme {
    background-color: #1a1a1a;
    color: #f4f4f4;
}

/* Ajuste para los slides de bartenders */
body.dark-theme .card, 
body.dark-theme .slider-container {
    background-color: #2d2d2d;
    border-color: #444;
}
/* Colores Modo Nocturno */
body.dark-theme {
    background-color: #1a1a1a !important;
    color: #f4f4f4 !important;
}

/* Asegurar que las letras de las cards cambien */
body.dark-theme .card, 
body.dark-theme .card-body,
body.dark-theme .card-title,
body.dark-theme .card-text {
    background-color: #2d2d2d !important; /* Fondo oscuro para la tarjeta */
    color: #ffffff !important;           /* Letras blancas */
    border-color: #444;
}

/* Si usas enlaces dentro de las cards */
body.dark-theme .card a {
    color: #ffc107 !important; /* Un color dorado/bartender para links */
}