/* =====================================================
   ONEXPO 2026 - Color Azul como Principal
   ===================================================== */

:root {
    /* Colores Azules - Nuevo Esquema */
    --primary: #1e40af;
    /* Azul principal */
    --primary-dark: #1e3a8a;
    /* Azul oscuro */
    --primary-light: #3b82f6;
    /* Azul claro */
    --accent: #60a5fa;
    /* Azul acento */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;

    /* Table/Seat Colors */
    --table-wood: #8b6f47;
    --chair-available: #10b981;
    --chair-reserved: #ef4444;
    --chair-selected: #fbbf24;
}

/* =====================================================
   HEADER CON LOGO
   ===================================================== */

.header-main {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    /* Sombra blanca resaltando */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 1.5));
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0;
    color: white;
}

.header-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

/* =====================================================
   PROGRESS BAR - Azul
   ===================================================== */

.progress-bar {
    background: var(--primary) !important;
}

.step.active .step-number {
    background: var(--primary) !important;
    color: white;
}

.step.active .step-label {
    color: var(--primary) !important;
}

/* =====================================================
   BOTONES Y ELEMENTOS PRIMARIOS - Azul
   ===================================================== */

.btn-primary,
.bg-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

/* =====================================================
   SERVICE CARDS - Azul
   ===================================================== */

.service-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.2) !important;
}

.service-card.selected {
    border-color: var(--primary) !important;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%) !important;
}

.service-icon {
    color: var(--primary) !important;
}

.service-price {
    color: var(--primary) !important;
}

.service-card.selected .btn-select-service {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

/* =====================================================
   STAGE INDICATOR - Azul
   ===================================================== */

.stage-indicator {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
    .header-logo {
        height: 45px;
    }

    .header-title {
        font-size: 1.5rem;
    }

    .header-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 40px;
    }

    .header-title {
        font-size: 1.25rem;
    }
}