@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=ExtraLight 200 Italic:wght@300;400;600&display=swap');

:root{
    --main-color:#dfd090;
    --primary-color: #5e3719;
    --black:#13131a;
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}

*{
    font-family: 'ExtraLight 200 Italic',sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    list-style: none;
    transition: all .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

html::-webkit-scrollbar{
    width: .6rem;
}

html::-webkit-scrollbar-track{
    background-color: #fff;
}

html::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}

section{
    padding: 3rem 7%;
}

.heading{
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 4rem;
    width: 100%;
   margin-top: -10%;
}

.heading-title{
    position: relative; 
    padding-top: 10rem;
    padding-bottom: 10rem;
    margin-bottom: 140px;
    width: 100%;
    text-align: center;

    
}

.heading-title img{
    position: relative;
    width: 100%;
    height: 1400px;
    z-index: -1;
    opacity: 0.8;
}

.heading-title h1{
    position: absolute;
    padding-bottom: 100rem;
    font-size: 8rem;
    text-transform: uppercase;
    color: #dfd090;
    z-index: 1;
    margin: none;
    top: 30%;
    
    
}

.btn{
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 4rem;
    font-size: 1.7rem;
    border-radius: .5rem;
    color: var(--primary-color);
    background: var(--main-color);
    position: relative;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    z-index: 0;
    width: 165px; /* Largeur fixe */
    height: 50px; /* Hauteur fixe */
}

.btn::before{
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 100%;
    clip-path: polygon(0 0, 100% 0, 19% 15%, 0% 100%);
    z-index: -1;
    background: var(--primary-color);
    transition: .3s cubic-bezier(.38,1.15,.7,1.12);
}

.btn:hover::before{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.btn:hover{
    color: var(--main-color);
}

/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;
    background: #fff;
    box-shadow: var(--box-shadow);
}

.header .logo {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bolder;
    color: var(--black);
}

.header .logo img {
    height: 70px;
    margin-top: 5px;
    margin-right: 10px; /* Optional: Add space between the image and the text */
}

.header .navbar a {
    font-size: 2rem;
    margin-left: 2rem;
    color: var(--black);
    text-decoration: none;
}

.header .navbar .active {
    color: var(--main-color);
}

.header .navbar a:hover {
    color: var(--main-color);
}

#menu {
    font-size: 2.5rem;
    cursor: grab;
    color: var(--black);
    display: none;
}

@media (max-width: 768px) {
    #menu {
        display: block;
    }

    .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        margin: 1rem 0;
        padding: 1rem;
        text-align: center;
        width: 100%;
    }
}


/* end */

/* home */

.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(pics/t1.webp) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content{
    max-width: 55rem;
    text-align: center;
}


.home .content h3{
    color: #fff;
    font-size: 6rem;
    line-height: 1.2;
    letter-spacing: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding-bottom: 2rem;
    text-align: center; 
    white-space: normal;
    
    
   
    
}
.styled-paragraph {
    background-color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 1400px;
    text-align: justify;
    transition: transform 0.2s;
    margin-bottom: 100px;
    margin-top: 100px;
}

.styled-paragraph:hover {
    transform: translateY(-10px);
}

.styled-paragraph p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.styled-paragraph p::first-letter {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--main-color);
}

.styled-paragraph p::first-line {
    font-weight: 600;
    color: var(--main-color);
}

/* end */

/* banner */

