
/* --- Galerie Photos --- */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 36, 68, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* --- Section "Signature Exprès" --- */
.signature-section {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Élément décoratif doré en arrière-plan */
.signature-bg-deco {
    position: absolute;
    top: -50px; right: -50px;
    width: 300px; height: 300px;
    border: 2px solid rgba(201, 169, 97, 0.1);
    border-radius: 50%;
}

.signature-card {
    background: rgba(255, 255, 255, 0.05); /* Glass effect sur fond sombre */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    padding: 3rem;
    border-radius: 4px;
}

.signature-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}
