/* ICI STYLE DE LA PAGE il permet de mettre a 0 les marges de l'entiereté de la page  */
@import url('https://fonts.googleapis.com/css2?family=AR+One+Sans&family=Barlow+Semi+Condensed:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
}

.scroll{
    overflow: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*ICI STYLE DE LA NAVBAR le but de ce code et d'aligner les éléments de la nav, de les espacés et de leur attribué la bonne taille. */



.header {
    /* J'utilise le display flex pour rendre les trois div contenue dans la div header flexible*/
    display: flex;

    /* J'utilise le flex-wrap pour aligner les trois div contenue dans la div header */
    flex-wrap: wrap;

    /* J'utilise le space between pour creer un espace entre les trois div contenue dans la div header */
    justify-content: space-around;

    /* J'utilise le flex-wrap pour centre verticalement les trois div contenue dans la div header */
    align-items: center;

    /* J'utilise l'align-items pour donner une marge interieur a ma div header */
    padding: 10px;

    /* J'utilise le background color pour donner une couleur bleu ciel*/
    background: rgb(3, 66, 129);

}


.header .logo img {
    width: 175px;
    height: 90px;
    border-radius: 15px;
}



.titre h1 span {
    color: white;
}

.toggle_btn {
    height: 30px;
    width: 30px;
    position: relative;
    float: right;
    margin-right: 5px;
    margin-top: 5px;
    cursor: pointer;
}

.toggle_btn span {
    height: 3px;
    background-color: #2c3e50;
    width: 100%;
    position: absolute;
    top: 20px;
    left: 0;
}

.toggle_btn span:before {
    content: '';
    height: 3px;
    background-color: #2c3e50;
    width: 100%;
    position: absolute;
    top: -10px;
    left: 0;
}

.toggle_btn span:after {
    content: '';
    height: 3px;
    background-color: #2c3e50;
    width: 100%;
    position: absolute;
    top: -10px;
    left: 0;
}

.navHeader ul {
    /* J'utilise le display flex pour rendre les li de ma nav flexibles */
    display: flex;

    /* J'utilise le flex-wrap pour aligner les li de ma nav */
    flex-wrap: wrap;

    /* J'utilise le space-around pour pour créer un espace autour des li de ma nav */
    justify-content: space-around;

}

.navHeader ul li {
    /* J'utilise le list style none afin de retirer les puces de mes li*/
    list-style: none;

    /* ici le padding me permet de mettre une marge intérieur de 5 px autour de mes li ce qui me permet de les agrandir mais aussi de les espacer */
    padding: 5px;

    /*Ici la margin right permet de créer un espace en plus entre chaque li*/
    margin-right: 10px;

}

.navHeader ul li:last-child {
    margin-left: 10px;
}

.navHeader ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.navHeader ul li img{

    width: 37px;
    margin-left: 5px;
}
.navHeader ul li a:hover {
    color: #fff;
    font-weight: 600;
}

nav .burger {
    display: none;
    position: absolute;
    top: 50px;
    right: 50px;
    width: 35px;

}

.cart-number {
    display: flex;
}

.cart-number p {
    position: relative;
    font-size: 18px;
    top: 2px;
    left: -23px;
    font-weight: 600;
    color: rgb(3, 66, 129);
    
}

@media screen and (max-width: 1060px) {
    .header .logo img {
        width: 135px;
        height: 60px;
        border-radius: 15px;
    }
    .navHeader {
        display: flex;
        flex-direction: column;
        position: absolute;
        background: #034281;
        width: 100%;
        height: 1000px;
        top: 0;
        bottom: 0;
        left: 0;
        align-items: center;
        padding: 50px 0;
        z-index: 1000;
        margin-left: -150%;
        transition: all 0.5s ease;
    }

    nav .burger {
        display: block;
        margin-left: 0;
        position: absolute;
        z-index: 1001;
    }

    nav ul li {
        margin: 10px 0;
        font-size: 1.2em;
    }

    nav ul {
        display: flex;
        flex-direction: column;
    }

    .menu-mobile {
        margin-left: 0;
        
    }


}

/* ICI STYLE DE LA PAGE D'ACCUEIL il permet de modifier la hauteur de la banniere avec l'image du mont fuji  */



.banniere video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: 50% 30%;
}


.souvenirTitre,
.souvenirLivraison {
    text-align: center;
    background-color: white;
    padding: 20px 0;
}

.souvenirTitre h2,
.souvenirLivraison h2 {
    font-size: 2em;
    
    margin-bottom: 15px;
    color: #034281;
}

