* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #111;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 40px 0;
}

#Img_Profil {
    width: 10%
}

header {
    background-color: #111;
    padding: 15px 0;
    position: sticky;
    top: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between; /* Le titre et le menu sont de chaque côté */
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 1.8em;
    color: #fff;
    font-weight: bold;
    margin-right: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end; /* Pousse les éléments du menu vers la droite */
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fdd835;
}

nav ul li a:focus, nav ul li a:hover {
    outline: none;
    color: #fdd835;
}

header h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
    margin-bottom: 20px;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
    color: #ccc;
}

h2 {
    color: #fdd835;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-block;
    background: #fdd835;
    color: #111;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #fff000;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #aaa;
}

#about {
    background-color: #222;
    padding: 40px 0;
}

p {
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: white;

}

/* Responsive : Menu pour écrans plus petits */
@media (max-width: 768px) {
    .nav-container {
        align-items: flex-start;
    }

    h1 {
        font-size: 2em; /* Taille du titre réduite sur petits écrans */
        margin-right: 0;
        margin-bottom: 10px;
    }

    nav ul {
        display: block; /* Le menu devient une liste verticale */
        text-align: left;
    }

    nav ul li {
        margin: 10px 0; /* Ajoute de l'espace entre les éléments du menu */
    }

    nav ul li a {
        font-size: 1.1em; /* Réduit légèrement la taille de la police sur petits écrans */
    }
}

/* Responsive : Pour très petits écrans (mobiles) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.6em; /* Taille du titre encore plus petite sur mobiles */
    }

    nav ul li a {
        font-size: 1em; /* Police encore plus petite */
    }
}




/* Sections Galerie et Contact */
#gallery {
    background-color: #222;
    padding: 40px 0;
}

#gallery h2 {
    color: #fdd835;
    margin-bottom: 20px;
}

.gallery-grid {
    /*//display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

#contact {
    background-color: #222;
    padding: 40px 0;
}

#contact h2 {
    color: #fdd835;
    margin-bottom: 20px;
}

#contact .btn {
    display: inline-block;
    background: #fdd835;
    color: #111;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

#contact .btn:hover {
    background: #fff000;
}

/* Style pour le calendrier */
table.calendar-table {
    margin: 20px auto;
}

.calendar-table th,
.calendar-table td {
    text-align: center;
    padding: 25px; /* Augmentation de l'espace dans chaque cellule */
    border: 1px solid #444;
    font-size: 1.2em; /* Taille de la police plus grande pour plus de lisibilité */
}

.calendar-table th {
    background-color: #333;
    color: #fdd835;
    font-weight: bold;
    font-size: 1.4em; /* Taille du texte dans les en-têtes */
}

.calendar-table td {
    background-color: #222;
}

.calendar-table td:hover {
    background-color: #444;
    cursor: pointer;
}

/* Ajout d'un peu de style pour un meilleur visuel */
.calendar-table tr:first-child td {
    border-top: none; /* Supprimer la bordure du haut de la première ligne */
}

.DivParent1 {
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
}

.DivParent2{
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.DivEtiquette{
    margin-top: 5%;
    width: auto;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    align-items: flex-start;
    display: grid;
}

.étiquette{
    min-width: 0;
    color: #fff;
    text-align: left;
    background-color: #1a1b20;
    border: 2px solid #1a1b20;
    border-radius: 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px;
    text-decoration: none;
    transition: border-color .3s;
    display: flex;
}

.Img_Contact {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}
.étiquette:hover{
    transform: scale(1.05);
    background-color: #fdd835;
    h2{
        color: #111;
    }
    h3{
        color: #0053d7;
    }
}

#Titre_Calendrier{
    color: #fdd835;
    margin-bottom: 20px;
}

footer {
    bottom: 0;
    width: 100%;
    position: fixed;
    text-align: center;
    padding: 20px;
    background: #222;
    color: #aaa;
}

