/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
    color: #8e1830;
    line-height: 1.6;
}

/* Header avec les 3 SVG */
header {
    background-color: #fff; /* Fond kaki comme le reste */
    padding: clamp(1rem, 2vw, 2rem) 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* gap: 1rem; */
}

.header-logo {
    width: auto;
     max-width: 300px;
}

.header-tag-line {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.05rem;
}



/* Section Adresse */
.adresse {
    text-align: center;
    padding: 3rem 1rem 1rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.adresse h2 {
    font-size: 2rem;
    color: #8e1830;
}

.adresse p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Contact info (tel) */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.contact-tel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background-color: rgba(255, 255, 255, 1);
    color: #8e1830;
    border: 2px solid #8e1830;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.contact-tel:hover {
    background: #8e1830;
    color: #fff;
}

.contact-tel:hover .contact-icon {
    filter: brightness(0) invert(1);
}

/* Section Présentation */
.presentation {
    text-align: center;
    max-width: 920px;
    margin: 2rem auto;
    /* background-color: #ABC2BB; */
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

.presentation p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    text-align: center;
    margin: 0;
}

/* Galerie Photos */
.galerie {
    padding: 3rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}
.galerie:not(:has(.gallery-item)) {
    display: none;
}

.galerie h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #8e1830;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ABC2BB; /* Vert d'eau */
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    padding: 1rem;
    user-select: none;
    transition: color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #ABC2BB; /* Vert d'eau */
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}



/* Responsive */
@media (max-width: 768px) {
    .header-container {
        gap: 1rem;
    }
    
    .header-logo {
        max-width: 250px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 0.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}





@media (max-width: 480px) {

    .header-container {
        gap: 0.5rem;
    }   
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}



.bande-degrade {
    width: 100%;
    height: 20px;
    background: linear-gradient(to right, #dea03d 0%, #dea03d 25%, #cd5930 25%, #cd5930 50%, #c4372e 50%, #c4372e 75%, #8e1830 75%, #8e1830 100%);
}
/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #8e1830;
    margin-top: 3rem;
}

.footer p {
    font-size: 0.9rem;
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
}