/* styles.css */

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Estilos del encabezado */
header {
    background-color: #1db954;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 10px 0 0 0;
    font-size: 1.2em;
}

/* Estilos del menú de filtros */
nav#country-filter {
    background-color: #222;
    padding: 10px;
    text-align: center;
    overflow-x: auto;
    white-space: nowrap;
}

nav#country-filter button {
    background-color: #1db954;
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

nav#country-filter button:hover {
    background-color: #17a44d;
}

/* Estilos del contenedor principal */
main {
    padding: 20px;
}

/* Estilos de los conciertos */
.concert {
    background-color: #282828;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.concert:hover {
    transform: scale(1.02);
}

.concert h2 {
    margin-bottom: 10px;
    font-size: 1.8em;
}

.concert p {
    margin: 5px 0;
    font-size: 1em;
}

.share-buttons {
    margin-top: 15px;
}

.share-button {
    background-color: #1db954;
    border: none;
    color: white;
    padding: 10px 15px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.share-button:hover {
    background-color: #17a44d;
}

/* Estilos del pie de página */
footer {
    background-color: #1db954;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    color: #ffffff;
    font-size: 1em;
}

#visitor-count {
    font-weight: bold;
}

/* Responsividad */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8em;
    }

    nav#country-filter button {
        font-size: 0.9em;
        padding: 8px 12px;
    }

    .concert {
        margin: 15px auto;
        padding: 15px;
    }

    .concert h2 {
        font-size: 1.5em;
    }

    .share-button {
        font-size: 0.9em;
        padding: 8px 12px;
    }

    footer {
        font-size: 0.9em;
        padding: 8px 0;
    }
}
