/*
Theme Name: Las Mil Boquitas Pro
Theme URI: https://mundowebgt.com
Author: MundoWebGT
Author URI: https://mundowebgt.com
Description: Tema Premium "Silent Luxury" diseñado exclusivamente para operaciones de banquetes, catering y eventos corporativos élite en Guatemala. Incorpora optimizaciones Mobile-First, Tailwind CSS nativo y arquitectura 100% autogestionable.
Version: 2.3.0
License: Proprietary
Text Domain: lasmilboquitas
GitHub Theme URI: Mosheim/las-mil-boquitas-theme
Primary Branch: main
*/

/* 
 * NOTA DEL DESARROLLADOR:
 * El diseño principal de este tema está construido modularmente utilizando Tailwind CSS (mediante script global en functions.php) 
 * y no requiere escritura manual de CSS aquí a menos que sean overrides muy específicos.
 */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wood-bg {
    background-color: #1C1917;
    background-image: radial-gradient(circle at center, #292524 0%, #171717 100%);
}

/* Custom Loader */
#splash {
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.luxury-loader {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}
.luxury-loader::after {
    content: '';
    position: absolute;
    left: -50%;
    top: 0;
    width: 50%;
    height: 100%;
    background: #EAB308;
    animation: luxury-swipe 1.5s infinite ease-in-out;
    box-shadow: 0 0 10px #EAB308;
}
@keyframes luxury-swipe {
    0% { left: -50%; }
    100% { left: 100%; }
}

/* Sticky Transparent Nav Effect */
#mainNav {
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease;
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
#mainNav.scrolled {
    background-color: rgba(26, 26, 26, 0.95); /* Dark solid instead of orange */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(234, 179, 8, 0.5); /* Primary color border */
}

/* Modern Hero Frame CSS Slider */
.hero-slider-bg {
    animation: kenburns 20s infinite alternate;
}
@keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-title-modern {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Mouse Scroll Indicator */
.mouse {
    width: 30px;
    height: 45px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}
.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    animation: slide-mouse 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}
@keyframes slide-mouse {
    0% { opacity: 0; top: 8px; }
    20% { opacity: 1; top: 8px; }
    80% { opacity: 0; top: 24px; }
    100% { opacity: 0; top: 24px; }
}

/* Floating Modern Cards */
.floating-feature {
    backdrop-filter: blur(16px);
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.4s ease, border-color 0.4s;
}
.floating-feature:hover {
    transform: translateY(-10px);
    border-color: rgba(234, 179, 8, 0.6);
}

/* ==========================================================================
   PAGE-SPECIFIC STYLES (COPIED FROM ORIGINAL HTML FILES)
   ========================================================================== */

/* --- PAGE: COTIZAR --- */
.page-template-page-cotizar .form-input {
    width: 100%;
    border-bottom: 2px solid #52525b; 
    background: transparent;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #F3F4F6;
    transition: all 0.3s ease;
    outline: none;
}
.page-template-page-cotizar .form-input:focus {
    border-bottom-color: #EAB308;
}
.page-template-page-cotizar .form-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #a1a1aa; 
    transition: all 0.3s ease;
    pointer-events: none;
}
.page-template-page-cotizar .form-input:focus ~ .form-label,
.page-template-page-cotizar .form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    font-size: 0.75rem;
    color: #EAB308;
    font-weight: 600;
}
.page-template-page-cotizar .floating-group {
    position: relative;
    margin-bottom: 2rem;
}
.page-template-page-cotizar .gallery-img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-template-page-cotizar .gallery-container:hover .gallery-img {
    transform: scale(1.05);
}
.page-template-page-cotizar ::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/* --- PAGE: ALQUILERES --- */
.page-template-page-alquileres .price-row {
    display: flex;
    align-items: baseline;
    width: 100%;
    padding: 8px 0;
    transition: background-color 0.3s;
}
.page-template-page-alquileres .price-row .dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.15);
    margin: 0 10px;
    position: relative;
    top: -4px;
}
.page-template-page-alquileres .price-row:last-child {
    border-bottom: none;
}
.page-template-page-alquileres .price-row:hover {
    background-color: rgba(255,255,255,0.03);
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
}

/* --- PAGE: BANQUETES --- */
.page-template-page-banquetes .price-line {
    display: flex;
    align-items: baseline;
    width: 100%;
}
.page-template-page-banquetes .price-line .dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(234, 179, 8, 0.3); /* primary color with low opacity */
    margin: 0 10px;
    position: relative;
    top: -4px;
}
.page-template-page-banquetes .menu-card-img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-template-page-banquetes .group:hover .menu-card-img {
    transform: scale(1.08);
}

/* --- PAGE: BOQUITAS --- */
.page-template-page-boquitas .price-line {
    display: flex;
    align-items: baseline;
    width: 100%;
}
.page-template-page-boquitas .price-line::after {
    content: "";
    flex-grow: 1;
    border-bottom: 1px dashed #71717a;
    margin: 0 10px;
    opacity: 0.5;
}
.page-template-page-boquitas .item-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    align-items: stretch;
}
.page-template-page-boquitas .item-card:hover {
    transform: translateX(10px) scale(1.02);
    border-left-color: #EAB308;
    box-shadow: -5px 5px 20px rgba(0,0,0,0.5);
    z-index: 10;
}

/* Custom Desktop Menu Styles to Match Original HTML */
.menu-class-wrapper ul.menu {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Smaller gap for tablets to prevent overflow */
    font-weight: 500;
    color: white;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    align-items: center;
    font-size: 0.75rem; /* text-xs */
    flex-wrap: nowrap;
}
@media (min-width: 1024px) {
    .menu-class-wrapper ul.menu {
        font-size: 0.875rem; /* text-sm */
        gap: 2rem; /* Larger gap for desktop */
    }
}
.menu-class-wrapper ul.menu li a {
    transition: color 0.3s;
    display: block;
    border-bottom: 2px solid transparent;
    padding-bottom: 0.25rem;
    white-space: nowrap; /* Prevent "Cotizar VIP" from breaking into two lines */
}
.menu-class-wrapper ul.menu li a:hover {
    color: #EAB308; /* text-primary */
}
/* Active link */
.menu-class-wrapper ul.menu li.current-menu-item > a {
    color: #EAB308; /* text-primary */
    border-bottom-color: #EAB308;
    font-weight: 700;
}

/* Cotizar VIP button is the last item */
.menu-class-wrapper ul.menu li:last-child {
    margin-left: auto;
}
.menu-class-wrapper ul.menu li:last-child a {
    background-color: rgba(234, 179, 8, 0.2); /* bg-primary/20 */
    border: 1px solid rgba(234, 179, 8, 0.5); /* border-primary/50 */
    padding: 0.625rem 1.25rem; /* px-5 py-2.5 */
    border-radius: 9999px; /* rounded-full */
    font-weight: 700;
    color: #EAB308; /* text-primary */
    transition: all 0.3s ease;
}
.menu-class-wrapper ul.menu li:last-child a:hover {
    background-color: rgba(234, 179, 8, 0.4); /* hover:bg-primary/40 */
    color: white;
}
.menu-class-wrapper ul.menu li:last-child.current-menu-item > a {
    border-bottom: 1px solid rgba(234, 179, 8, 0.5); /* prevent 2px border bottom */
}
