* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.navbar .nav-link {
    color: #000 !important;
    font-weight: 600;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    text-shadow: 3px 4px 6px rgba(0, 0, 0, 0.75);
    transform: translateY(-4px);
}

/* Footer stylé */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
}


.gallery-grid {
    width: 100%;
}

.gallery-card {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px; /* marge verticale */
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* garde les proportions et remplit la card */
    display: block;
}

.gallery-card:hover img {
    transform: scale(1.05);
}