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: background-color:rgba(204, 186, 149, 1);
  color:black;

  
}

html{
    background-color: background-color:rgba(204, 186, 149, 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;
    min-width: 40vw;
    max-width: 80vw;
    background-color: #3c3c3c; /* Gris charbon chaleureux */
    color: #f5f5f5; /* Texte clair pour un bon contraste */
    border: none;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    text-align: left;
    font-family: 'Roboto', sans-serif;
}


table {
    width: 100%;
    border-spacing: 0 15px; /* Espacement entre les lignes */
}

td {
    padding: 8px 15px;
}

label {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ced4da; /* Bordure gris clair */
    border-radius: 5px;
    background-color: #f8f9fa; /* Fond gris très clair */
    color: #343a40; /* Texte gris foncé */
    box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

input:focus, select:focus {
    border-color: #4caf50; /* Accent vert */
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4caf50; /* Vert moderne */
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #43a047; /* Vert plus foncé */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}



.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: black;
    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;
            
  }


    .containerR {
        min-width: 80%;
        max-width: 90%;
        padding: 20px;
    }
    label{
        font-size: 16px;
    }
    input, select {
        font-size: 12px;
        padding: 8px;
    }
    button {
        font-size: 14px;
    }


}
  