@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* init */
*{
    box-sizing: border-box;
}

html{
    font-size: 16px;
}

@media (max-width: 768px){
    html{
        font-size: 14px;
    }    
}

:root{
    --font-size-body : 1rem;
    --body-font-family : "Poppins", sans-serif;
    --heading-font-family : "Manrope", sans-serif;


    --text-sm : .875rem;
    --text-normal : 1rem;
    --text-md : 1.25rem;
}

:root{
    --primary-color: #07989D;
    --secondary-color : #383D3B;
    --body-color : #000000;
}

body{
    font-size: 1rem;
    font-family: var(--body-font-family);
    font-weight: 400;
    color : var(--body-color);
}

p{
    margin-bottom: 0rem;
}

img{
    width: 100%;
}

a{
    color: inherit;
    text-decoration: none;
}
/* a:hover{
    color: inherit;
} */


/* ============== utilities ================= */
.body-font-family{
    font-family: var(--body-font-family);
}
.heading-font-family{
    font-family: var(--heading-font-family);
}
.text-secondary{
    color : var(--secondary-color);
}


/* ============= headings ==================*/ 
@media (min-width : 992px){
    h1, .h1{
        font-size: 3.75rem;
    }
    h2, .h2{
        font-size: 3rem;
    }
    h3, .h3{
        font-size: 2.4rem;
    }
    h4, .h4{
        font-size: 1.92rem;
    }
    h5, .h5{
        font-size: 1.5rem;
    }
    h6, .h6{
        font-size: 1rem;
    }
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
    font-family: var(--heading-font-family);
    font-weight: 700;
    margin-bottom: 0;
}

/* ========= icons ============= */
svg.icon{
    width: 1rem;
}

/* ============== links =========== */
.primary-link{
    color : var(--primary-color);
    transition: color 300ms;
}
.primary-link:hover{
    background-color : #07989d;
}


/* ============ Button ================== */
.button{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    outline: 0;
    cursor: pointer;
    padding: .75rem 1.25rem;
    font-size: var(--text-normal);
    font-weight: 500;
    line-height: 20px;
    vertical-align: middle;
    border: 1px solid;
    border-color: transparent;
    border-radius: 6px;
    background-color: transparent;
    color: #000000;
    text-decoration: none;
    text-align: center;
    text-wrap: wrap;

    transition-property: color, background-color, border-color;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px 0px inset;
    transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
}

.button.primary-button{
    border-color: #07989d;
    background-color: var(--primary-color);
    color: #ffffff;
}
.button.primary-button:hover{
    background-color : #067a7e;
    color: #ffffff;
}

.button.button-light{
    background-color : #ffffff;
    border-color: #eeeeee;
    color: #000000;
}
.button.button-light:hover{
    background-color : #e0e0e0;
}

.button.button-link{
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #000000;
    box-shadow: none;
    text-decoration: none;
    transition: color 300ms;
}
.button.button-link .icon{
    transition: transform 300ms;
}
.button.button-link:hover{
    color: #000000d3;
}
.button.button-link:hover .icon{
    transform: translateX(10px);
}


.button.rounded{
    border-radius: 100px !important;
}


/* =========== navigation-bar ============= */
.navigation-bar{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    /* width: 700px; */
    width: 900px;
    height: 60px;
    display: flex;
    align-items: center;
    /* color: #ffffff; */
    color: #000000;
    margin-top: 2.5rem;
    /* background-color: #010f10b3; */
    background-color: #010f1017;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    backdrop-filter: blur(50px);
    padding-inline: 1rem;
}

.navigation-bar .nav-logo{
    width: 120px;
}
@media (max-width: 768px){
    .navigation-bar{
        position: absolute;
    }
}
@media (max-width: 992px){
    .navigation-bar{
        width: 350px;
    }
}

@media (max-width: 375px){
    .navigation-bar{
        width: 300px;
    }
    .navigation-bar .nav-logo{
        width: 110px;
    }
}

.navigation-bar .navbar-button{
    font-size: var(--text-sm);
    border-radius: 100px;
    padding: .5rem 1rem;
}
/* ============= header ================ */
header{
    position: relative;
    /* height: 100vh; */
}
.hero{
    position: relative;
}
.hero-bg-top{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    overflow: hidden;
}
.hero-bg-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    overflow: hidden;
}

.hero-content{
    position: relative;
    z-index: 1;
    padding-top: 10rem;
}

