/* evento.css */
/* Hero Section */
.concert-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('../img/banda/grupal.jpg') center/cover no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
}

.concert-hero h1 {
    font-size: 4rem;
    text-shadow: 0 0 15px var(--primary-color);
    margin-bottom: 1rem;
}

.concert-hero p {
    font-size: 1.5rem;
    font-family: var(--font-metal);
}

/* Next Concert Section */
.next-concert-section {
    background: linear-gradient(to right, #1a0000, #000000);
}

.next-concert-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 100%;
}

.concert-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 2;
    font-family: var(--font-metal);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.concert-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.8);
}

.concert-info {
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(26,1,1,0.9) 100%);
}

.concert-info h3 {
    color: var(--primary-color);
    font-family: var(--font-metal);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.concert-meta {
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #ddd;
}

.meta-item i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.concert-description p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Map Section */
.concert-map {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.concert-map h4 {
    color: var(--primary-color);
    font-family: var(--font-metal);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.concert-map h4 i {
    margin-right: 10px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-color);
}

.location-info h5 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.location-info p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

/* Upcoming Concerts */
.upcoming-section {
    background: linear-gradient(to bottom, #000000, #1a0000);
}

.concert-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.concert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.concert-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.7);
}

.concert-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--primary-color);
}

.concert-date-badge .day {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: var(--primary-color);
}

.concert-date-badge .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    display: block;
}

.concert-body {
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(26,1,1,0.9) 100%);
}

.concert-body h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-metal);
}

.concert-location, .concert-time {
    color: #ddd;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.concert-location i, .concert-time i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Past Concerts */
.past-concert-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.past-concert-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.past-concert-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.past-concert-card:hover .past-concert-overlay {
    transform: translateY(0);
}

.past-concert-card:hover img {
    transform: scale(1.1);
}

.past-concert-overlay h4 {
    color: white;
    font-family: var(--font-metal);
    margin-bottom: 0.5rem;
}

.concert-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: var(--font-metal);
}

/* Responsive */
@media (max-width: 992px) {
    .concert-hero h1 {
        font-size: 3rem;
    }
    
    .concert-main-img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .concert-hero {
        min-height: 40vh;
    }
    
    .concert-hero h1 {
        font-size: 2.5rem;
    }
    
    .concert-hero p {
        font-size: 1.2rem;
    }
    
    .next-concert-card, .concert-map {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .concert-hero h1 {
        font-size: 2rem;
    }
    
    .past-concert-card {
        height: 200px;
    }
}
/* Estilos para el botón Más Info */
.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    font-family: var(--font-metal);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: bold;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
    border-color: var(--primary-color);
}

/* Efecto neon al hacer hover */
.btn-outline-primary:hover {
    text-shadow: 0 0 5px #fff;
    box-shadow: 0 0 10px var(--primary-color),
                0 0 20px rgba(255, 0, 0, 0.3);
}

/* Versión pequeña para las cards */
.concert-body .btn-outline-primary {
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

/* Asegurar que los iconos tengan espacio */
.btn i {
    margin-right: 5px;
}