/* fichier css */
*, ::before, ::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    font-family: "Montserrat", sans-serif;
    background: #F5F2ED;
    color: #2E2E2E;
    height: 100%;
    display: flex;
    flex-direction: column;
}


main {
    padding-left: 3rem;
    padding-right: 3rem;
    flex: 1;
}

h1, h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-size: 40px;
}

h3, span {
    font-size: 14px;
}

#navbar {
    background: #F5F2ED;
}

/* FORMULAIRE */
.formulaire {
  width: 100%;
  max-width: 500px;
}

.formulaire input.form-control{
    border: 1px solid #2E2E2E;
    border-radius: 10px;
}

.formulaire .form-check-input {
    border: 1px solid #2E2E2E;
}

.formulaire .btn-form-inscription, .formulaire .btn-form-connexion {
    width: 100%;
    background-color: #F2B880;
    color: #2E2E2E;
}

.is-invalid {
  color: red;
}

.is-valid {
  color: green;   
}



/* #formulaire{
    max-width: 400px;
} */

/* BANNIERE */
.banniere{
    position: relative;
    height: 324px;
    background: #F2B880;
    overflow: hidden;
    padding: 35px;
    border-radius: 24px;
    color: #F5F2ED;
}

.banniere h1{
    font-weight: 800;
    font-size: 50px;
}

.img_guitare{
    position: absolute;
    bottom: 0;
    right: 20px;
}

.banniere .search_banniere{
    max-width: 280px;
    border: 1px solid #7D6E65;
}

.banniere .btn_search_banniere{
    background: #7D6E65;
    color: #F5F2ED;
}

.banniere .element_banniere{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 0 35px 0;

}


/* CATEGORIE */
.img-categorie {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.card-categorie {
    height: 100px;
    padding: 5px;
}

/* PRODUIT */
/* .img-produit{
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
} */

/* .card-produit{
    width: 250px;
    margin: 0 auto;
} */

/* DETAIL PRODUIT */
.card-detail-produit{
    max-width: 950px;
}

/* .img-produit-detail{
    width: 100%;
    max-height: 400px;
    object-fit: contain;
} */


.description-text {
    font-size: 13px;
}

.btn-produit{
    background: #F2B880;
    color: #2E2E2E;
    font-weight: 600;
}


/* FIL D' ARIANE */
.ariane{
    color: inherit;
    text-decoration: none;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: " > ";
}

/* PANIER */
.img-produit-panier{
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.btn-panier{
    background: #F2B880;
    color: #2E2E2E;
    font-weight: 600;
}

/* FOOTER */
footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 10px;
    color: #333;
    z-index: 1000;
}



.footer-bottom {
    background: #F2B880;
}


.table-historique-commande {
    overflow-x: auto;
}

/* MOT DE PASSE PERDU */
.password-perdu{
    background: #F2B880;
    color: #2E2E2E;
    font-weight: 600;

}

/* CONTENTE POLICY */

.content-policy {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1rem;
}

.content-policy h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.content-policy p {
  margin-bottom: 1.5rem;
  color: #333;
}



/* ****************MEDIA QUERY *********************** */


@media (max-width: 767px) {

    main{
        padding: 8px;
    }

    nav {
        padding: 8px;
    }
    
    .banniere{
    height: auto;
    background: #F5F2ED;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .banniere .search_banniere{
    width: 220px;
    border: 1px solid #7D6E65;
    }

    .img-navbar {
        width: 120px;
    }

    .breadcrumb-item{
        font-size: 9px;
    }

}
  








/* TEST PADING MARGE */

/* * {
    outline: 1px solid red;
} */





/*
#7D6E65 pour boutons, liens, accents
#F2B880 pour éléments secondaires, hover
#F5F2ED background principal
#2E2E2E texte principal
#7C7C7C (texte secondaire, placeholders
*/