.hero .hero-emoji {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.375rem;
    height: 4.375rem;
    border-radius: 12px;
}
.hero .hero-emoji  img{
    width: 3.125rem;
}

@media (max-width: 768px){
    header{
        height : auto;
    }
    .hero .hero-emoji {
        display: none;
    }    
    .hero .hero-btn{
        width: 100%;
    }
    .hero-bg-bottom img, .hero-bg-top img{
        transform : scale(2);
    }
}

.hero-emoji.cash-emoji {
    left: 6%;
    top: 28%;
    transform: rotate(-18deg);
    background-color: #faebd7;
}

.hero-emoji.chart-bar-emoji {
    left: 16%;
    top: 66%;
    transform: rotate(18deg);
    background: #f0f8ff;
}

.hero-emoji.rocket-emoji {
    right: 10%;
    top: 28%;
    transform: rotate(15deg);
    background: #f9dbd1;
}

.hero-emoji.shopping-cart-emoji {
    right: 15%;
    top: 65%;
    transform: rotate(-9deg);
    background: #f3f3f3;
}

.badge-announcement {
    display: flex;
    align-items: center;
    border: 1px solid var(--bs-border-color);
    border-radius: 100px;
    padding: .25rem;
    font-size: var(--text-sm);
}

.badge-announcement .heading {
    background-color: var(--primary-color);
    color: white;
    border-radius: 100px;
    padding: .25rem 1rem;
}

.badge-announcement .content{
    padding-inline: .5rem;
}


/* ========== bento cards ============ */
.bento-card {
    --padding : 2rem;
    background-color: #F8F9FC;
    height: 450px;
    /* height: 400px; */
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    overflow: hidden;
    padding: var(--padding);
}

@media (max-width : 576px){
    .bento-card{
        height: 320px;
    }
}

.bento-card .bento-padding-left{
    padding-left: var(--padding);
}
.bento-card .bento-padding-right{
    padding-right: var(--padding);
}

/* ============== Features ================= */
#features .feature .media{
    background-color: #ffffff;
    border-radius: 12px;
}
#features .feature {
    min-height: 100vh;
}

/* ====== scroll section ========= */
.scroll-section {
    position: relative;
    height: 400vh; /* 4x la hauteur de viewport pour permettre le scroll */
    /* background-color: #F8F9FC; */
    /* border: 1px solid var(--bs-border-color); */
    /* border-radius: 12px; */
    /* padding: 2rem; */
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
}

.scroll-section .content-column {
    height: 100vh;
    /* padding: 2rem; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.scroll-section .image-column {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.scroll-section .content-item {
    position: absolute;
    top: 50%;
    left: 4rem;
    right: 4rem;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-item.active {
    opacity: 1;
}


.scroll-section .image-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.image-item.active {
    opacity: 1;
}

.scroll-section .media {
    background-color: #f4f4f6;
    /* border-radius: 12px; */
    overflow: hidden;
}

.scroll-section .image-item img {
    max-width: 90%;
}

@media (max-width: 768px) {
    .sticky-container .row {
        flex-direction: column !important;
    }
    
    .content-column, .image-column {
        height: 50vh !important;
    }
    
    .content-item {
        left: 2rem !important;
        right: 2rem !important;
    }
}

/* =========== forms ========== */
.input {
    border: 1px solid #FFFFFF;
    outline: none;
    min-height: 45px;
    width: 100%;
    border-radius: 100px;
    padding: 0 .75rem;
    background-color: white;
    color: #000000;
    font-size: 16px;
}
/* =============== cta ================== */
.cta-container {
    background-color: #07989d;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    background-image: url(/src/images/noise-light.png);
    color : white;
    padding : 2rem;
}

.cta-container .cta-input{
    /* width: 400px; */
    backdrop-filter: blur(35px);
    background-color: #011e1fc2;
    color: #ffffff;
}

.cta-container .content {
    max-width: 620px;
    width: 100%;
}

.cta-container .success-ms {
    display: none;
    background-color: #00968800;
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
    border-radius: 100px;
    backdrop-filter: blur(32px);
}

/* =========== footer ============= */


.footer-container {
    min-height: 300px;
    padding: 2rem;
}

.footer-logo{
    max-width: 300px;
}

@media (max-width : 768px){
    .footer-logo {
        max-width: 250px;
    }
}

.social-icon{
    width: 2rem;
}