/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: #333;
}

.header {
    position: fixed;
    width: 100%;
    background: #006400; /* vert foncé */
    color: #FFD700; /* doré */
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    z-index: 10;
}

.header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
}

.hero h1 {
    font-size: 2.5rem;
}

.hero .cta-buttons .btn {
    background: #FFD700;
    color: #006400;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.hero .cta-buttons .btn.secondary {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.bg-alt {
    background: #f8f8f8;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.card {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.promo-list {
    list-style: none;
    padding: 0;
}

.testimonials blockquote {
    border-left: 5px solid #006400;
    padding: 1rem;
    margin: 1rem 0;
    background: #f8f8f8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
}

.contact-form input, .contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #006400;
    color: #FFD700;
    border: none;
    padding: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.footer {
    background: #006400;
    color: #FFD700;
    text-align: center;
    padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        background: #006400;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
    }
    .nav.active {
        display: flex;
    }
    .burger {
        display: block;
    }
}
