* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 33px 9%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}



.logo {
    font-family: "Bowlby One", sans-serif;
    font-size: 30px;
    font-weight: normal;
    color: #111;
}

.beta {
    font-size: 0.5em;        /* plus petit que le texte principal */
    font-weight: normal;     /* si le logo est bold, tu peux alléger */
    margin-left: 3px;        /* petit espace après le logo */
  }



.navlist {
    display: flex;
}

.navlist a {
    color: #333;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;
}

.navlist a:hover {
    border-bottom: 2px solid #333;
}

#menu-icon {
    color: #333;
    font-size: 35px;
    cursor: pointer;
    display: none;
}

/* HERO */
.hero {
    width: 100%;
    background: linear-gradient(to bottom right, #D66D75, #FFA0DC);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 6rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 90vh;
    padding: 0 19%;
 overflow: hidden; /* ok pour ScrollReveal */



}

.hero2 {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to bottom left,#FFA0DC, #D66D75 );
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding: 0 19%;
    padding-bottom: 30px;
}


.hero-text h4,
.hero-text h1,
.hero2 h4,
.hero-text h2,
.hero-text h6 {
    font-family: 'Titan One', cursive;
    line-height: 1;
    color: white;
    letter-spacing: 1px;
}

.hero-text h4 { font-size: 35px; }
.hero-text h1 { font-size: 50px; }
.hero2 h4 { font-size: 38px; 
    color: #2e004f;
    margin-bottom: 50px;
    text-align: center;
}

.hero-text h2 { font-size: 25px; }
.hero-text h6 {
    font-size: 70px;
    color: #66FF00;
}

.hero-text p {
    color: #2e004f;
    font-size: 13px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin: 30px 0 15px;
}

.hero-img img {
    width: 500px;
    height: auto;
}

/* BUTTONS */
.hero-text a {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all .55s ease;
    font-weight: 600;
    color: white;
    margin-right: 10px;
}



.cta {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid white;
}

.cta:hover {
    background: transparent;
    transform: perspective(300px) translateZ(-10px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);

}

.ctaa {
    background: #eb2835;
    border: 1px solid #eb2835;
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all .55s ease;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-right: 10px;
}

.ctaa:hover {
    background: transparent;
    border: 1px solid white;
    transform: perspective(300px) translateZ(-10px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    color: #2c3e50;
    font-weight: 600;
}

.hero-text a.ctaa i {
    vertical-align: middle;
    margin-right: 5px;
}

/* SOCIAL ICONS */
.icons {
    position: absolute;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);
}

.icons i {
    display: block;
    margin: 26px 0;
    font-size: 24px;
    color: white;
    transition: all .50s ease;
}

.icons i:hover {
    color: #4051e6;
    transform: translateY(-5px);
}







.container {
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}
.container2 {
    margin-top: 100px;
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #3498db;
    min-width: 30px;
}

.feature-content h7 {
    font-family: "Open Sans", sans-serif;
    font-size: 17px;
    font-weight: 800;
    text-align:left;
    color: #2c3e50;
    margin-bottom: 8px;
}

.feature-content p {
    font-family: "Open Sans", sans-serif;
    margin-top: 2px;
    font-size: 14px;
    color: #555;
}


/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    font-size: 13px;
    color: #000000;
  }

@media (min-width: 1195px) {
    .features {
        grid-template-columns: 1fr 1fr;
    }
    
    h1 {
        font-size: 36px;
    }
}

/* ------------------------ RESPONSIVE ------------------------ */

/* Laptop */
@media (max-width: 1535px){
    header {
    padding: 15px 30;
    transition: .2s;
    }
    
    .icons {
    padding: 0 3%;
    transition: .2s;
    }

    .hero-text h1 {
        margin: 0 0 20px;
        }

}

@media (max-width: 1460px){
    section{
    padding: 0 12%;
    transition: .2s;
    }
    .hero-text h1 {
        margin: 0 0 20px;
        }

}

    @media (max-width: 1340px) {
    .hero-text h1 {
    font-size: 50px;
    margin: 0 0 20px;
    }

    .hero-text h5 {
margin-bottom: 25px;
    }
}

@media (max-width: 1195px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 8%;
        gap: 2rem;
    }

    .hero-text {
        padding-top: 140px;
    }

    .hero-img img {
        width: 600px;

    }

    .icons {
        display: none;
    }
    #menu-icon {
        display: block;
    }

    .navlist {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 260px;
        height: 50vh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        padding: 40px 25px;
        transition: .5s ease;
    }

    .navlist.open {
        right: 0;
    }

    .navlist a {
        margin: 12px 0;
        font-size: 18px;
        background-color: #ffffff;

    }
}

/* TABLET + PHONE */
@media (max-width: 768px) {

    #menu-icon {
        display: block;
    }

    .navlist {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 260px;
        height: 50vh;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        padding: 40px 25px;
        transition: .5s ease;
    }

    .navlist.open {
        right: 0;
    }

    .navlist a {
        margin: 12px 0;
        font-size: 18px;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 0 10%;
    }
    .hero2 h4 {
        font-size: 28px;
            }

    .hero-img img {
        width: 100%;
    }
}

/* SMALL PHONE */
@media (max-width: 480px) {

    .hero-text h1 { font-size: 45px; }
    .hero-text h4 { font-size: 25px; }
    .hero-text h6 { font-size: 55px; }
    .hero {
        background-size: 100% 150%;
    }
    .hero2 {
        background-size: 100% 150%;
    }
    .hero2 h4 {
        font-size: 23px;
            }
    .hero-img img {
        width: 100%;
    }
}
