body {
    margin: 0;
    font-family: 'Georgia', serif;
    background:
        radial-gradient(circle at top, #1a1a1a 0%, #0b0b0b 60%),
        repeating-linear-gradient(
            45deg,
            rgba(212,175,55,0.04),
            rgba(212,175,55,0.04) 1px,
            transparent 1px,
            transparent 12px
        );
    color: #f3e6c9;
}
.top-menu {
    background: black;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid gold;
}

.top-menu a {
    color: gold;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
}

.top-menu a:hover {
    color: #fff;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 60px;
    letter-spacing: 5px;
}

.hero h2 {
    font-size: 24px;
    margin-top: 10px;
}

.photos-accueil {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 0 100px;
    flex-wrap: wrap;
}

.photos-accueil img {
    max-width: 420px;     /* photos bien grandes */
    width: auto;
    height: auto;         /* RESPECT DU RATIO ORIGINAL */
    aspect-ratio: auto;
    object-fit: initial;
    border: 5px solid #d4af37;
    padding: 8px;
    background: black;
    box-shadow: 0 0 25px rgba(212,175,55,0.35);
    transition: transform 0.4s ease;
}
.photos-accueil img:hover {
    transform: scale(1.04);
}

/* Petit effet chic au survol */
.photos-accueil img:hover {
    transform: scale(1.05);
}
.content {
    max-width: 900px;
    margin: auto;
    padding: 40px;
}

/* Photo "nous.jpg" en 2x plus grande sur la page d'accueil */
.photos-accueil img[src*="Images\2Nous.jpg"] {
    width: 2000px;   /* 2 x 420px */
    height: 2000px;
}

.programme li {
    margin: 15px 0;
    font-size: 18px;
}

.programme {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.programme-item {
    padding: 25px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;

    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #d4af37;
    position: relative;
}

/* Coins décoratifs Art Déco */
.programme-item::before,
.programme-item::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #d4af37;
}

.programme-item::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.programme-item::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.content, .hero {
    background: rgba(0,0,0,0.65);
    border: 2px solid #d4af37;
    padding: 50px;
    margin: 60px auto;
    max-width: 900px;
    position: relative;
}
.content::before,
.content::after,
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #d4af37;
}

.content::before, .hero::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.content::after, .hero::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}
h1, h2, h3 {
    text-align: center;
    color: #d4af37;
    letter-spacing: 4px;
    text-transform: uppercase;
}

h1 {
    font-size: 56px;
}

h2 {
    font-size: 32px;
    margin-bottom: 30px;
}
.top-menu {
    background: linear-gradient(to right, #000, #111, #000);
    border-bottom: 1px solid #d4af37;
}

.top-menu a {
    color: #d4af37;
    margin: 0 25px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 3px;
}

.top-menu a:hover {
    color: white;
}

@media (max-width: 900px) {
    .photos-accueil img {
        width: 90%;
    }
}

.infos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.infos-item {
    padding: 30px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #d4af37;
    position: relative;
}

/* Coins décoratifs Gatsby */
.infos-item::before,
.infos-item::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #d4af37;
}

.infos-item::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.infos-item::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.infos-item h3 {
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    
    border: 2px solid #d4af37;
    padding: 30px;
    background: rgba(0,0,0,0.65);
}

.infos-item a {
    color: #d4af37;
    text-decoration: none;
}

.infos-item a:hover {
    color: white;
}

.galerie {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 photos par ligne */
    gap: 20px;
    max-width: 900px;     /* LIMITE LA LARGEUR TOTALE */
    margin: 40px auto;
}

.galerie img {
    width: 100%;
    height: 200pw;
    'max-height: 260px;
    border: 3px solid #d4af37;
    padding: 6px;
    background: black;
    box-shadow: 0 0 15px rgba(212,175,55,0.25);
}
@media (max-width: 1000px) {
    .galerie {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 600px) {
    .galerie {
        grid-template-columns: 1fr;
    }
}
/* ===== LIGHTBOX ===== */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #d4af37;
    background: black;
}

#lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #d4af37;
    cursor: pointer;
}

#lightbox .prev,
#lightbox .next {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: #d4af37;
    cursor: pointer;
    user-select: none;
}

#lightbox .prev { left: 30px; }
#lightbox .next { right: 30px; }


footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid gold;
    font-size: 14px;
}
