@font-face {
    font-family: PP mori;
    src: url(./ppmori.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: PP mori;
    color: #fff;
}

html, body {
    height: 100%;
    width: 100%;
}
#purple{
    height: 100vh;
    width: 100vw;
    top: 0;
    position: fixed;
    z-index: 100;
    background-color: #EDBFFF;
    opacity: 0;
    display: none;
    transition: opacity ease 1s;
    
}
.cursor{
    height: 20px;
    width: 20px;
    border-radius: 50%;
    position: fixed;
    background-color: #afc1f3;
    z-index: 8;
    transition: background-image ease 0.5s;
    background-position: center;
    background-size:cover ;
    mix-blend-mode: difference;
}
.main{
    background-color: #070135; 
    cursor: none;
}

.page1 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 9;
    padding-top: 12vw;
    background-color: #040036; 
}



#nav {
    background-color: #ffffff; /* Set navbar background color to white */
    height: 70px; /* Increase height of the navbar */
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    padding: 0 20px; /* Add padding for spacing */
    box-shadow: none; /* Remove box-shadow for a clean look */
    position: fixed; /* Fix the navbar to the top */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 100%; /* Full width of the viewport */
    z-index: 1000; /* Ensure it sits above other content */
    display: flex; /* Flexbox for layout */
    justify-content: space-between; /* Space out items */
}

/* Ensure content below the navbar does not overlap */
body {
    padding-top: 70px; /* Same as navbar height to push content down */
}

#nav img {
    max-height: 50px; /* Ensure logo image fits within the navbar */
}

#nav-part2 {
    flex: 1; /* Take up remaining space */
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center items horizontally */
}

#nav-part2 h4 {
    margin: 0 20px; /* Add horizontal spacing between items */
    font-size: 16px; /* Adjust font size for readability */
    color: #000; /* Default color */
    text-align: center; /* Center text alignment */
    cursor: pointer; /* Add cursor pointer for interactivity */
    position: relative; /* Position relative for pseudo-element */
    transition: color 0.3s; /* Smooth color transition */
}

#nav-part2 h4:hover {
    color: #00aaff; /* Hover color */
}

#nav-part2 h4::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #00aaff; /* Underline color */
    transition: width 0.3s; /* Smooth underline expansion */
    position: absolute;
    bottom: -5px; /* Position underline below text */
    left: 0;
}

#nav-part2 h4:hover::after {
    width: 100%; /* Expand underline on hover */
}

#nav-part3 {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
}




.page1 h1{
    font-size: 8vw;
    font-weight: 300;
    font-family: PP mori;

    margin-left: 6vw;
    transform-origin: left;
}
.page1 h2{
    font-size: 8vw;
    font-weight: 300;
    transform-origin: left;

    margin-left: 26vw;
}

.page1 video{
    width: 60%;
    margin-top: 10vw;
    position: relative;
    left: 50%;
    transform: translate(-50%,0);
}

.page2{
    min-height: 80vh;
    width: 100%;
    padding: 100px 5vw;
    border-bottom: 2px solid #6c6c6c;
    position: relative;
    z-index: 9;
}

.page2 h1{
    font-size:7vw;
    font-weight: 500;
    color: #111;

}
.page2-container{
    height: 60vh;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 5vw; */
}
.page2-left{
    /* background-color: blue; */
    width: 40%;
}
.page2-right{
    /* background-color: blue; */
    width: 24%;
}
.page2-left h2{
    font-size: 4vw;
    font-weight: 300;
    color: #111;
    line-height: 4vw;
}
.page2-right p{
    font-size: 28px;
    color: #111;
}
.page2-right button{
    width: 100%;
    border-radius: 50px;
    border: none;
    padding: 4px 0;
    background-color: #EDBFFF;
    color: #111;
    margin-top: 20px;
}

.page3{
    min-height: 100vh;
    width: 100%;
    padding-top: 100px;
    position: relative;
    z-index: 9;
}

