body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #000000;
    color: #FFD700;
    margin: 0;
    padding: 0;
}

header img {
    width: 300px;
    margin-top: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
}

footer {
    background-color: #000000;
    color: #FFD700;
    text-align: center;
    padding: 10px;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}
.halal-logo-set {
    display: block;
    width: 15%; /* Rétrécit l'image à 50% de la largeur */
    max-width: 300px; /* Limite la taille maximale */
    margin: 0 auto; /* Centre l’image horizontalement */
}


footer a:hover {
    text-decoration: underline;
}

nav ul li {
    margin: 20px 0;
}

nav ul li a {
    text-decoration: none;
    font-size: 24px;
    color: #FFD700;
    font-weight: bold;
    padding: 20px;
    border: 2px solid #FFD700;
    display: inline-block;
    width: 250px;
    text-align: center;
    transition: 0.3s;
}

nav ul li a:hover {
    background-color: #FFD700;
    color: #000000;
}

section {
    margin-top: 30px;
}

.menu-category {
    margin: 20px auto;
}

.menu-category button {
    background-color: #FFD700;
    color: #000000;
    font-size: 22px;
    font-weight: bold;
    padding: 12px;
    border: none;
    cursor: pointer;
    width: 250px;
    border-radius: 5px;
    transition: 0.3s;
}

.menu-category button:hover {
    background-color: #000000;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.menu-items {
    display: none;
    margin-top: 10px;
}

.menu-items p {
    font-size: 18px;
    margin: 8px 0;
}
.menu-item {
    display: flex;
    align-items: center;
    justify-content: center
    gap: 15px;
}

.thumbnail {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    top: 15px;
    left: -10px;
    transition: transform 0.2s ease-in-out;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0; 
    transition: opacity 0.3s ease-in-out;
    pointer-events: none; 
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.large-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.zoom {
    transform: scale(1.5); /* Zoom sur l’image */
    transition: transform 0.3s ease-in-out;
}

.gallery-img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
}

}