* {
    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;
}

/* Style du logo */

.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;
}

/* Fond animé Edge Glow sur toute la page */
.edge-glow-background {
    position: fixed;
    inset: 0;
    background: linear-gradient(45deg, #e875e8, #7f7fff, #03b8ff, #e875e8);
    background-size: 400% 400%;
    animation: edgeGlowAnimation 8s linear infinite;
    filter: blur(30px);
    z-index: -1; /* derrière tout */
}

/* Container principal */
main {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 3rem auto;
    padding: 2rem;
}

/* Formulaire avec fond blanc semi-transparent */
.contact-hero form {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@keyframes edgeGlowAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus {
    border-color: #0071e3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.2);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

button[type="submit"] {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    background-color: #0071e3;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #005bb5;
}

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 */
}