header {
    background-image: url("headerMC.png");
    background-size: cover; /* L'image couvre tout l'espace disponible */
    background-repeat: no-repeat; /* Évite que l'image se répète */
    background-position: center; /* Centre l'image */
    height: 30vh; /* Hauteur du header */
    margin: 0;
    margin-bottom: 0;
    width: 100%; /* S'assure que l'élément header occupe toute la largeur */
}
body{
    /*background-color:rgba(204, 186, 149, 1);*/
    background-color:rgba(64, 64, 64, 1);
    margin: 0;
    padding: 0;
    height: 100%;
           
}

    nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        background-color: #333;
        overflow: hidden;
    }

    nav ul li {
        display: inline-block;
    }

    nav ul li a {
        text-decoration: none;
        color: white;
        padding: 10px 15px;
        display: block;
    }

    nav ul li a:hover {
        background-color: #575757;
    }

section{
  position: absolute;
  margin: 0;
  
  
  
  width: 100vw;
  min-height: 100vh;
  height: auto;
  /*background-color: #8D5900;*/
    /*background-color:rgba(204, 186, 149, 1);*/
    background-color:rgba(64, 64, 64, 1);
  color:black;

  
}

html{
        /*background-color:rgba(204, 186, 149, 1);*/
    background-color:rgba(64, 64, 64, 1);
}

::-webkit-scrollbar {
  width: 5px;
  
  /*background-color: #342719;*/
  background-color: darkgrey;
}
 
/* Style pour le bouton de la barre de défilement */
::-webkit-scrollbar-thumb {
    background-color: rgba(150, 150, 150 , 1.0);
  /*background-color: #8A745D;*/
}
 
/* Style pour le coin de la barre de défilement */
::-webkit-scrollbar-corner {
  background-color: #F5F5F5;

}

/* Styles pour le menu */
      .menu {
        display: none; /* le menu est caché par défaut */
        position: absolute;
        top: 50px;
        left: 10px;
        width: 15%;
        background-color: #333;
        padding: 10px;
        box-sizing: border-box;
        text-align: center;
        border-radius: 10px;
        border: 2px solid gray;
        z-index: 10;
      }
      .menu li {
        margin: 10px;
       list-style: none;
      }

.menu a {
        color: #D3C58A;
        text-decoration: none;
        font-size: 16px;
      }



      .menu a:hover{
    text-decoration: underline;
    cursor: pointer;
}

      
      
      /* Styles pour le bouton hamburger */
      .hamburger {
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 9999;
        width: 40px;
        height: 40px;
        background-color: #333;
        border-radius: 5px;  
        align-items: center;
        justify-content: center;
        cursor: pointer;
      }
      .hamburger span {
        transform: translate(0px, 5px);
        width: 70%;
        height: 3px;
        background-color:  rgba(250, 240, 207 , 1.0);
        display: block;
        margin: 5px;
        transition: all 0.3s ease-in-out;
      }
header {
    background-image: url("headerMC.png");
    background-size: cover; /* L'image couvre tout l'espace disponible */
    background-repeat: no-repeat; /* Évite que l'image se répète */
    background-position: center; /* Centre l'image */
    height: 30vh; /* Hauteur du header */
    margin: 0;
    margin-bottom: 0;
    width: 100%; /* S'assure que l'élément header occupe toute la largeur */
}
body{
    background-color:rgba(204, 186, 149, 1);
    margin: 0;
    padding: 0;
    height: 100%;
           
}