.banner{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.banner .hex{
    position: relative;
    width: 35rem;
    height: 40rem;
    margin: 3rem 1.5rem;
}

.banner .hex::before{
    content: '';
    position: absolute;
    bottom: -7rem;
    width: 100%;
    height: 6rem;
    background: radial-gradient(rgba(0,0,0,0.15), transparent, transparent);
    border-radius: 50%;
    transition: .5s;
}

.banner .hex:hover::before{
    opacity: 0.8;
    transform: scale(0.8);
}

.banner .hex .shape{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    transition: .5s;
}

.banner .hex:hover .shape{
    transform: translateY(-1rem);
}

.banner .hex .shape img{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}

.banner .hex .shape .content{
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(45deg, #5e3719 37.47%, #dfd090 93.67%);
    color: #fff;
    opacity: 0;
    transition: .5s;
}

.banner .hex .shape .content h2{
    font-size: 3rem;
    padding-bottom: 1.2rem;
}

.banner .hex .shape .content p{
    font-size: 1.7rem;
    line-height: 1.8;
}

.banner .hex:hover .shape .content{
    opacity: 1;
}

/* end */

/* home-menu */

.home-menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.home-menu .box-container .box{
    background: #fff;
    border: .1rem solid rgba(0,0,0,.2);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.home-menu .box-container .box .image{
    height: 25rem;
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.home-menu .box-container .box .image img{
    height: 100%;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.home-menu .box-container .box .image .fa-heart,
.home-menu .box-container .box .image .fa-eye{
    position: absolute;
    top: 2.5rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    background: #fff;
    border-radius: 50%;
    color: var(--black);
}

.home-menu .box-container .box .image .fa-heart{
    right: 2.5rem;
}

.home-menu .box-container .box .image .fa-eye{
    left: 2.5rem;
}

.home-menu .box-container .box .image .fa-heart:hover,
.home-menu .box-container .box .image .fa-eye:hover{
    background: var(--main-color);
    color: #fff;
}

.home-menu .box-container .box .content{
    padding: 2rem;
    padding-top: 0;
}

.home-menu .box-container .box .content h3{
    font-size: 2.5rem;
    color: var(--black);
}

.home-menu .box-container .box .content p{
    color: var(--black);
    font-size: 1.6rem;
    padding: .5rem 0;
    line-height: 1.5;
}

.home-menu .box-container .box .content .price{
    color: var(--primary-color);
    font-size: 2.5rem;
}

.home-menu .box-container .box .content .stars{
    padding: 1rem 0;
}

.home-menu .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--main-color);
}

/* end */

/* about */

.about{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}
.about .header .logo{
    
        display: flex;
        align-items: center;
        font-size: 2.5rem;
        font-weight: bolder;
        color: var(--black);
    }
    
.about.header .logo img {
        height: 70px;
        margin-top: 5px;
        margin-right: 10px; /* Optional: Add space between the image and the text */
    }


.about .image{
    flex: 1 1 41rem;
    margin-bottom: 200px;
    width: 90%;
    max-width: 50%;
}

.about .image img{
    width: 100%;
    border-radius: 1rem;
}

.about .content{
    flex: 1 1 41rem;
    text-align: center;
}

.about .content h3{
    font-size: 3rem;
    color: var(--black);
}

.about .content p{
    font-size: 1.5rem;
    color: #666;
    line-height: 2;
    padding: 1rem 0;
}

.about .content .icons-container{
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
}

.about .content .icons-container .icons{
    background: #5e3719;
    transition: background-color 0.3s ease;
    padding: 2rem;
    flex: 1 1 16rem;
}
.about .content .icons-container .icons:hover {
    background-color: #ff6347; /* Change to desired color on hover */
}
.about .content .icons-container .icons i{
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--main-color);
}

.about .content .icons-container .icons span{
    font-size: 1.5rem;
    display: block;
    color: #fff;
}

/* end */

/* gallery */


.gallery .box-container{
    columns: 3 25rem;
    column-gap: 1.5rem;
  
}

.gallery .box-container .box{
    margin-bottom: 1rem;
}

.gallery .box-container .box img{
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
}


/* end */

/* category */

.category .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
    height: 350px;
}

.category .box-container .box{
    text-align: center;
}

.category .box-container .box img{
    height: 25rem;
}

.category .box-container .box h3{
    font-size: 2rem;
    margin: 1rem 0;
    color: #666;
}

.category .box-container .box:hover h3{
    color: var(--primary-color);
}

/* end */

/* menu */

.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box{
    position: relative;
    height: 40rem;
    border-radius: 5rem;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.menu .box-container .box .image{
    position: relative;
    overflow: hidden;
}

.menu .box-container .box:hover .image::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 15%, transparent);
    z-index: 1;
}

