/* assets/css/style.css */

/* Importar fuentes de alta conversión */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --primary-color: #1A362D;  /* Verde oscuro elegante (Litany) */
    --gold: #D4AF37;            /* Dorado de acento */
    --gold-hover: #b5952f;
    --bg-light: #F8F9FA;        /* Fondo claro y limpio */
    --card-bg: #FFFFFF;         /* Tarjetas blancas puras */
    --text-dark: #212529;
    --text-muted: #6C757D;
    --whatsapp-green: #25D366;
    
    --primary-font: 'Montserrat', sans-serif;
    --title-font: 'Playfair Display', serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--primary-font);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, .card-title {
    font-family: var(--title-font);
    letter-spacing: 0.5px;
}

/* Navbar Estilo Cristal */
.glass-nav {
    background: rgba(26, 54, 45, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Botones de Conversión */
.btn {
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-gold {
    background-color: var(--gold);
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, rgba(26, 54, 45, 0.9), rgba(26, 54, 45, 0.6)), url('https://images.unsplash.com/photo-1541518763669-27fef04b14ea?q=80&w=2000&auto=format&fit=crop') center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.gold-divider {
    height: 3px;
    width: 60px;
    background-color: var(--gold);
    border-radius: 2px;
}

/* Navegación por categorías */
.nav-pills .nav-link {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 8px 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active, .nav-pills .nav-link:hover {
    background-color: var(--primary-color);
    color: #FFF;
    border-color: var(--primary-color);
}

/* Tarjetas de Producto */
.menu-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08) !important;
}

.price-tag {
    font-family: var(--primary-font);
    font-weight: 700;
    background-color: rgba(26, 54, 45, 0.05);
    color: var(--primary-color);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 1.05rem;
    letter-spacing: -0.5px;
}

/* Etiquetas de Marca */
.brand-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
}

.badge-litany {
    background-color: rgba(212, 175, 55, 0.15);
    color: #B8901D;
}

.badge-italia {
    background-color: rgba(25, 135, 84, 0.15);
    color: #198754;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #FFF;
}

/* Botón WhatsApp Flotante */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.wa-float:hover {
    color: #FFF;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}