.bienvenue {
    display :block;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)), 
    url('images/Topo.webp');

    background-size:cover; /* Ajuste l'image pour qu'elle couvre tout le bloc */
    background-position: center; /* Centre l'image */
    background-repeat: no-repeat; /* Empêche la répétition */
    background-attachment: fixed;
    opacity: var(--Opacity);
    padding-right: 2%;
    padding-left: 2%;
    
    border-radius: 20px;
}


/* Conteneur du contenu */
.golden-hour-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 100%;
    margin-top: 25px;
    
    padding: 1%;
    background-color: var(--FondColor2);  /* Fond gris foncé */
    border-radius: 15px;
    text-align: center;
    
}

/* Style du titre */
h1 {
    color: var(--TextColor); /* Jaune doré */
}

/* Carte Leaflet */
#map {
    height: 400px;
    width: 80%;
    border-radius: 15px;
    margin-top: 10px;
}

/* Style du texte des horaires */
#golden-hour {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    color: var(--TextColor);  /* Texte doré */
}

.Time {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width:80%;
    padding-left: 2%;
    padding-right: 2%;
}

#saveToCalendar {
    padding: 12px;
    margin-top: 0%;
    margin-bottom:2%;
    font-family: var(--PoliceText);
    
    background: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.1s ease-in-out;
}


#saveToCalendar:hover {
    background: #0056b3;
    
}

#myID {
    text-align: center; /* ou left, right */

    padding: 12px;
    margin-top: -1%;
    margin-bottom:2%;
    font-family: var(--PoliceText);
    
    background: #007bff;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.1s ease-in-out;
  }

  #myID:hover {
    background: #0056b3;
  }

  .flatpickr-calendar {
    font-family: 'Arial', sans-serif; /* ou n'importe quelle police */
  }

  .flatpickr-day {
    font-size: 16px; /* Ajustez la taille de la police ici */
  }

  #selectedDate {
    visibility: hidden;
    font-size: 0;
  }

@media screen and (max-width: 900px) {
    .bienvenue {
        background: linear-gradient(rgba(0, 0, 0, 0.8),rgba(0, 0, 0, 0.8)), 
        url('images/Topo_50.webp');
        background-attachment: scroll;
    }
    
    .Time {
        flex-direction: column;
    }

    #map {
        height: 400px;
        width: 95%;
    }
}

