/* Police moderne */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #c08f60ce;
    color: #fff;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    height: 100px;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
    padding: 10px 15px;
}

.nav a:hover {
    font-size: 1.01rem;
    color: #7c5500;
}

hr {
    margin: 0.01px;
}

/* Hero Section */
.hero {
    background: url('../img/acceuil.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
    height: 400px;
    position: relative;
}

.hero .container {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 15px;
    display: inline-block;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #c08f60ce;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: #ffffff;
    color: #c08f60ce;
}

/* Products Section */
.products {
    padding: 2rem 0;
    background-color: #c08f60ce;
    text-align: center;
}

.products h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: left;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.product {
    background: #c08f60ce;
    border-radius: 10px;
    overflow: hidden;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 6px #c08f60ce;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product span {
    font-size: 0.9rem;
    padding: 0 1rem 1rem;
    color: #ffffff;
}

.product .spanprix {
    color: #5e3a04;
}

/* Partie bouton / info */
.contenair {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contenair img {
    border-radius: 15px;
    max-width: 100%;
}

.container h1 {
    font-size: 40px;
    color: black;
    text-align: center;
}

.contenair span {
    display: flex;
    justify-content: flex-start;
}

.textecendre {
    color: #474747;
}

.infobutton {
    display: inline-block;
    padding: 2.7rem 1.5rem;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border: none;
    font-size: 1.1rem;
    border-radius: 10px;
    width: 100%;
    max-width: 700px;
    height: 150px;
    transition: all 0.3s ease-in-out;
}

.infobutton:hover {
    background-color: #dad5d5;
}

/* Navigation complémentaire */
.navlink a {
    color: #646464;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease-in-out;
    font-size: 30px;
}

.navlink a:hover {
    color: #7c5500;
}

.navend {
    padding-top: 40%;
}

.navend a {
    color: #646464;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
    font-family: 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.navend a:hover {
    color: #7c5500;
}

/* Footer */
.footer-basic {
    padding: 40px 0;
    background-color: #ffffff;
    color: #4b4c4d;
}

.footer-basic ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-basic li {
    padding: 0 10px;
}

.footer-basic ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    font-weight: 600;
}

.footer-basic ul a:hover {
    opacity: 1;
    color: #7c5500;
}

.footer-basic .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer-basic .social > a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
    transition: all 0.3s ease-in-out;
}

.footer-basic .social > a:hover {
    opacity: 0.9;
    color: #7c5500;
}

.footer-basic .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .contenair {
        flex-direction: column;
        gap: 1.5rem;
    }

    .container h1 {
        text-align: center;
        padding-left: 0;
    }

    .infobutton {
        width: 90%;
        padding: 1.5rem;
        height: auto;
    }
}

iframe {
    display: flex;
    justify-content: center;
    border: #000 1px solid;
}
