* {
    box-sizing: border-box;
    text-decoration: None;
}

body {
    font-size: 14px;
    font-family: Merriweather, serif;
    margin: 0;
    padding: 0;
}

.page {
    width: 100%;
    background: rgba(255, 255, 255, 1);
    opacity: 1;
    overflow: hidden;
}

/* General section styling */
.projects-section {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.projects-section__title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-brand-color);
}

/* Map container section */
.map_container {
    margin: 20px auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.map_container h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: rgba(0, 38, 84, 1);
}

iframe {
    border: 0;
    width: 100%;
    height: 450px;
    max-width: 100%;
    border-radius: 10px;
}

/* Environment section */
.Environement {
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.Environement h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: rgba(0, 38, 84, 1);
}

.images_envi {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between images */
    justify-content: center;
}

.image_envi {
    flex: 1 1 calc(50% - 20px); /* Two images per row */
    max-width: calc(50% - 20px);
    aspect-ratio: 16 / 9; /* Maintains the aspect ratio of the images */
    background-size: cover;
    background-position: center;
    border-radius: 10px; /* Optional: Rounded corners */
}

/* Projects gallery section */
.projects-gallery__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.projects-gallery__item {
    flex: 1 1 300px; /* Allow items to grow and shrink from a 300px base */
    max-width: 400px; /* Limit the maximum size */
    height: 225px; /* Set an explicit height */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

/* Image IDs */
#project-image-1 {
    background-image: url("../../images/projets/envi_1.png");
}
#project-image-2 {
    background-image: url("../../images/projets/envi_2.png");
}
#project-image-3 {
    background-image: url("../../images/projets/envi_3.png");
}