@keyframes slideFromRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes slideFromLeft {
        from {
            transform: translateX(-100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content {
        background-color: black;
        padding: 10px;
        border-radius: 10px;
        width: 70vw;
        font-size: 24px;
        text-align: left;
        display: inline-block;
        vertical-align: middle;
        opacity: 0; /* Initial opacity set to 0 for animation */
    }

    .image {
        border-radius: 10px;
        width: 200px;
        height: auto;
        display: inline-block;
        vertical-align: middle;
        opacity: 0; /* Initial opacity set to 0 for animation */
    }

    .slideRight {
        animation: slideFromRight 2s forwards;
    }

    .slideLeft {
        animation: slideFromLeft 2s forwards;
    }

    .delayedAppear {
        animation-delay: 2s; /* Adjust delay time as needed */
    }

  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: left;
    padding-top: 2px;
    padding-bottom: 2px;
    height: auto;
    z-index: 999; /* Assurez-vous que le z-index est élevé pour s'assurer que le footer reste au-dessus du contenu */
}

  footer a {
    text-decoration: none;
    color: white;

  }
  footer a:hover {
    text-decoration: underline;
    
  }

  footer ul {

    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

footer ul li {
   margin-left: 20px;
    display: inline; /* Afficher les éléments en ligne */
    margin-right: 20px; /* Espace entre les éléments */
}

.calendar-container {
    font-family: Arial, sans-serif;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;

}

.month-navigation {
    text-align: center;
    margin-bottom: 20px;
}

#prevMonth,
#nextMonth {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    margin: 0 10px;
}

.calendar {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid black;
}

.day {
    width: calc(100% / 7);
    height: 100px;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    font-size: 25px;
    cursor: pointer;

}
.day span{
  z-index: 100;
    color: black;
    
}

.half {
    width: 100%;
    position: absolute;
}

.morning {
    height: 50%;
    top: 0;
    background-color: darkgreen;
}

.afternoon {
    height: 50%;
    bottom: 0;
    background-color: darkgreen;
}

.enseigne{
    position:absolute;
    padding:8px;
    border-radius:10px;
    left:30px;
    top: 10vh; 
    transform: translateY(-50%); 
    background-color: black;
    color: white; 
    font-size:35px; 
    margin-top:0; 
    margin-bottom: 0; 
    margin: 0; 
    font-family: 'Sacramento', cursive;
}

  .phoneonly {
        display: none;
    }

    .phone-layout {
        display: flex;
        flex-wrap: wrap;
    }

    .phone-layout img {
    flex: 0 1 auto;
}




.wrap{
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    flex-direction: row;
}
    
.zoom {
  transition: transform .2s;
}

.zoom:hover {
  transform: scale(1.1);
}

.Vignettebis {

    


    background-color: #333;
    
    display: inline-block;
    
    height: auto;
    max-height: 280px;
    
}

.containerR {
    display: inline-block; /* Rend le conteneur aussi large que son contenu */
    min-width: 40vw; /* Largeur minimale pour garantir de l'espace */
    max-width: 80vw; /* Largeur maximale pour limiter l'expansion */
    height: auto;
    font-weight: bold;
    border: 2px solid black;
    border-radius: 20px;
    background-color: #333;
    color: #F7DC6F;
    padding: 20px; /* Ajout de padding pour l'espacement interne */
    margin: 0 auto; /* Centre le conteneur horizontalement */
    box-sizing: border-box; /* Inclut les bordures et le padding dans la largeur totale */
    text-align: left; /* Assure que le texte est aligné à gauche */
}

table {
    width: 100%; /* Utilise toute la largeur disponible dans le conteneur */
    border-spacing: 0 10px; /* Ajout d'espacement entre les lignes du tableau */
}

td {
    padding-left: 15px;
    padding-bottom: 8px;
    padding-top: 8px; /* Ajout de padding en haut des cellules */
}

label {
    text-align: center;
    color: #F7DC6F;
    font-weight: bold;
}

.td1 {
    text-align: right;
}
input{
    width: 80%;
}

.days-of-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}
.days-of-week div {
    background-color:  #2980b9;
    color: white;
    padding: 5px 0;
    border-radius: 5px;
    font-size: 14px;
}




@media (max-width: 767px) {
      .phoneonly {
        display: block;
    }

    .phone-layout img {
        flex: 1 1 50%; /* Ajuster la largeur à 50% pour s'assurer qu'elles restent côte à côte */
        max-width: 50%; /* Limiter la largeur maximale à 50% pour chaque image */
    }

  .container {
        display: initial;
        justify-content: center;
        align-items: center;
    }

    .content {
        background-color: black;
        padding: 10px;
        border-radius: 10px;
        width: 95vw;
        font-size: 16px;
        text-align: justify;
        height: auto;
        overflow: auto;
        vertical-align: middle;
        opacity: 0; /* Initial opacity set to 0 for animation */
    }

    .image {
        border-radius: 10px;
        width: 200px;
        height: auto;
        
        vertical-align: middle;
        opacity: 0; /* Initial opacity set to 0 for animation */
    }


        .slideRight {
        animation: slideFromRight 2s forwards;
    }

    .slideLeft {
        animation: slideFromLeft 2s forwards;
    }

    .delayedAppear {
        animation-delay: 2s; /* Adjust delay time as needed */
    }

    .enseigne{
        left: 50%;
        transform: translate(-50%);

    }

    .containerR {
        width: 95%;
    }
    input{
    width: 90%;
}

}



@media (max-width: 767px) {
header {
    background-image: url("headerMCphone.png");
    height: 140px;
            
  }
  