.separation {
    height: 5px;
    width: 30%;
    margin: 0 auto;
    background-color: #034281;
    border-radius: 10px;
}

.souvenirCard {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin: 35px auto;
    background-color: #034281;
    padding: 20px;
}

.card {
    width: 250px;
    background-color: white;
    border-radius: 15px;
    border: solid 5px #1e92e4;
    text-align: center;
    transition: transform .5s;
    overflow: hidden;
    
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    font-size: 1.4em;
    
}

.card p {
    font-size: 1.25em;
    
    margin-bottom: 10px;
}

.card a {
    display: inline-block;
    background-color: #034281;
    color: white;
    padding: 10px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
}

.souvenirIcon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

    padding: 20px;
    color: #034281;
}


.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.icon i {
    color: #034281;
}

@media (max-width: 768px) {

    .souvenirCard,
    .pillowCard,
    .souvenirIcon {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .souvenirTitre h2,
    .souvenirLivraison h2 {
        font-size: 1.75em;
    }
}





/* --------------------------------------------- DEBUT DU FOOTER------------------------------------  */

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px;
    background: rgb(3, 66, 129);
    color: white;
}

footer .logo {
    display: flex;
    align-items: center;
}

footer .logo img {
    width: 260px;
    height: 155px;
}

footer .presentation {
    width: 500px;
    line-height: 30px;
    align-self: center;
}

footer .presentation a {
    text-decoration: none;
    color: white;
}

footer .menuFooter ul li {
    list-style: none;
    margin-bottom: 10px;
}



footer .menuFooter ul li a {
    text-decoration: none;
    color: white;

}

footer .menuFooter ul li a:hover {

    font-weight: 700;
}


footer h2 {
    margin-bottom: 10px;
}

@media (max-width: 1060px) {

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: fit-content;
    }

    footer .presentation {
        width: 100%;
        margin: 15px 0;
    }
}

/* -------------------------------------------- FIN DU FOOTER ----------------------------------------------- */










/* ----------------------------------- PAGE PRODUCT -------------------------------------------------------- */


.baniere-product img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: 30%;
}

