/* --------- GLOBAL STYLES --------- */


html {
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    display: flex;
    flex-direction: column;
    align-items: center;
}


li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

a:hover {
    color: gray;
}

/* --------- HEADER --------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    background-color: rgba(0, 0, 0, 0.383);
}


.navbar {
    width: 100%;
    max-width: 1200px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.navbar .button-menu {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.buttons {
    display: flex;
    gap: 10px;
}

.action-button {
    background-color: rgb(19, 163, 149);
    color: #120d31;
    border: 1px solid rgb(19, 163, 149);
    padding: 0.5rem 1.2rem;
    outline: none;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
}

.action-button:hover {
    color: #fff;
    border: 1px solid #fff;
}

.Pro {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.Pro:hover {
    background-color: #fff;
    color: #120d31;
}

/* --------- MENU --------- */
.button-menu-ph {
    display: none;
    height: 0;
    position: absolute; 
    right: 2rem;
    top: 60px;
    width: 200px;
    background: rgba(128, 128, 128, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10; 
}

.button-menu-ph.open {
    height: 280px;
    z-index: 10; 
}

.button-menu-ph li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider {
    height: 1px;
    background-color: #fff;
    width: 80%;
    margin: 1rem auto;
}

.button-menu-ph .action-button {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-ph {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.button-menu-ph1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

/* --------- PRICING --------- */
.pricing-title {
    font-size: 5em;
    color: #fff;
    text-align: center;
}

.PricingContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
}

/* --------- CARDS --------- */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative; 
    z-index: 1; 
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(8px);
    background-color: #ffffff30;
    border-radius: 15px;
    box-shadow: 0 4px 70px rgba(47, 0, 255, 0.371);
    padding: 20px;
    width: 300px;
    height: 440px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1; 
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.price {
    font-size: 2em;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 15px;
}

.description {
    margin: 90px 0;
    font-size: 1em;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.big-dot {
    display: flex;
    align-items: center; /* Centre verticalement le point et le texte */
}

.dot::before {
    content: "•"; /* Caractère du point */
    font-size: 2em; /* Taille du point */
    color: #007aff; /* Couleur du point */
    margin-right: 10px; /* Espace entre le point et le texte */
    display: inline-block; /* Pour que le point soit traité comme un élément inline */
}


.t12 {
    color: #fff;
    font-size: 1.2em;
}




.buy-button {
    display: inline-block;
    margin-top: 44px;
    padding: 12px 24px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
}

.buy-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}


.buy-button-15 {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
}

.buy-button-15:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
/* --------- LANDING --------- */



.infohcontainer {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}



img {
    max-width: 80%;             
    height: auto;                
    object-fit: contain;       
    transition: all 0.3s ease;  
}


.objective {
    color: grey;            
    font-size: 3rem;        
    text-align: center;         
    margin-top: 20px;           
}


.highlight {
    font-size: 5rem; 
    background: linear-gradient(90deg, #FF5733, #FFC300, #FF33F6); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    display: inline-block; 
    transition: color 0.3s ease; 
}


.coq {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


@media (max-width: 600px) {
    img {
        max-width: 100%;         
    }
    .objective {
        font-size: 2.5rem;       
    }
    .highlight {
        font-size: 4rem;        
    }
}
/* --------- Button More --------- */

.more-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.container-eg-btn-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: .5em;
}

.container-eg-btn-3 .button {
    color: #fff;
    padding: 12px 15px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: .3s;
    z-index: 1;
    background: rgb(69, 69, 69);
    cursor: pointer;
    border-radius: 6px;
}

.container-eg-btn-3 .button-8:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 6px;
}

.container-eg-btn-3 .button-8:hover:before,
.container-eg-btn-3 .button-8:hover:after {
    opacity: 1;
}

.container-eg-btn-3 .button-8:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 6px;
    opacity: 0;
}

.container-eg-btn-3 .button-8:active:after {
    background: transparent;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}


/* --------- Expand Box --------- */

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

body {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Utiliser min-height au lieu de height */
    background-color: black;
}


.more-button-container {
    margin-top: 70px;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Fenêtre d'expansion */
.expandable {
    width: 400px;
    height: 0;
    margin-top: 10px;
    overflow: hidden;
    background-color: #1a1a1a;
    border-radius: 20px;
    transition: height 0.5s ease; /* Animation de la hauteur */
    opacity: 1;
    padding: 0 20px;
}

.hidden-text {
    opacity: 0;
    font-size: 1.2rem;
    color: white;
    margin-top: 30px;
    margin-bottom: 30px; 
    transition: opacity 0.5s ease-in-out, transform 0.5s ease;
}

.hidden-text.show {
    opacity: 1;
    transform: translateY(0);
}


.hidden-text.hide {
    opacity: 0;
    transform: translateY(-10px);
}

/* --------- ABOUT --------- */



.bruh {
  border-radius: 50%;
}






/* --------- RESPONSIVE --------- */
@media (max-width: 700px) {
    header {
        background: none;
    }

    .navbar .links,
    .navbar .action-button {
        display: none;
    }

    .navbar .button-menu {
        display: block;
    }

    .button-menu-ph {
        display: block;
    }

    .pricing-title {
        font-size: 3em;
    }

    .PricingContainer {
        height: auto;
        padding: 20px;
    }

    .card-container {
        flex-direction: column;
        gap: 20px;
        align-items: center; /* Centre les cartes */
    }

    .card {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .description {
        margin: 40px 0;
    }

    .buy-button {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 2.5em;
    }

    .card {
        width: 100%;
        padding: 15px;
        height: auto;
    }

    .description {
        margin: 30px 0;
    }

    .buy-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}