.menu .box-container .box:hover .image img{
    filter: blur(.5rem);
}

.menu .box-container .box .image img{
    width: 100%;
    height: 40rem;
    object-fit: cover;
}

.menu .box-container .box .content{
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 10;
    display: none;
}

.menu .box-container .box .content h3{
    font-size: 2.5rem;
    color: #fff;
}

.menu .box-container .box .content p{
    color: #fff;
    font-size: 1.4rem;
    padding: .5rem 0;
    line-height: 1.5;
}

.menu .box-container .box .content .price{
    color: var(--main-color);
    font-weight: bolder;
    font-size: 2.5rem;
    margin-right: 1rem;
}

.menu .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
    color: #fff;
}

.menu .box-container .box .content .stars{
    position: relative;
    padding: .5rem 0;
}

.menu .box-container .box .content .stars i{
    color: gold;
    font-size: 2rem;
}

.menu .box-container .box:hover .content{
    display: inline-block;
}

/* end */

/* blog */

.blogs .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.blogs .box-container .box{
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.blogs .box-container .box .image{
    height: 25rem;
    width: 100%;
    overflow: hidden;
    border-radius: .5rem;
}

.blogs .box-container .box .image img{
    width: 100%;
    height: 100%;
}

.blogs .box-container .box:hover .image img{
    transform: scale(1.2);
}

.blogs .box-container .box .icons{
    background: var(--primary-color);
    border-radius: .5rem;
    padding: 1rem;
    position: relative;
    top: -2rem;
    display: inline-block;
}

.blogs .box-container .box .icons a{
    font-size: 1.4rem;
    color: #fff;
    margin: 0 1rem;
}

.blogs .box-container .box .icons a:hover{
    color: var(--main-color);
}

.blogs .box-container .box .icons a i{
    padding-right: .5rem;
    color: var(--main-color);
}

.blogs .box-container .box h3{
    font-size: 2rem;
    color: var(--black);
}

.blogs .box-container .box p{
    font-size: 1.4rem;
    padding: 1rem 0;
    line-height: 2;
    color: var(--black);
}
/* end */

/* booking */
.booking{
    margin-top: -250px;
}
.heading-title{
    height: 600px;
}

.booking .book-form{
    padding: 2rem;
    background: #dfd090;
}

.booking .book-form .flex{
    
    flex-wrap: wrap;
    gap: 2rem;
}
.heading-title img {
    height: 400px;
}

.booking .book-form .flex .inputBox{
    flex: 1 1 41rem;
    position: relative;
}

.booking .book-form .flex .inputBox input{
    width: 100%;
    padding: 1.2rem 1.4rem;
    font-size: 1.6rem;
    color: var(--black);
    border-radius: .5rem;
    text-transform: none;
    margin-top: 1.5rem;
}

.booking .book-form .flex .inputBox input:focus{
    border: .1rem solid var(--black);
}

.booking .book-form .flex .inputBox input:focus::placeholder{
    color: #fff9;
}

.booking .book-form .flex .inputBox span{
    font-size: 1.5rem;
    color: var(--black);
}

.booking .book-form .btn{
    margin-top: 2rem;
}

.booking .book-form .btn:hover{
    cursor: pointer;
    background: var(--primary-color);
    color: var(--main-color);
}

/* end */

/* footer */

.footer{
    background: #f3f3f3;
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}
.footer .box-container .box .trio{
    display:flex;
    gap: 30px;

}


.footer .box-container .box h3{
    font-size: 2.2rem;
    color: var(--black);
    padding: 1rem 0;
}


.footer .box-container .box p{
    font-size: 1.5rem;
    color: #666;
    padding-bottom: .5rem;
}

.footer .box-container .box a{
    font-size: 1.4rem;
    color: #666;
    padding: 1rem 0;
    display: block;
}

.footer .box-container .box a:hover{
    color: var(--primary-color);
}

.footer .box-container .box a:hover i{
    padding-right: 2rem;
}

.footer .box-container .box a i{
    padding-right: .5rem;
    color: var(--primary-color);
}

.footer .box-container .box form input[type="email"]{
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
    color: var(--black);
    margin: 1rem 0;
    text-transform: none;
}

.footer .box-container .box form .btn:hover{
    cursor: pointer;
    background: var(--primary-color);
    color: var(--main-color);
}

.credit{
    text-align: center;
    color: #fff;
    background: var(--primary-color);
    font-size: 2rem;
}

/* end */


/* media query */

@media (max-width:700px){
    html{
        font-size: 55%;
    }

    section{
        padding: 1rem;
    }
}

@media (max-width:720px){

    #menu{
        display: inline-block;
    }

    .header .navbar{
        position: absolute;
        top: 110%; right: -110%;
        width: 30rem;
        box-shadow: var(--box-shadow);
        border-radius: .5rem;
        background: #fff;
    }

    .header .navbar.active{
        right: 2rem;
        transition: .4s linear;
    }

    .header .navbar a{
        font-size: 2rem;
        margin: 2rem 2.5rem;
        display: block;
    }
    
}