.page3 h1{
    font-size: 6.8vw;
    font-weight: 300;
    color: #111;
    margin-left: 100px;
}
.page3-part1{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}
.page3-part1 img{
    height: 400px;
    margin-top: 160px;
}
.page3-part1 video{
    height: 400px;
    margin-top: 40px;
}
.page4{
    min-height: 100vh;
    width: 100%;
    z-index: 9;
    position: relative;
    padding: 170px 100px;
}
.elem{
    /* background-color: salmon; */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.elem img{
    position: absolute;
    opacity: 0;
    transition: all ease-out 0.5s;
    transform: translateY(10%) rotate(2deg);
}
.elem img:nth-child(1){
    left: 2%;
}
.elem img:nth-child(3){
    right: 5%;
}
.text-div{
    height: 16vh;
    position: relative;
    z-index: 9;
    overflow: hidden;
}
.elem h1{
    font-size: 7.5vw;
    font-weight: 600;
    transition: all ease-out 0.5s;
}

.elem:hover h1{
    transform: translateY(-100%);
    color: #EDBFFF;
}
.elem:hover img{
    opacity: 1;
    transform: translateY(0%) rotate(0deg);

}


.page5{
    min-height: 100vh;
    width: 100%;
    position: relative;
    z-index: 9;
    padding: 140px 100px;
}
.page5 h2{
    font-size: 4vw;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 50px;
}
.box{
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 20px;
    border-top: 2px solid #dadada;
}

.box:nth-last-child(1){
    border-bottom: 2px solid #dadada;

}

/* footer CSS */

/* footer CSS */

footer {
    background-color: rgba(0,0,0,0.05);
}
footer .services_list {
    padding: 10px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.service img {
    inline-size: 40px;
    background-color: rgb(73, 209, 206); /* changement ici */
    padding: 10px;
    border-radius: 50%;
    margin-block-end: 10px;

}
.service {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 25px auto;
}
.service  p {
    color: #333;
} 
hr {
    background-color: #ccc;
    border: 0;
    block-size: 2px;
    inline-size: 100%;
}
.footer_text {
    text-align: center;
    font-size: 15px;
    padding: 8px 0;
}
.footer_text span {
    color: rgb(73, 209, 206); /* changement ici */
}
.toggle_menu {
    display: none;
}
/* Responsive */
@media (max-inline-size:964px) {
    header .menu {
        display: none;
    }
    header {
        padding: 0 20px;
    }
   
    .toggle_menu {
        display: flex;
        block-size: 40px;
        inline-size: 40px;
         display: flex;
         align-items: center;
         justify-content: center;
         position: relative;
         cursor: pointer;
    }
    .toggle_menu::before {
        position: absolute;
        content: "";
        block-size: 3px;
        inline-size: 28px;
        background-color: rgb(73, 209, 206); /* changement ici */
        border-radius: 6px;
        box-shadow: 0 10px 0 rgb(73, 209, 206); /* changement ici */
        transform: translateY(-10px);
        transition: 0.5s;
    }
    .toggle_menu.active::before {
        transform: translateY(0) rotate(135deg);
        box-shadow: 0 0 0 ; /* changement ici */
    }
    .toggle_menu::after {
        position: absolute;
        content: "";
        block-size: 3px;
        inline-size: 28px;
        background-color: rgb(73, 209, 206); /* changement ici */
        border-radius: 6px;
        transform: translateY(10px);
        transition: 0.5s;
    }
    .toggle_menu.active::after {
        transform: translateY(0) rotate(-135deg);
      
    }
    header .menu.responsive {
        display: flex;
        position: absolute;
        inset-block-start: 50px;
        inset-inline-start: 0;
        inline-size: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        flex-direction: column;
    }
    header .menu.responsive li {
        margin: 15px 0;
    }

}


section{
    padding: 5% 10%;
}





#contact {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 12%;
    
}
.localisation_contact_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 100px 0;
    height: 80vh;
}
.localisation {
    width: 49%;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.localisation iframe {
    width: 100%;
    border-radius: 6px;
}

.localisation_contact_div .form_contact {
    width: 49%;
    height: 100%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    padding: 15px;
    border-radius: 6px;
}
.localisation_contact_div h3 {
    margin-bottom: 10px;
    font-size: 18px;
}
.localisation_contact_div .form_contact form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.form_contact form input , textarea {
    border: 1px solid #ccc;
    width: 100%;
    margin-bottom: 15px;
    padding: 5px;
    outline: 0;
    border-radius: 6px;
    font-size: 15px;
    resize: none;
}
.form_contact form input[type="submit"]{
    margin-bottom: 0;
    background-color: rgb(73, 209, 206);
    color: #fff;
    border: 0;
}

.menu_toggle {
    display: none;
}

/*Responsive*/
@media (max-width:682px) {
   
    #contact {
        height: auto;
    }
    .localisation_contact_div {
        height: auto;
        flex-direction: column;
        width: 100%;
    }
    .localisation{
        width: 100%;
        margin-bottom: 30px;
    }
    .localisation_contact_div .form_contact {
        width: 100%;
        
    }
    .menu_toggle {
        height: 50px;
        width: 50px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .menu_toggle span {
       width: 35px;
       background-color: rgb(73, 209, 206);
       height: 5px;
       border-radius: 6px;
       transition: 0.5s;
    }
    .menu_toggle span.active {
        width: 0px;
    }
    .menu_toggle::before {
        position: absolute;
        content: "";
        width: 20px;
        height: 5px;
        background-color:rgb(73, 209, 206);
        transform: translateY(10px);
        border-radius: 6px;
        transition: 0.5s;
    }
    .menu_toggle.active::before {
        width: 28px;
        transform: rotate(45deg);
    }
    .menu_toggle::after {
        position: absolute;
        content: "";
        width: 20px;
        height: 5px;
        background-color:rgb(73, 209, 206);
        transform:translateY(-10px);
        border-radius: 6px;
        transition: 0.5s;
    }
    .menu_toggle.active::after {
        width: 28px;
        transform: rotate(-45deg);
    }
    header .menu.responsive {
        position: absolute;
        top: 50px;
        left: 0;
        display: flex;
        width: 100%;
        height: 50px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        z-index: 2;
        background-color: #fff;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }
}
.section_title {
    text-transform: uppercase;
    position: relative;
    font-size: 25px;
}
.section_title:before {
    position: absolute;
    left: 10px;
    bottom: 0;
    content: "";
    background-color: rgb(73, 209, 206);
    width: 100%;
    height: 5px;
    border-radius: 6px;
}
.section_title:after {
    position: absolute;
    top: 0;
    left: -10px;
    content: "";
    background-color: rgb(73, 209, 206);
    width: 100%;
    height: 5px;
    border-radius: 6px;
}
.contact1{
    background-color: rgb(222, 222, 222);
    padding: 20px;

}
.contact-info{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, auto));
    gap:3rem;
}
.contact-info h4{
    color: #212529;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.contact-info p{
    color: #565656;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.5;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .42s;
}
.contact-info p:hover{
    color: rgb(73, 209, 206);
}
.social-icon i{
    color: #565656;
    margin-right: 10px;
    font-size: 20px;
    transition: all .42s;    
}
.social-icon i:hover{
    transform: scale(1.3);
}
@keyframes fadeInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}














/* Add this to your style.css file */

.page6 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #c7b0e9; /* Dark background to highlight the button */
    position: relative;
}

.shop-now-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.btn-shop-now {
    display: inline-block;
    padding: 20px 40px;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(to right top, #4446bd, #7045cc, #993fd6, #c233dd, #eb12df);
    border: none;
    border-radius: 15px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-shop-now:hover {
    background: linear-gradient(to right bottom, #3dd2e0, #00bcfa, #449dff, #a76ee4, #dc1f9b);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.btn-shop-now:active {
   
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(2px);
}



