/* Reset basique */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fond et header */
body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

header {
    background: url('jardin.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    position: relative;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Ombre sur l'image */
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

p {
    font-size: 20px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #28a745;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #218838;
}

/* Section contact */
.contact {
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin: 5px 0;
}

.contact a {
    color: #28a745;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}