
/* General */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0d0d0d;
    color: #929194;
    background: url('eventos/dom.webp') center/cover no-repeat fixed;
}

h1, h2, h3 {
    margin: 0;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;

    background: url('eventos/hero2.webp') center/cover no-repeat;
    background-size: 100%;
    background-position: center 0px;

    display: flex;
    align-items: center;
    justify-content: center;

    
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}


.hero h1 {
    font-size: 4rem;
    background: linear-gradient(90deg, #ff0066, #6600ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: -360px;
}


.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff0066;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #cc0052;
}

/* Sections */
.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* Player card */
.player-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255,0,102,0.2);
}

/* Grid cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.event-card:hover {
    transform: translateY(-25px) scale(1.35) rotate3d(1, 1, 0, 8deg);
    box-shadow:
        0 0 30px #ff0066,
        0 0 60px #ff0066,
        0 0 90px #ff0066;
    border-color: #ff0066;
}

.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #333;
}

.card:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: #ff0066;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    margin-top: 40px;
}

.spotify-player {
    background: #181818;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow:
        0 8px 20px rgba(0,0,0,0.6),
        0 0 20px rgba(0,157,255,0.4);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.spotify-player .info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spotify-player .cover {
    width: 70px;
    height: 70px;
    background-image: url('eventos/boton.webp');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow:
        0 0 10px rgba(255,255,255,0.8),
        0 0 20px rgba(255,255,255,0.6);
}

.spotify-player h3 {
    margin: 0;
    font-size: 1.2rem;
}

.spotify-player p {
    margin: 0;
    color: #bbb;
    font-size: 0.9rem;
}

.controls {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.controls button {
    background: #1db954;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

.controls button:hover {
    background: #17a446;
}

.wave-container {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 20px;
    margin-top: 5px;
}

.wave {
    width: 4px;
    height: 5px;
    background: #1db954;
    border-radius: 2px;
    animation: bounce 1s infinite ease-in-out;
    opacity: 0.8;
}

.wave:nth-child(1) {
    animation-delay: 0s;
}
.wave:nth-child(2) {
    animation-delay: 0.2s;
}
.wave:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0% { height: 5px; }
    50% { height: 20px; }
    100% { height: 5px; }
}

.wave.paused {
    animation-play-state: paused;
    height: 5px !important;
}

.volume-control {
    position: relative;
    z-index: 9999;
}

.volume-control input[type="range"] {
    position: relative;
    z-index: 9999;
}


.volume-control input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: #1db954;
    border-radius: 50%;
    cursor: pointer;
}

/* EVENTOS */
#events h2 {
    text-align: center;
    margin-bottom: 20px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 por línea */
    gap: 25px;
    margin-top: 20px;
}


.event-card {
    background: transparent;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: none;
    border: 0px solid transparent;
    transition: box-shadow 0.25s ease, border-color 0.25s ease; /* ← SIN transform */
}

.event-card:hover {
    transform: none !important; /* ← por si acaso */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0);
    /*border-color: #ff0066fb;*/
}

.event-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
}




.event-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
}

@keyframes heroMove {
    0% {
        background-position: left center;
    }
    100% {
        background-position: right center;
    }
}

#about {
    display: none;
}

#schedule {
    display: none;
}

/* GALERÍA */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 por fila */
    gap: 20px;
    margin-top: 20px;
}


.galeria-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.galeria-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

@keyframes neonPulseBlue {
    0% {
        text-shadow:
            0 0 8px #4fc3ff,
            0 0 16px #4fc3ff,
            0 0 32px #009dff;
    }
    50% {
        text-shadow:
            0 0 16px #9fe6ff,
            0 0 32px #00b7ff,
            0 0 48px #00b7ff;
    }
    100% {
        text-shadow:
            0 0 8px #4fc3ff,
            0 0 16px #4fc3ff,
            0 0 32px #009dff;
    }
}

#player h2,
#events h2,
#galeria h2,
.hero-content h1 {
    color: #4fc3ff;
    text-shadow:
        0 0 8px #4fc3ff,
        0 0 16px #4fc3ff,
        0 0 32px #009dff;
    animation: neonPulseBlue 2s ease-in-out infinite;
}

.galeria-grid video {
    
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.galeria-grid video:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

