/* =========================================
   RockForge Events - Diseño inspirado en app móvil
   Fondo negro, texto blanco, ciudad roja
   ========================================= */

* {
    box-sizing: border-box;
}

/* =========================================
   FILTROS (estilo app)
   ========================================= */
.rockforge-filters-section {
    background: #000;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.rockforge-filters-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rockforge-filters-title::before {
    content: '🔍';
    font-size: 1.1rem;
}

.rockforge-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.rockforge-filter-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rockforge-filter-item label {
    color: #aaa;
    font-size: 0.9rem;
    font-weight: 500;
}

.rockforge-filter-input {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 0.875rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.rockforge-filter-input:focus {
    outline: none;
    border-color: #dc2626;
    background: #000;
}

.rockforge-filter-input::placeholder {
    color: #555;
}

/* Date inputs */
.rockforge-filter-input[type="date"] {
    color-scheme: dark;
}

/* =========================================
   LISTA DE EVENTOS (estilo app)
   ========================================= */
.rockforge-events-container {
    background: #000;
}

.rockforge-events-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Item de evento */
.rockforge-event-item {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: background 0.2s ease;
}

.rockforge-event-item:hover {
    background: #0a0a0a;
}

.rockforge-event-item:first-child {
    padding-top: 0;
}

/* Info del evento (lado izquierdo) */
.rockforge-event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Título: BANDA (blanco, grande) */
.rockforge-event-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* Ciudad (rojo) */
.rockforge-event-city {
    color: #dc2626;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.rockforge-event-city::before {
    content: '📍';
    font-size: 0.9rem;
}

/* Detalles: venue, fecha, hora (gris con iconos) */
.rockforge-event-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-icon {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Acción (botón derecha) */
.rockforge-event-action {
    flex-shrink: 0;
}

.rockforge-btn-ticket {
    background: #dc2626;
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.rockforge-btn-ticket:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* =========================================
   SIN EVENTOS
   ========================================= */
.rockforge-no-events,
.rockforge-no-results {
    background: #0a0a0a;
    border: 2px dashed #222;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin: 2rem 0;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .rockforge-filters-grid {
        grid-template-columns: 1fr;
    }
    
    .rockforge-event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .rockforge-event-action {
        width: 100%;
    }
    
    .rockforge-btn-ticket {
        width: 100%;
        text-align: center;
    }
    
    .rockforge-event-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .rockforge-filters-section {
        padding: 1.5rem;
    }
    
    .rockforge-event-item {
        padding: 1.5rem 0;
    }
    
    .rockforge-event-title {
        font-size: 1.2rem;
    }
    
    .rockforge-event-details {
        gap: 1rem;
    }
}

/* =========================================
   WIDGET SIDEBAR
   ========================================= */
.rockforge-widget-events {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
}

.rockforge-widget-title {
    color: #fff;
    font-size: 1.25rem;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #dc2626;
}

.rockforge-widget-event-item {
    padding: 1rem 0;
    border-bottom: 1px solid #1a1a1a;
}

.rockforge-widget-event-item:last-child {
    border-bottom: none;
}

.widget-event-name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.widget-event-city {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.widget-event-date {
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}
