body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

header {
    padding: 20px;
    text-align: center;
}

a {
    outline: none;
    text-decoration: none;
    color: #000;
}

section a:hover {
    background-color: #ffac33;
}

*, :after, :before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* margin: 0;
    padding: 0; */
}

p {
    margin: 0 0 10px;
    line-height: 1.5em;
}

ul {
    list-style: none;
    padding: 0;
}

.title {
    font-size: 3em;
}
h1, h2, h3 {
    color: #000; /* Couleur principale miel jaune */
}

section {
    padding: 30px;
}

section a {
    text-decoration: underline;
}


/* Produits */
section#produits img {
    width:100px;
    float: left;
    margin:2px;
}

#produits li {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    min-height: 180px;
}


button {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transition au survol */
}

button:hover {
    background-color: #ffac33; /* Teinte miel jaune plus claire au survol */
}

button a {
    text-decoration: none;
}

/* Styles pour le menu de navigation */
nav {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    background-color: #ff9800; /* Couleur miel jaune */
    padding: 0 20px 0 0 ;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    color: white;
}

.logo img {
    max-width: 100px;
    margin-right: 10px;
}

.menu {
    display: flex;
    flex-direction: row;
    text-align: center;
}

@media (max-width: 800px) {
    .menu {
      flex-direction: column;
    }
}

.menu > div {
    margin-right: 20px;
}

/* .menu li:last-child {
    margin-right: 0;
} */

.menu a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #fff8e1;
}


/* Styles pour les informations de contact */
.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.address, .phone {
    flex: 1;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.address h3, .phone h3 {
    color: #ff9800;
    margin-bottom: 5px;
}

/* Réduire les marges pour les écrans plus petits */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .address, .phone {
        margin-bottom: 20px;
    }
}

/* Styles pour le formulaire de contact */
form {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

form label, form input, form textarea {
    display: block;
    margin-bottom: 10px;
    width: 100%;
}

button[type="submit"] {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #ffac33;
}

/* Footer stylisé */
footer {
    text-align: center;
    padding: 20px;
    background-color: #ff9800;
    color: white;
}


/* BACK TOP */
  .backtotop._show {
    bottom: 60px;
}

  .backtotop {
    bottom: -100px;
    position: fixed;
    z-index: 400;
    right: 20px;
    -webkit-transition: bottom .4s ease,background-color .2s ease;
    -o-transition: bottom .4s ease,background-color .2s ease;
    -moz-transition: bottom .4s ease,background-color .2s ease;
    transition: bottom .4s ease,background-color .2s ease;
    text-decoration: none;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #ff9800;
    text-align: center;
    line-height: 50px;
    border: 2px solid #ff9800;
    color: #fff;
  }

  .backtotop::before {
    content: "↑";
    font-family: theme-font;
    font-size: 1.75rem;
}