/* Mode sombre à nono*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

header {
    background-color: #1a1a1a;
    color: #ff6b6b;
    text-align: center;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

h1 {
    margin: 0;
    font-size: 1.8rem;
}

nav.days {
    background-color: #1e1e1e;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem;
    position: sticky;
    top: 60px;
    z-index: 99;
}

nav.days a {
    color: #4ecdc4;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: rgba(78, 205, 196, 0.1);
}

nav.days a:hover {
    background-color: rgba(78, 205, 196, 0.2);
}

nav.places {
    position: fixed;
    top: 120px;
    left: 0;
    width: 140px;
    background-color: #2a2a2a;
    padding: 0.5rem 0;
    z-index: 98;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 4px rgba(0,0,0,0.3);
}

nav.places a {
    display: block;
    color: #ff9ff3;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

nav.places a:last-child {
    border-bottom: none;
}

nav.places a:hover {
    background-color: rgba(255, 159, 243, 0.2);
}

/* Responsive : 1 à 3 colonnes selon la taille de l'écran */
.day {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    background-color: #1e1e1e;
    margin: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    overflow: hidden;
    padding: 1rem;
}

/* Tablettes et grands téléphones en paysage */
@media (min-width: 600px) {
    .day {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Grands écrans */
@media (min-width: 900px) {
    .day {
        grid-template-columns: repeat(3, 1fr);
        margin-left: 150px;
    }
}

/* Ajustement pour la carte et le menu des jours */
nav.places {
    display: none;
}

@media (min-width: 900px) {
    nav.places {
        display: block;
    }
}

#map-image {
    margin-left: 1rem;
}

@media (min-width: 900px) {
    #map-image {
        margin-left: 150px;
    }
}

.day-header {
    background-color: #4ecdc4;
    color: #121212;
    padding: 0.8rem;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
}

.show {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.show:last-child {
    border-bottom: none;
}

.show-image img{
    width: 100%;
   /* height: 150px;*/
}
.show-image {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin-bottom: 0.8rem;
    border-radius: 4px;
}

.show-details {
    flex: 1;
}

.show-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0.3rem 0;
    color: #fff;
    text-transform: uppercase;
}

.show-company {
    font-style: italic;
    color: #aaa;
    margin: 0.3rem 0;
}

.show-time-location {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.show-time {
    font-size: 1rem;
    font-weight: bold;
    color: #ff6b6b;
}

.show-location {
    font-size: 1rem;
    font-weight: bold;
    color: #4ecdc4;
}

.show-description {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    color: #ccc;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #aaa;
    font-size: 0.9rem;
    margin-left: 150px;
}
#compteur a img {
	display: none;
}
