* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }

body {

    background-size: cover;
    background-repeat: no-repeat;


}

.menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    
    background: rgba(0, 0, 0, 0.6); /* Fond semi-transparent */
        backdrop-filter: blur(10px); /* Applique un flou à l'arrière-plan */
        -webkit-backdrop-filter: blur(10px); /* Compatibilité Safari */
}

.menu .logo {

    display: flex;
    margin: 20px;
    justify-content: start;
    width: 50%;
}

.menu .logo p {
    font-size: 30px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 4px;

}

ul {
    display: flex;
    list-style: none;
    flex-direction: row;

}

a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 17px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

    letter-spacing: 0px;
    font-weight: normal;
}

.menu .lien nav {
    display: flex;
    align-items: center;

}


#ici {
    border-bottom: 3px solid rgb(255, 255, 255);
    padding-bottom: 5px;

}

footer {
    background-color: whitesmoke;
    width: 100%;

    bottom: 0px;
    text-align: center;
    padding: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #666;
}

.menu .lien {
    margin: 20px;
    display: flex;
    width: 50%;

}

.menu .lien nav ul li {
    margin: 0px 30px;
}

.menu .lien nav ul li a {
    margin: 0px 15px;

}

@media (max-width: 768px) {
    body {
        display: flex;
        justify-content: center;
        flex-direction: column;
        
        background-size:cover;

        

    }

    .menu .lien nav ul li {
        margin: 0px 0px;
    }

    .menu .lien nav ul li a {
        margin: 10px 0px;

    }

    .menu {
        display: flex;
        justify-content: center;
        width: 95%;
        position: fixed;
        bottom: 0px;
        padding: 25px 20px;
        padding-bottom: 5px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        z-index: 1000;
        margin: 10px;
        
    }

    .menu .logo {
        display: none;
        margin: 0px;
    }

    .menu .lien,
    nav,
    ul {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0px;

    }

    .menu .lien nav ul {
        display: flex;
        justify-content: space-between;


    }

    a {
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-size: 13px;
        font-family: sans-serif;
        margin-top: 10px;
        letter-spacing: 0px;

    }

    .menu .lien nav ul li {
        display: flex;
        flex-direction: column;
        align-items: center;

    }

    .menu .lien nav ul li i {
        margin: 10px;

    }

    #nonmarge {
        margin: 0px;
    }

}

.article {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-family: Arial, sans-serif;
    background: rgba(0, 0, 0, 0.6); /* Fond semi-transparent */
    backdrop-filter: blur(10px); /* Applique un flou à l'arrière-plan */
    -webkit-backdrop-filter: blur(10px); /* Compatibilité Safari */

}

.produit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    
    
}

button {
    background-color: rgb(0, 172, 83);
    color: white;
    font-size: 20px;
    font-family: Arial, sans-serif;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 10px;
    border: none;
}

.imgproduit {
    width: 250px;
    height: auto;
    border-radius: 10px;
    margin: 10px;
    background-color: black;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 60px;
    height: 60px;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s;
    background-color: black;
}
.btnacheter{
    background-color: rgb(0, 172, 83);
    color: white;
    font-size: 20px;
    font-family: Arial, sans-serif;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 10px;
    border: none;
}
.video-container {
    position: fixed; /* Fixe la vidéo en arrière-plan */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1; /* Place la vidéo derrière le contenu */
}

/* Vidéo responsive */
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste sans déformation */
}

/* Contenu au-dessus de la vidéo */
.content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
 /* Fond semi-transparent */
    backdrop-filter: blur(10px); /* Applique un flou à l'arrière-plan */
    -webkit-backdrop-filter: blur(10px); /* Compatibilité Safari */
    padding: 20px;
    margin: 10px;
    border-radius: 15px;
    flex-direction: column;
    flex-grow: 1;
}
#tt{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}
/* Contenu principal */
.content { position: relative; z-index: 1; padding: 40px 20px; background: rgba(0, 0, 0, 0.6); }
h1 { font-size: 2.5rem; margin-bottom: 20px; }
p { font-size: 1.2rem; margin-bottom: 30px; }
.btn { background: gold; color: black; padding: 15px 30px; font-size: 1.2rem; text-decoration: none; border-radius: 5px; }

/* Sections */
.section { padding: 50px 20px; }
.products, .services { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.product, .service { width: 300px; padding: 20px; background: white; color: black; border-radius: 10px; }
.product img, .service img { width: 100%; border-radius: 10px; }
body { color: white; text-align: center; }
.buton{
    display: flex;
    flex-direction: row;
}
.content i{
    margin: 20px;
}
#produitss{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
#Service{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.product-container {
    display: flex;
    background: #222;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    max-width: 800px;
    transition: transform 0.3s ease-in-out;
}

.product-container:hover {
    transform: scale(1.02);
}

.product-image img {
    width: 300px;
    border-radius: 10px;
    transition: opacity 0.3s ease-in-out;
}

.product-details {
    padding-left: 20px;
}

.product-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-description {
    font-size: 16px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 22px;
    font-weight: bold;
    color: gold;
    margin-bottom: 20px;
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.2s, border 0.3s;
}

.color:hover {
    transform: scale(1.2);
    border: 2px solid #fff;
}

.buy-button {
    background: gold;
    color: #111;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.buy-button:hover {
    background: #ffd700;
    transform: scale(1.05);
}
.row{
    display: flex;
    flex-direction: row;
}
#decoration{
    background-image: url("img/IMG_7375.JPEG");
    background-size: cover;
    font-weight: 200;
    font-size: 25px;
    width: 50%;
    border: 3px solid rgb(0, 0, 0);
}

h6{
    text-shadow: 
        -1px -1px 0 rgb(255, 255, 255),  
         1px -1px 0 rgb(255, 255, 255),
        -1px  1px 0 rgb(255, 255, 255),
         1px  1px 0 rgb(255, 255, 255);
         color: #111;
}
#encastrement{
    background-image: url(img/encastrement.jpg);
    background-size: cover;
    width: 50%;
    border: 3px solid rgb(0, 0, 0);
    font-weight: 200;
    font-size: 25px;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#titre{
    padding: 20px;
}
.packs video{
    border-radius: 15px;
    border: 3px solid rgb(0, 0, 0);
}
.packs{
    margin-top: 20px;
}
.packs p{
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 15%;
    transform: translate(-50%, -50%);
    text-shadow: -1px -1px 0 gold,  
    1px -1px 0 gold,
   -1px  1px 0 gold,
    1px  1px 0 gold;
    color: #111;;
    padding: 10px;
    border-radius: 5px;
}
video {
    pointer-events: none;
    user-select: none;
  }
  