/* style.css */

/* Reset minimal */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", sans-serif;
    background-color: #f9f9f9;
    color: #1c1c1e;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    width: 70px;  /* Réduit la taille du logo à 120px */
    height: auto;  /* Maintient la proportion de l'image */
    display: block;
    margin: 0 auto;  /* Centre l'image si nécessaire */
}


.navbar a {
    display: inline-block;
}

nav ul {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #1c1c1e;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #0071e3;
}

.hero {
    text-align: center;
    padding: 6rem 2rem 4rem;
    background-color: #ffffff;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .highlight {
    color: white;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.edge-glow {
    position: relative;
    padding: 6rem 2rem 4rem;
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent pour contraste */
    border-radius: 12px;
    overflow: hidden;
    z-index: 0;
    backdrop-filter: blur(4px); /* Pour un effet Apple-style doux */
}

.edge-glow::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e875e8, #7f7fff, #03b8ff, #e875e8);
    background-size: 400% 400%;
    animation: edgeGlowAnimation 8s linear infinite;
    z-index: -1;
    filter: blur(10px);
    border-radius: 14px;
}

@keyframes edgeGlowAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



.cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #0071e3;
    color: white;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background-color: #005bb5;
}

.about {
    padding: 4rem 2rem;
    background-color: #f2f2f7;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.values {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: #ffffff;
}

.value-item {
    background-color: #f2f2f7;
    padding: 1.5rem 2rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #7f7fff, #e875e8, #03b8ff);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.value-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.value-item:hover::before {
    opacity: 0.2; /* effet lumineux subtil */
}


/*footer {*/
/*    text-align: center;*/
/*    padding: 2rem;*/
/*    background-color: #f9f9f9;*/
/*    font-size: 0.9rem;*/
/*    color: #888;*/
/*}*/

footer p {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.linkedin-link {
    color: #0071e3; /* Couleur du lien, ici bleu LinkedIn */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #005bb5; /* Couleur au survol */
}

.particles-container {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    height: 300px; /* hauteur fixe souhaitée */
    display: flex;
    align-items: center;
    justify-content: center;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.values {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

