


/* Style général */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: white;
    color: black;
}

h2 {
    font-size: 25px;
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bloc2 {
    width: 90vw;
    margin: auto;
    padding: 40px 0;
}

/* Navigation */
nav {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    list-style: none;
}

nav li {
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Images et galeries */
.sous_gallerie {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.image-container {
    position: relative;
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-container .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.image-container:hover .info {
    opacity: 1;
}

/* Témoignages */
blockquote {
    font-style: italic;
    margin: 20px auto;
    width: 80%;
    padding: 10px;
    background: #f0f0f0;
    border-left: 5px solid #4E6597;
}

/* Section Engagement Écoresponsable */
#eco {
    background: #E7F3FA;
    padding: 40px 0;
}

/* Section Processus */
#process ol {
    text-align: left;
    display: inline-block;
    margin: auto;
    padding: 20px;
}

/* Formulaire de devis */
form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 15px;
    background: #4E6597;
    color: white;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #82CEEF;
}


/* Styles généraux */
body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: white;
    color: black;
}

h2 {
    font-size: 25px;
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bloc2 {
    width: 90vw;
    margin: auto;
    padding: 40px 0;
}

/* Navigation */
nav {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    list-style: none;
}

nav li {
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Sections */
section {
    padding: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccc;
}

/* Témoignages */
blockquote {
    font-style: italic;
    margin: 20px auto;
    width: 80%;
    padding: 10px;
    background: #f0f0f0;
    border-left: 5px solid #4E6597;
}

/* Engagement Écoresponsable */
#eco {
    background: #E7F3FA;
    padding: 40px 0;
}

/* Processus */
#process ol {
    text-align: left;
    display: inline-block;
    margin: auto;
    padding: 20px;
}

/* Formulaire de devis */
form {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 15px;
    background: #4E6597;
    color: white;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #82CEEF;
}

/* Responsiveness */
@media screen and (max-width: 768px) {
    form {
        width: 80%;
    }
    
    nav ul {
        flex-direction: column;
    }
}