.baniere-product p {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 960px;
    text-align: center;
    font-size: 1.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.container-product,
.title-product {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.title-product {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-product h2 {
    text-align: center;
    font-size: 2rem;
    margin: 30px 0;
}

.title-product p {
    font-size: 20px;
    text-align: center;

}

.title-product hr {
    height: 5px;
    width: 100px;
    background: rgb(3, 66, 129);
    border: none;
    border-radius: 5px;
    margin: 0 auto 30px;
}

.card-product {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    background-color: #034281;
    width: fit-content;
    padding: 20px;
}

.card-product,
.image-product,
.description-product {
    border-radius: 10px;

}

.image-product,
.description-product {
    min-width: 300px;
}

.image-product img,
.description-product img {
    width: 300px;
    height: 100%;
    border-radius: 10px;
}

.description-product {
    background-color: rgb(3, 66, 129);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.description-product h2 {
    font-size: 1.5rem;
}

.description-product p {
    margin: 15px 0;
    max-width: 200px;
    font-size: 18px;
}

.button,.buttonProduct,
.buttonCart {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.buttonProduct a{
    background: white;
    color: rgb(3, 66, 129);
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.buttonProduct a:hover{
    background: rgb(79, 167, 255);
    color: white;
}


.button a,
.buttonCart a {
    background: rgb(3, 66, 129);
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

.button a:hover,
.buttonCart a:hover {
    background: rgb(79, 167, 255);
    color: white;
}

.dropbtn {
    background-color: rgb(3, 66, 129);
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    min-width: 170px;
}


.dropdown {
    position: relative;
    display: inline-block;
    margin: 20px;
}


.btn-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 170px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1;
}


.btn-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ddd;
}


.btn-content a:hover {
    background-color: #f1f1f1;
}


.dropdown:hover .btn-content {
    display: block;
}


.dropdown:hover .dropbtn {
    background-color: #2980b9;
}



@media (max-width: 768px) {
    .baniere-product p {
        font-size: 1.2rem;
    }

    .container-product {
        padding: 0 10px;
    }

    .card-product {
        flex-direction: column;
        align-items: center;
    }

    .image-product,
    .description-product {
        max-width: 100%;
    }
}


/* ------------------------------------- FIN PAGE PRODUIT ------------------------------------------------ */








/* ------------------------------------- DEBUT PAGE QUI SOMMES NOUS ? ------------------------------------- */


.banniere-about {
    height: 300px;
}

.banniere-about img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.container-about {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
}


.container-about h2,
.about h4 {
    color: #444;

    font-weight: normal;
    margin-bottom: 10px;
}

.container-about p,
.about p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.about {
    padding: 20px;
    background: #fff;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
}

.aboutR,
.aboutR1 {
    display: flex;
    align-items: center;
    
    margin-bottom: 20px;
   
}

.aboutR img,
.aboutR1 img {
    width: 100%;
    
    max-width: 400px;
   
    height: auto;
    
    margin: 0 20px;
  
    border-radius: 5px;
    
}


@media (max-width: 768px) {
    .aboutR {
        flex-direction: column;
       
    }

    .aboutR1 {
        flex-direction: column-reverse;
        
    }

    .aboutR img,
    .aboutR .aboutT {
        width: 100%;
        
        margin-bottom: 20px;
        
    }
}

@media (max-width: 480px) {

    .container-product p,
    .about p {
        font-size: 16px;
        
    }
}

/* ------------------------------------- FIN PAGE QUI SOMMES NOUS ? ------------------------------------------------ */








/* ------------------------------------- DEBUT PAGE CONTACT ------------------------------------- */





.container-product-bleu {
    width: 80%;
    
    max-width: 600px;
    
    height: auto;
    
    margin: 20px auto;
    display: flex;
    justify-content: center;
    padding: 10px;
    
}

.container-product-bleu h2 {
    color: white;
    font-size: 2rem;
    
    align-self: center;
    margin: 0;
  
}

.form-contact {
    display: flex;
    flex-direction: column;
    
    margin: 0 auto;
    width: 90%;
    
    max-width: 500px;
    
    padding: 30px;
    
    background: white;
    
    border-radius: 8px;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

.form-contact .input-mail,
textarea,
input[type="submit"] {
    margin-bottom: 10px;
    padding: 8px;
    width: 100%;
    
}

.form-contact #send-msg {
    padding: 10px 20px;
    background-color:rgb(3, 66, 129);
    color: white;
    border: none;
    cursor: pointer;
}

.loc {
    margin-top: 25px;
    width: 100%;
    
}

.loc iframe {
    width: 100%;
    
    height: 450px;
    
}



@media (max-width: 768px) {

    .form-contact{
        width: 70%;
    }
    .container-product-bleu h2 {
        font-size: 1.5rem;
        
    }

    .form-connexion {
        width: 95%;
        
    }

    .loc iframe {
        height: 300px;
       
    }
}

@media (max-width: 480px) {
    .form-contact{
        width: 70%;
    }
    .container-product-bleu h2 {
        font-size: 1.2rem;
        
    }

    .form-connexion {
        width: 100%;
        
    }

    #send-msg {
        padding: 12px 24px;
        
    }
}


/* ------------------------------------- FIN PAGE CONTACT ------------------------------------------------ */


/* ------------------------------------- DEBUT PAGE SUCCESS ENVOIE ------------------------------------- */

#image-success {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

#image-success img {

    width: 500px;
    height: 500px;
    border-radius: 10px;
    margin: auto;

}

#image-success a {


    background-color: #034281;
    color: white;
    padding: 10px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
    margin: 10px auto;
    width: fit-content;

}




/* ------------------------------------- FIN PAGE SUCCESS ENVOIE ------------------------------------- */





/* ------------------------------------- DEBUT PAGE INSCRIPTION ------------------------------------- */
/* Basic Styles */

.denied{
    display: flex;
    justify-content: center;
}

.denied a {
    margin: 5px!important;
}

.container-connexion {
    width: 80%;
    
    max-width: 600px;
    
    height: auto;
    
    margin: 20px auto;
    display: flex;
    justify-content: center;
    padding: 10px;
    
}

.container-connexion h2 {
    color: white;
    font-size: 2rem;
    
    align-self: center;
    margin: 0;
    
}

.form-connexion {
    background: white;
    padding: 20px;
    width: 90%;
    
    max-width: 500px;
    
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}

.form-connexion form {
    width: 100%;
    
    margin: auto;
    display: flex;
    flex-direction: column;
}

.form-connexion input,
.form-connexion textarea {
    height: 40px;
    margin-bottom: 10px;
    padding: 8px;
    font-size: 16px;
    border-radius: 10px;

}

.form-connexion form label {
    margin: 15px 0;
    font-size: 16px;
    color: rgb(3, 66, 129);
}

#send-msg {
    padding: 10px 20px;
    background: rgb(3, 66, 129);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 15px;
    transition: 0.5s;
    font-size: 18px;
}

#send-msg:hover {
    background: #4c96e0;
}

