.lieu-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    background-image: url('../images/banniere.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.lieu-hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
}

.lieu-hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.page-content {
    margin-top: 61vh !important;
    background-color: white;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    border: 4px solid var(--purple-primary);
    border-radius: 10px;
    box-sizing: border-box;
}

.section-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.section-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.lieu-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-block {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--light-color);
}

.info-icon {
    color: var(--purple-primary);
    margin-right: 0.5rem;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
}

textarea.form-control {
    min-height: 150px;
}

.map-container {
    height: 400px;
    margin-bottom: 2rem;
    border-radius: 5px;
    overflow: hidden;
}

.map-container iframe {border:0;}

@media (max-width: 1024px) {
    .lieu-gallery {grid-template-columns: repeat(2, 1fr);}
    .info-blocks {grid-template-columns: 1fr;}
}

@media (max-width: 768px) {
    .lieu-gallery {grid-template-columns: 1fr;}
}
