/* Estilos específicos para la card de evento y sector eventos */

/* Copiado y unificado de static.css y eventos-card.css */

.event-card {
    display: flex;
    flex-direction: column;
    background-color: black;
    background: radial-gradient(circle at top left, #111 40%, #222 80%, #000 100%);
    color: #fff;
    border: none;
    border-radius: 0;
    position: relative;
    width: 100%;
    min-height: 260px;
    max-width: 320px;
    min-width: 220px;
    padding: 0 !important;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.event-card .event-card-logo {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    left: 0;
    top: 0;
    transform: none !important;
    margin-bottom: 1rem;
}
.event-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0 !important;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}
.event-card-disciplina {
    object-fit: contain;
    margin-top: -32px;
}
.event-card-pais {
    object-fit: contain;
    margin-top: -24px;
    margin-right: 64px !important;
}
.event-card-disciplina img {
    width: 56px;
    height: 56px;
    background: none;
}
.event-card-pais img {
    width: 48px;
    height: 40px;
    background: none;
}
.event-card-content {
    margin-left: 0 !important;
    margin-right: 0;
    padding-top: 32px;
    padding-bottom: 24px;
}
.event-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}
.event-card-date, .event-card-location, .event-card-discipline, .event-card-org, .event-card-crono {
    color: #e0e0e0;
    font-size: 1rem;
}
.event-card-desc {
    color: #bdbdbd;
}
.event-card-contacts {
    padding-bottom: 24px;
}
.event-card-contact img {
    width: 32px;
    height: 32px;
}
.event-card-contact:hover {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    text-decoration: none;
}
.event-card-actions {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.event-card-actions .btn {
    background: #FA6900;
    color: white;
    width: 90%;
    margin: 0 0 5% 5%;
}
.event-card-actions .btn:hover {
    background: #FA6900;
}
.event-card-actions a:first-child {
    margin-bottom: 16px;
}

.btn-pais, .btn-disciplina {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: radial-gradient(circle at top left, #111 40%, #222 80%, #000 100%);
    margin: 0 10px;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.btn-pais:hover, .btn-disciplina:hover {
    transform: scale(1.05);
    background: black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.btn-pais a, .btn-disciplina a {
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    color: white;
}

.btn-pais a:hover, .btn-pais a:focus, .btn-disciplina a:hover, .btn-disciplina a:focus {
    transform: scale(1.05);
    background: #222;
    color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    border-color: #222;
}

.btn-pais img, .btn-disciplina img {
    max-height: 48px;
    margin-bottom: 8px;
}

.eventos-header-actions {
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
}
.eventos-header-actions .btn {
    background: #FA6900;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.eventos-header-actions .btn:hover, .eventos-header-actions .btn:focus {
    background: #ff8c1a;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.eventos-header-actions .btn-outline-primary {
    background: #FA6900;
    color: #fff;
    border: none;
}
.eventos-header-actions .btn-outline-primary:hover, .eventos-header-actions .btn-outline-primary:focus {
    background: #ff8c1a;
    color: #fff;
    border: none;
}

.eventos-meses-nav {
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}
.eventos-meses-nav .btn {
    background: transparent;
    color: #FA6900;
    border: 1.5px solid #FA6900;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
.eventos-meses-nav .btn:hover, .eventos-meses-nav .btn:focus {
    background: #ff8c1a;
    color: #fff;
    border-color: #ff8c1a;
}
.eventos-meses-nav .btn.active, .eventos-meses-nav .btn.fw-bold {
    background: #FA6900;
    color: #fff;
    border-color: #FA6900;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

@media (min-width: 992px) {
    .event-card-list {
        display: flex;
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {
    .event-card-content {
        margin-left: 0;
        margin-right: 0;
    }
    .event-card-logo {
        left: 0;
        top: 0;
        transform: none;
    }
    .event-card-contacts {
        right: 0.2rem;
    }
    .event-card {
        max-width: 100%;
        min-width: 0;
    }
}