@media (max-width:450px){
    html{
        font-size: 10%;
    }
}






* {
    font-family: Nunito, sans-serif;
  }
  
  .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
  }
  
  a {
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
  }
  
  .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    line-height: 25px;
  }
  
  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 50px 10px 50px;
  }
  
  .mainImg {
    color: black;
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  
  .text-blk.headingText {
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    color: #5e3719;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
  }
  
  .allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 40%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  
  .text-blk.subHeadingText {
    color: #dfd090;
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  .text-blk.description {
    font-size: 18px;
    line-height: 26px;
    color: rgb(102, 102, 102);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    font-weight: 400;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  .explore {
    font-size: 16px;
    line-height: 28px;
    color: rgb(102, 102, 102);
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: rgb(102, 102, 102);
    border-right-color: rgb(102, 102, 102);
    border-bottom-color: rgb(102, 102, 102);
    border-left-color: rgb(102, 102, 102);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    cursor: pointer;
    background-color: white;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 8px;
    padding-right: 40px;
    padding-bottom: 8px;
    padding-left: 40px;
  }
  
  .explore:hover {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: #dfd090;
    color: white;
    border-top-width: initial;
    border-right-width: initial;
    border-bottom-width: initial;
    border-left-width: initial;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
  }
  
  .responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  
  .responsive-container-block.Container.bottomContainer {
    flex-direction: row-reverse;
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    position: static;
  }
  
  .allText.aboveText {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
  }
  
  .allText.bottomText {
    margin-top: 0px;
    margin-right: 40px;
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  .purpleBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 430px;
    background-color: #5e3719;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    bottom: -35px;
    left: -8%;
  }
  
  .purpleText {
    font-size: 18px;
    line-height: 26px;
    color: white;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }
  
  .ultimateImg {
    width: 50%;
    position: relative;
  }
  
  @media (max-width: 1024px) {
    .responsive-container-block.Container {
      max-width: 850px;
    }
  
    .mainImg {
      width: 55%;
      height: auto;
    }
  
    .allText {
      width: 40%;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 20px;
    }
  
    .responsive-container-block.bigContainer {
      padding-top: 10px;
      padding-right: 10px;
      padding-bottom: 10px;
      padding-left: 10px;
    }
  
    .responsive-container-block.Container.bottomContainer {
      margin-top: 80px;
      margin-right: auto;
      margin-bottom: 50px;
      margin-left: auto;
    }
  
    .responsive-container-block.Container {
      max-width: 830px;
    }
  
    .allText.aboveText {
      margin-top: 30px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 40px;
    }
  
    .allText.bottomText {
      margin-top: 30px;
      margin-right: 40px;
      margin-bottom: 0px;
      margin-left: 0px;
      text-align: left;
    }
  
    .text-blk.headingText {
      text-align: center;
    }
  
    .allText.aboveText {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 30px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .text-blk.subHeadingText {
      text-align: left;
      font-size: 26px;
      line-height: 32px;
    }
  
    .text-blk.description {
      text-align: left;
      line-height: 24px;
    }
  
    .explore {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .responsive-container-block.bigContainer {
      padding-top: 10px;
      padding-right: 30px;
      padding-bottom: 10px;
      padding-left: 30px;
    }
  
    .responsive-container-block.Container {
      justify-content: space-evenly;
    }
  
    .purpleBox {
      bottom: 10%;
    }
  
    .responsive-container-block.Container.bottomContainer {
      padding-top: 10px;
      padding-right: 0px;
      padding-bottom: 10px;
      padding-left: 0px;
      max-width: 930px;
    }
  
    .allText.bottomText {
      width: 40%;
    }
  
    .purpleBox {
      bottom: auto;
      left: -10%;
      top: 70%;
    }
  
    .mainImg {
      width: 100%;
    }
  
    .text-blk.headingText {
      text-align: left;
    }
  }
  
  @media (max-width: 768px) {
    .allText {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .responsive-container-block.Container {
      flex-direction: column;
      height: auto;
    }
  
    .text-blk.headingText {
      text-align: center;
    }
  
    .text-blk.subHeadingText {
      text-align: center;
      font-size: 24px;
    }
  
    .text-blk.description {
      text-align: center;
      font-size: 18px;
    }
  
    .allText {
      margin-top: 40px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .allText.aboveText {
      margin-top: 40px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .responsive-container-block.Container {
      margin-top: 80px;
      margin-right: auto;
      margin-bottom: 50px;
      margin-left: auto;
    }
  
    .responsive-container-block.Container.bottomContainer {
      margin-top: 50px;
      margin-right: auto;
      margin-bottom: 50px;
      margin-left: auto;
    }
  
    .allText.bottomText {
      margin-top: 40px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .mainImg {
      width: 100%;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: -70px;
      margin-left: 0px;
    }
  
    .responsive-container-block.Container.bottomContainer {
      flex-direction: column;
    }
  
    .ultimateImg {
      width: 100%;
    }
  
    .purpleBox {
      position: static;
    }
  
    .allText.bottomText {
      width: 100%;
      align-items: flex-start;
    }
  
    .text-blk.headingText {
      text-align: left;
    }
  
    .text-blk.subHeadingText {
      text-align: left;
    }
  
    .text-blk.description {
      text-align: left;
    }
  
    .ultimateImg {
      position: static;
    }
  
    .mainImg {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .ultimateImg {
      position: relative;
    }
  
    .purpleBox {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      position: absolute;
      left: 0px;
      top: 80%;
    }
  
    .allText.bottomText {
      margin-top: 100px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  }
  
  @media (max-width: 500px) {
    .responsive-container-block.Container {
      padding-top: 10px;
      padding-right: 0px;
      padding-bottom: 10px;
      padding-left: 0px;
      width: 100%;
      max-width: 100%;
    }
  
    .mainImg {
      width: 100%;
    }
  
    .responsive-container-block.bigContainer {
      padding-top: 10px;
      padding-right: 25px;
      padding-bottom: 10px;
      padding-left: 25px;
    }
  
    .text-blk.subHeadingText {
      font-size: 24px;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
      line-height: 28px;
    }
  
    .text-blk.description {
      font-size: 16px;
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
      line-height: 22px;
    }
  
    .allText {
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
      width: 100%;
    }
  
    .allText.bottomText {
      margin-top: 50px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
      padding: 0 0 0 0;
      margin: 30px 0 0 0;
    }
  
    .ultimateImg {
      position: static;
    }
  
    .purpleBox {
      position: static;
    }
  
    .stars {
      width: 55%;
    }
  
    .allText.bottomText {
      margin-top: 75px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .responsive-container-block.bigContainer {
      padding-top: 10px;
      padding-right: 20px;
      padding-bottom: 10px;
      padding-left: 20px;
    }
  
    .purpleText {
      font-size: 16px;
      line-height: 22px;
    }
  
    .explore {
      padding: 6px 35px 6px 35px;
      font-size: 15px;
    }
  }

  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}




.styled-paragraph2 {
    background-color: white;
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 1400px;
    text-align: justify;
    transition: transform 0.2s;
    margin-bottom: 170px;
    margin-top: 50px;
    margin-left: 290px;
}

.styled-paragraph2:hover {
    transform: translateY(-10px);
}

.styled-paragraph2 p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.styled-paragraph2 p::first-letter {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--main-color);
}

.styled-paragraph2 p::first-line {
    font-weight: 600;
    color: var(--main-color);
}
@media (max-width: 786px) {
    .styled-paragraph2 {
        margin-left:8px ;
        padding: 15px;
        font-size: 16px;
        line-height: 1.4;
    }
    
    .styled-paragraph2 p {
        text-align: justify;
    }
}



/*heading*/
.five {
    position: relative;
    height: 400px;
    margin-top: 200px;
    padding: 0 1rem;
}

.five h1 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #202020;
    text-transform: uppercase;
    word-spacing: 1px;
    letter-spacing: 2px;
}

.five h1 span {
    margin-top: 40px;
    text-transform: none;
    font-size: 0.75em;
    font-weight: normal;
    font-style: italic;
    font-family: "Playfair Display", "Bookman", serif;
    color: #999;
    word-spacing: 1px;
    letter-spacing: none;
}

.five h1:before {
    position: absolute;
    left: 0;
    bottom: 350px;
    width: 290px;
    height: 4px;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    background-color: #5e3719;
}

@media (max-width: 786px) {
    .five {
        margin-top: -600px;
        height: auto;
        padding: 0 1rem;
    }

    .five h1 {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-top: 800px;
        height: 400px;
    }

    .five h1 span {
        font-size: 0.85em;
        height: 400px;
    }

    .five h1:before {
        bottom: 360px;
        width: 200px;
        margin-top: 100px;
    
    }
}

@media (max-width: 576px) {
    .five {
        margin-top: -150px;
        height: auto;
        padding: 0 1rem;
    }

    .five h1 {
        font-size: 16px;
        letter-spacing: 1px;
        margin-top: 1000px;
        
    }

    .five h1 span {
        font-size: 0.9em;
    }

    .five h1:before {
        bottom: 250px;
        width: 150px;
        margin-top: 500px;
    }
}
/*fives page classiques*/
.fives {
    position: relative;
    height: 400px;
    margin-top: 200px;
    padding: 0 1rem;
}

.fives h1 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #202020;
    text-transform: uppercase;
    word-spacing: 1px;
    letter-spacing: 2px;
}

.fives h1 span {
    margin-top: 40px;
    text-transform: none;
    font-size: 0.75em;
    font-weight: normal;
    font-style: italic;
    font-family: "Playfair Display", "Bookman", serif;
    color: #999;
    word-spacing: 1px;
    letter-spacing: none;
}

.fives h1:before {
    position: absolute;
    left: 0;
    bottom: 350px;
    width: 290px;
    height: 4px;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    background-color: #5e3719;
}

@media (max-width: 786px) {
    .fives {
        margin-top: -600px;
        height: auto;
        padding: 0 1rem;
    }

    .fives h1 {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-top: 800px;
        height: 400px;
    }

    .fives h1 span {
        font-size: 0.85em;
        height: 400px;
    }

    .fives h1:before {
        bottom: 340px;
        width: 200px;
        margin-top: 100px;
    
    }
}

@media (max-width: 576px) {
    .fives {
        margin-top: -150px;
        height: auto;
        padding: 0 1rem;
    }

    .fives h1 {
        font-size: 16px;
        letter-spacing: 1px;
        margin-top: 1000px;
        
    }

    .fives h1 span {
        font-size: 0.9em;
    }

    .fives h1:before {
        bottom: 250px;
        width: 150px;
        margin-top: 500px;
    }
}
  
  /*fivee page conatct */
  .fivee {
    position: relative;
    height: 400px;
    margin-top: 200px;
}                 
.fivee h1 {
    text-align: center;
    font-size: 22px;
    font-weight: 700; color:#202020;
    text-transform: uppercase;
    word-spacing: 1px; letter-spacing:2px;
  }
  .fivee h1 span {
    margin-top: 40px;
    text-transform: none;
    font-size:.75em;
    font-weight: normal;
    font-style: italic; font-family: "Playfair Display","Bookman",serif;
    color:#999; letter-spacing:-0.005em; word-spacing:1px;
    letter-spacing:none;
    
  }
  .fivee h1:before {
    position: absolute;
    left: 0;
    bottom: 350px;
    width: 130px;
    height: 4px;
    content: "";
    left: 48%;
    margin-left: -30px;
    background-color: #5e3719;
  }
  @media (max-width: 786px) {
    .fivee {
        margin-top: -600px;
        height: auto;
        padding: 0 1rem;
    }

    .fivee h1 {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-top: 800px;
        height: 400px;
    }

    .fivee h1 span {
        font-size: 0.85em;
        height: 400px;
    }

    .fivee h1:before {
        bottom: 360px;
        width: 90px;
        margin-top: 100px;
    
    }
}
  

                                  /* seven page styles */
  .seven {
    margin-top: -190px;
  
  }
  .seven h1 {
    text-align: center;
        font-size:30px; font-weight:300; color:#222; letter-spacing:1px;
        text-transform: uppercase;
    
        display: grid;
        grid-template-columns: 1fr max-content 1fr;
        grid-template-rows: 27px 0;
        grid-gap: 20px;
        align-items: center;
    }
    
    .seven h1:after,.seven h1:before {
        content: " ";
        display: block;
        border-bottom: 1px solid #5e3719;
        border-top: 1px solid #dfd090;
        height: 5px;
      background-color:#f8f8f8;
    }


                          /*sevenn page qui sommes nous */


                          .sevenn {
                            margin-top: 150px;
                            position: relative; /* Ensure proper stacking context */
                        }
                        
                        .sevenn h1 {
                            text-align: center;
                            font-size: 30px;
                            font-weight: 300;
                            color: #222;
                            letter-spacing: 1px;
                            text-transform: uppercase;
                            display: grid;
                            grid-template-columns: 1fr max-content 1fr;
                            grid-template-rows: 27px 0;
                            grid-gap: 20px;
                            align-items: center;
                            z-index: 2; /* Ensure the h1 is on top */
                            position: relative; /* Required to apply z-index */
                        }
                        
                        .sevenn h1:after, .sevenn h1:before {
                            content: " ";
                            display: block;
                            border-bottom: 1px solid #5e3719;
                            border-top: 1px solid #dfd090;
                            height: 5px;
                            background-color: #f8f8f8;
                        }
                        
                        .purpleBox {
                            position: relative;
                            z-index: 1;
                            margin-top: -170px;
                        }
                        
                        /* Adjustments for Smaller Screens */
                        @media (max-width: 992px) {
                            .sevenn {
                                margin-top: 100px;
                            }
                            
                            .sevenn h1 {
                                font-size: 25px;
                                grid-gap: 15px;
                            }
                        }
                        
                        @media (max-width: 768px) {
                            .sevenn {
                                margin-top: 75px;
                            }
                            
                            .sevenn h1 {
                                margin-top: 150px;
                                font-size: 20px;
                                grid-template-columns: 1fr max-content 1fr;
                                grid-gap: 10px;
                            }
                        }
                        
                        @media (max-width: 576px) {
                            .sevenn {
                                margin-top: 50px;
                            }
                            
                            .sevenn h1 {
                                font-size: 18px;
                                grid-template-columns: 1fr;
                                grid-template-rows: auto;
                                grid-gap: 5px;
                                text-align: center;
                            }
                        
                            .sevenn h1:after, .sevenn h1:before {
                                display: none; /* Hide the lines on very small screens */
                            }
                        }
                        
                        /* Ensuring title is not hidden behind other elements */
                        @media (max-width: 576px) {
                            .sevenn {
                                margin-top: 50px;
                                padding-left: 10px; /* Add padding to avoid hiding */
                                padding-right: 10px; /* Add padding to avoid hiding */
                            }
                        
                            .purpleBox {
                                margin-top: 20px; /* Adjust the margin to move the box down */
                            }
                        }

/* seven1 page nos tapis */

        .seven1 {
            margin-top: -170px;
          
          }
          .seven1 h1 {
            text-align: center;
                font-size:30px; font-weight:300; color:#222; letter-spacing:1px;
                text-transform: uppercase;
            
                display: grid;
                grid-template-columns: 1fr max-content 1fr;
                grid-template-rows: 27px 0;
                grid-gap: 20px;
                align-items: center;
            }
            
            .seven1 h1:after,.seven1 h1:before {
                content: " ";
                display: block;
                border-bottom: 1px solid #5e3719;
                border-top: 1px solid #dfd090;
                height: 5px;
              background-color:#f8f8f8;
            }



/* seven2 page nos tapis */

.seven2 {
    margin-top: -100px;
  
  }
  .seven2 h1 {
    text-align: center;
        font-size:30px; font-weight:300; color:#222; letter-spacing:1px;
        text-transform: uppercase;
    
        display: grid;
        grid-template-columns: 1fr max-content 1fr;
        grid-template-rows: 27px 0;
        grid-gap: 20px;
        align-items: center;
    }
    
    .seven2 h1:after,.seven2 h1:before {
        content: " ";
        display:block;
        border-bottom: 1px solid #5e3719;
        border-top: 1px solid #dfd090;
        height: 5px;
      background-color:#f8f8f8;
    }


/*seven 3 page classiques*/


    .seven3 {
        margin-top: -200px;
      
      }
      .seven3 h1 {
        text-align: center;
            font-size:30px; font-weight:300; color:#222; letter-spacing:1px;
            text-transform: uppercase;
        
            display: grid;
            grid-template-columns: 1fr max-content 1fr;
            grid-template-rows: 27px 0;
            grid-gap: 20px;
            align-items: center;
        }
        
        .seven3 h1:after,.seven3 h1:before {
            content: " ";
            display:block;
            border-bottom: 1px solid #5e3719;
            border-top: 1px solid #dfd090;
            height: 5px;
          background-color:#f8f8f8;
        }

/*btn defilement*/


.btn-scroll {
    position: relative;
    display: inline-block;
    background-color: #dfd090; 
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    transition: color 0.4s;
    margin-left: 500px;
    margin-bottom: 100px;
    margin-top: -20%;
}

.btn-scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background: linear-gradient(90deg, #5e3719, #5e3719);
    transition: transform 0.4s ease;
    transform: translateX(-100%);
}

.btn-scroll:hover::before {
    transform: translateX(0);
}

.btn-scroll:hover {
    color: #fff;
}
@media (max-width: 786px) {
    .btn-scroll {
        display: block;
        width: 50%;
        box-sizing: border-box;
        padding: 15px;
        font-size: 18px;
        margin: 10px 0;
        left: 180px;
        top: -130px;
    }
}


/*galery page classiques */








.footerr{
    background: #f3f3f3;
    margin-top: 50px;
}

.footerr .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}
.footerr .box-container .box .trio{
    display:flex;
    gap: 30px;

}


.footerr .box-container .box h3{
    font-size: 2.2rem;
    color: var(--black);
    padding: 1rem 0;
}


.footerr .box-container .box p{
    font-size: 1.5rem;
    color: #666;
    padding-bottom: .5rem;
}

.footerr .box-container .box a{
    font-size: 1.4rem;
    color: #666;
    padding: 1rem 0;
    display: block;
}

.footerr .box-container .box a:hover{
    color: var(--primary-color);
}

.footerr .box-container .box a:hover i{
    padding-right: 2rem;
}

.footerr .box-container .box a i{
    padding-right: .5rem;
    color: var(--primary-color);
}

.footerr .box-container .box form input[type="email"]{
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1.6rem;
    color: var(--black);
    margin: 1rem 0;
    text-transform: none;
}

.footerr .box-container .box form .btn:hover{
    cursor: pointer;
    background: var(--primary-color);
    color: var(--main-color);
}

.credit{
    text-align: center;
    color: #fff;
    background: var(--primary-color);
    font-size: 2rem;
}










