/* event-card.css - Estilos para tarjeta sobria y elegante */

/* Contenedor principal - Sección Hero */
.event-card-container {
    position: relative;
    width: 100%;
    min-height: auto;
    /* Removed 100vh to reduce vertical space */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0a0a0a;
    /* Fondo consistente con todas las secciones */
    padding: 140px 20px 40px 20px;
    z-index: 1;
}

@media (min-width: 992px) {
    .event-card-container {
        padding-top: 220px;
        /* Increased to clearly separate from the floating navbar */
        padding-bottom: 80px;
    }
}

.event-card {
    display: flex;
    flex-direction: column;
    /* Mobile first */
    width: 100%;
    max-width: 800px;
    background: #111111;
    border: 1px solid #333;
    border-radius: 8px;
    /* Neon green glow */
    overflow: hidden;
}

@media (min-width: 768px) {
    .event-card {
        flex-direction: row;
        /* Horizontal en desktop */
        max-height: 550px;
        /* Increased from 400px */
    }
}

/* Imagen - Recortada y elegante */
.event-card-image-wrapper {
    width: 100%;
    height: 180px;
    /* Reduced from 250px */
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .event-card-image-wrapper {
        width: 50%;
        /* Wider image */
        height: auto;
    }
}

.event-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image {
    transform: scale(1.03);
}

/* Contenido */
.event-card-content {
    padding: 25px;
    /* Slightly reduced padding */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.event-card-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #40ff43;
    /* Neon Green */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.event-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.1;
}

.event-card-details {
    margin-bottom: 25px;
    border-left: 3px solid #40ff43;
    /* Neon Green Border */
    padding-left: 15px;
}

.event-card-date {
    font-size: 1rem;
    color: #ddd;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.event-card-location {
    font-size: 0.85rem;
    color: #999;
}

/* Botones Sobrios */
.event-card-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.event-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    flex: 1;
    min-width: 140px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .event-btn {
        flex: 0 1 auto;
        /* Natural width on desktop */
        width: auto;
        min-width: 160px;
    }
}

/* Botón Principal (Entradas) - Neon Green */
.event-btn-entradas {
    background-color: #40ff43;
    color: #000000;
    border: 1px solid #40ff43;
    box-shadow: 0 4px 15px rgba(64, 255, 67, 0.3);
}

.event-btn-entradas:hover {
    background-color: transparent;
    color: #40ff43;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 255, 67, 0.4);
}

/* Botón Secundario (Barra) - Outline Neon Green */
.event-btn-barra {
    background-color: transparent;
    color: #40ff43;
    border: 1px solid #40ff43;
}

.event-btn-barra:hover {
    background-color: #40ff43;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(64, 255, 67, 0.4);
}


/* Ajustes Mobile */
@media (max-width: 480px) {
    .event-card-title {
        font-size: 1.6rem;
    }

    .event-card-content {
        padding: 20px;
    }
}