@media (max-width: 768px) {
    .container-connexion h2 {
        font-size: 1.5rem;
    }

    .form-connexion {
        width: 80%;
    }

    .form-connexion input,
    .form-connexion textarea {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container-connexion h2 {
        font-size: 1.2rem;
    }

    .form-connexion {
        width: 80%;
    }

    .form-connexion input,
    .form-connexion textarea {
        font-size: 12px;
    }

    #send-msg {
        padding: 12px 24px;
    }
}


/* ------------------------------------- FIN PAGE INSCRIPTION ------------------------------------------------ */








/* ------------------------------------- DEBUT PAGE SINGLE PRODUCT ------------------------------------- */
.singleProduct {
    max-width: 90%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.singleImage img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}

.singleDescription {
    text-align: center;
    color: white;
}

.singleDescription h3 {
    font-size: 20px;
}

.singleDescription p {
    font-size: 18px;
}

.singleDescription p,
h3 {
    margin: 10px;
}

.singleButton {
    width: 100%;
}

input[type="number"],
input[type="submit"] {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

#validation {
    transition: background-color 0.3s ease-in-out;
    font-size: 18px;
}

#validation:hover {
    background: rgb(76, 150, 224);
    color: white;
}

.otherProducts {
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    background: white;
}

.otherProducts .card {

    color: black;
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    background: rgb(3, 66, 129);
    color: white;
}

.otherProducts .card a {
    color: #034281;
    text-decoration: none;
    background-color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s;
}

.otherProducts .card a:hover {
    background: rgb(79, 167, 255);
    color: white;
}



@media (max-width: 768px) {
    .otherProducts {
        flex-direction: column;
    }

    .otherProducts .card {
        width: 70%;
        margin: 5px auto;
    }

}

@media (max-width: 480px) {
    .singleDescription {
        width: 100%;
    }

    .singleButton {
        flex-direction: column;

    }

    .singleButton form {
        width: 100%;
        flex-direction: column;
    }

    input[type="submit"] {
        width: 100%;
        margin-top: 10px;
    }

    .otherProducts .card {
        width: 80%;
        margin: 5px auto;
    }
}

/* ------------------------------------- FIN PAGE SINGLE PRODUCT ------------------------------------------------ */








/* ------------------------------------- DEBUT PAGE INFO LIVRAISON ------------------------------------- */

.infoLivraison {
    width: 90%;
    margin: auto;
    text-align: justify;
}

.infoLivraison div {
    margin: 30px auto;
}

.infoLivraison div h2 {
    margin: 10px auto;
}

.infoLivraison div p {
    font-size: 20px;
    margin-bottom: 10px;
}


/* ------------------------------------- FIN PAGE INFO LIVRAISON ------------------------------------------------ */








/* ------------------------------------- DEBUT PAGE PANIER ------------------------------------------------------ */


.cartTable img {
    max-width: 200px;
    height: auto;
}

.cartTable input,
button,
select,
textarea {
    font-size: 16px;
}

.cartTable a {
    color: #007bff;
    text-decoration: none;
}

.cartTable a:hover {
    text-decoration: underline;
}


.cartTable header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cartTitle {
    font-size: 32px;
    text-align: center;
    color: #333;
    margin: 20px;
}

#cart {
    width: 80%;
    min-height: 30vh;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#cart h2 {
    margin: 10px auto;
}

.cartTable {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cartTable:last-child {
    border-bottom: none;
}

.cartTable img {
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cartTable h3,
.cartTable p {
    margin: 0;
    padding: 5px;
}

.cartTable input {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.cartTable button {
    
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fa-trash:hover{
    color: red!important;
}

.validerPanier p {
    margin: auto;
    text-align: center;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 25px;
    
}


@media only screen and (max-width: 768px) {
    #cart {
        width: 95%;
    }

    .cartTable {
        flex-direction: column;
        align-items: center;
    }

    .buttonCart,
    .cartTable {
        width: 100%;
        text-align: center;
    }

    .buttonCart a {
        display: inline-block;
        margin: 10px;
    }
}


/* ------------------------------ STYLE DE LE PAGE INFOS DE LIVRAISON ---------------------------------------- */



/* ------------------------------ FIN DU  STYLE DE LE PAGE INFOS DE LIVRAISON -------------------------------- */


/* ------------------------------ DEBUT DU  STYLE DE LE PAGE ADRESSES -------------------------------- */

.adresse {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.adresse input,
.adresse select {
    border-radius: 10px;
    margin-bottom: 10px;
    border: solid 1px #034281;
    padding: 10px;
}

.adresse input[type="submit"]{
    background-color: rgb(3, 66, 129)!important;
    color: white;
    cursor: pointer;
}

.adresse h2 {
    margin-bottom: 10px;
}