* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.hero {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)), 
                url('https://images.pexels.com/photos/1484657/pexels-photo-1484657.jpeg') center/cover no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-content h1 { font-size: 4.5rem; margin-bottom: 1rem; }
.hero-content p { font-size: 1.5rem; font-weight: 300; }

.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 { font-size: 3rem; color: #2d6a4f; margin-bottom: 50px; }

.subtitle { font-size: 1.2rem; color: #666; max-width: 800px; margin: 0 auto 50px; }

.magasins {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.magasin {
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.magasin:hover { transform: translateY(-20px) scale(1.05); }

.box-pastel-pink { background: linear-gradient(135deg, #fff0f8, #ffe4f0); border-left: 12px solid #ff99cc; }
.box-pastel-green { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); border-left: 12px solid #81c784; }
.box-pastel-blue { background: linear-gradient(135deg, #e3f2fd, #bbdefb); border-left: 12px solid #64b5f6; }

.magasin h3 { color: #2d6a4f; font-size: 2rem; margin-bottom: 20px; }

.bg-floral {
    background: linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)), 
                url('https://thumbs.dreamstime.com/b/bright-vibrant-flower-shop-interior-natural-light-colorful-blooms-cozy-filled-various-types-flowers-basking-349518960.jpg') center/cover no-repeat;
}

.bg-pastel {
    background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), 
                url('https://thumbs.dreamstime.com/b/elegant-floral-pattern-roses-peonies-soft-pastel-colors-features-seamless-repeat-delicate-vintage-375447136.jpg') center/cover no-repeat;
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 70px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

form { text-align: left; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.full-width { grid-column: 1 / -1; }

label { display: block; margin-bottom: 12px; font-weight: 500; color: #2d6a4f; }

input[type="text"], input[type="tel"], input[type="email"], select, textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
}

input:focus, select:focus, textarea:focus { outline: none; border-color: #2d6a4f; }

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 15px;
}

.checkbox-group label { display: flex; align-items: center; font-weight: normal; color: #555; }

button {
    background: #2d6a4f;
    color: white;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-size: 1.4rem;
    cursor: pointer;
    width: 100%;
    margin-top: 40px;
    transition: background 0.3s;
}

button:hover { background: #1b4332; }

footer {
    background: #2d6a4f;
    color: white;
    padding: 50px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .content-box { padding: 40px; }
    .magasin { padding: 30px; }
.merci-box h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.merci-box p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.merci-magasins {
    margin: 50px auto;
    max-width: 1200px;
}

.btn-home {
    display: inline-block;
    background: #2d6a4f;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.btn-home:hover {
    background: #1b4332;
}
}