* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Gopher-Bold';
    src: url('fonts/Gopher-Bold.woff') format('woff');
    font-weight: bold;
    font-style: bold;
}


body {
    font-family: 'Gopher-Bold', sans-serif;
    line-height: 1.6;
    color: #007D34;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: #F5EFDB;
    }

.content {
    flex: 1;
    padding: 20px;
}

.section {
    padding: 20px;
    text-align: center;
}

.hero {
    background: url('img/feveroles.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 0px 0px 35%;
    border-bottom: #007D34 3px solid;
}

.hero-content {
    padding: 20px;
    margin-top: 0;
    border-radius: 0px;
    background-color: #007D34;
}

.container {
    position: relative;
    width: 100%;
    height: 100%; /* Hauteur du conteneur */

}
.hero-logo {
    max-height: 100px;
    position: absolute;
    top: 60%; /* Coordonnée Y */
    left: 80%; /* Coordonnée X */
}


.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 10px;
    text-align: left;
    line-height: 5rem;
}

.contact-mail {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    background-color: #4CAF50;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
}

.description {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-bottom: #007D34 3px solid;
}

.description h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #007D34;
}

.features {
    background-color: #F5EFDB;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature {
    margin: 10px;
    padding: 20px;
    position: relative;
    top: -80px;
    
}

.feature h3 {
    background-color: #fff;
    color: #007D34;
    padding: 10px;
    border-radius: 30px;
    border: #007D34 3px solid;
    display: inline-block;
    margin-bottom: 10px ;
    
}

.beige {
    background-color: #F5EFDB;
    padding-bottom: 5%;
}

.beige img {
    max-height: 350px;
    padding-left: 20%;
}

.footer {
    background-image:url(img/trame-points.png);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 70px;
    position: sticky;
    bottom: 0;
    width: 100%;
}

.feature-footer {
    margin-left: 10px;
    padding: 20px;
    position: relative;
    top: -28px;
    
}


.mail-button:hover {
    background-color: #45a049;
    color:#fff;
}

.copyright {
    padding: 10px;
}

.newsletter-button {
    background-color: #fff;
    color: #007D34;
    padding: 10px;
    border-radius: 30px;
    border: #007D34 3px solid;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 10px;
}

.newsletter-form {
    display: none;
    margin-top: 20px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: #007D34 3px solid;
    border-radius: 5px;
}

.newsletter-form input[type="submit"] {
    background-color:#007D34;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.newsletter-form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Responsive Design */
@media (min-width: 600px) {
    .features {
        flex-direction: row;
        justify-content: space-around;
    }

    .feature {
        width: 30%;
    }
}
