/* RESET */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    background-color: #f5f5f5;
}

/* ================= MENU ================= */

.menu {
    height: 110px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu img {
    height: 80px;
    width: auto;
}

/* ================= HERO ================= */

.hero {
    min-height: 80vh;
    background-image: url("img/bg.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.slogan {
    max-width: 800px;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2086cb;
    background: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 10px;
}

.btn-decouvrir {
    padding: 18px 35px;
    font-size: 1.5rem;
    background-color: #e56007;
    color: white;
    border: none;
    border-radius: 40px;
    transition: 0.3s;
}

.btn-decouvrir:hover {
    background-color: #446cee;
}

/* ================= PRODUIT ================= */

.produit {
    padding: 70px 20px;
    background: white;
}

.carousel-inner {
    border-radius: 15px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.produit h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.produit ul {
    list-style: none;
    padding: 0;
}

.produit ul li {
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.prix {
    font-size: 2.5rem;
    color: #dc2626;
    font-weight: 700;
}

.payement {
    font-size: 1rem;
    color: #6b7280;
}

/* Image droite */
.produit img.img-fluid {
    border-radius: 15px;
    max-height: 550px;
    object-fit: cover;
}

/* ================= FORMULAIRE ================= */

.form-section {
    background-color: #f9fafb;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.form-container {
    max-width: 800px;
    width: 100%;
}

.form-control,
.form-select {
    padding: 18px;
    border-radius: 8px;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #f27929;
    box-shadow: 0 0 0 2px rgba(242, 121, 41, 0.3);
}

.btn-confirm {
    background: linear-gradient(135deg, #df5d07, #f27929);
    border: none;
    color: white;
    font-weight: 600;
    padding: 16px;
    border-radius: 8px;
    width: 100%;
    font-size: 1.2rem;
    transition: 0.3s;
}

.btn-confirm:hover {
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* Tablette */
@media (max-width: 992px) {
    .carousel-item img {
        height: 350px;
    }

    .slogan {
        font-size: 2.2rem;
    }

    .produit img.img-fluid {
        max-height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        background-image: url("img/bg-mobile.jpg");
        min-height: 70vh;
    }

    .slogan {
        font-size: 1.8rem;
        width: 100%;
    }

    .carousel-item img {
        height: 250px;
    }

    .produit img.img-fluid {
        max-height: 300px;
        margin-top: 20px;
    }

    .prix {
        font-size: 2rem;
    }
}
