/* Réinitialisation et polices */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #003b02;
    line-height: 1.6;
}

/* Header avec logo et navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #0b3a0c;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

header nav ul {
    display: flex;
    list-style-type: none;
}

header nav ul li {
    margin-right: 30px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #0b3a0c;
}

/* Bannière Fixe avec logo et CTA */
.banner {
    background: url('images/banner.jpg') no-repeat center center/cover;
    color: #003b02;
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.banner p {
    font-size: 20px;
    margin-bottom: 30px;
}

.banner .btn {
    background-color: #0b3a0c;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.banner .btn:hover {
    background-color: #0a2d08;
}

/* Catégories de produits */
.products {
    padding: 60px 30px;
    text-align: center;
}

.products h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.product img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.product p {
    font-size: 16px;
    margin-bottom: 15px;
}

.product .btn {
    background-color: #0b3a0c;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.product .btn:hover {
    background-color: #0a2d08;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer p {
    font-size: 14px;
}

/* Section Contact */
.contact {
    padding: 50px 30px;
    text-align: center;
    background-color: #0b3a0c;
    color: white;
}

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

.contact p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact .btn {
    background-color: white;
    color: #0b3a0c;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact .btn:hover {
    background-color: #0a2d08;
    color: white;
}
