:root {
    --primary-color: #6351e5;
    --secondary-color: #6e3bff;
    --accent-color: #3b78ff;
    --dark-bg: #ffffff;
    --light-text: #121212;
    --gradient: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --neon-gradient: linear-gradient(45deg, #ff7759, #6e3bff, #3b78ff);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--dark-bg);
    color: var(--light-text);
}

/* Suppression des anciens effets de lumière */
p, li, .date, .subtitle, a {
    /* Suppression du text-shadow ici car déjà géré globalement */
}

/* Effet plus prononcé pour les titres */
h1, h2, h3, h4 {
    /* Suppression du text-shadow ici car déjà géré globalement */
}

/* Effet spécial pour les éléments strong uniquement */
strong {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 1px rgba(255, 119, 89, 0.2);
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 119, 89, 0.2);
    transition: transform 0.3s ease;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li a {
    display: block;
    color: var(--light-text);
    text-decoration: none;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    font-weight: 400;
}

nav ul li a:hover {
    color: var(--primary-color);
    background: transparent;
    font-weight: 500;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    height: 25px;
    width: auto;
    margin-right: 20px;
    opacity: 0.9;
}

.section {
    min-height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#accueil {
    padding-top: 100px;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('image/Linkedin banniere bs.png') center/cover;
    position: relative;
}

.banner-section {
    width: 100%;
    height: 400px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: block;
}

.banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: none;
    background: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(110, 59, 255, 0.2);
    transition: box-shadow 0.3s ease;
}

.profile-image:hover {
    box-shadow: 0 15px 40px rgba(255, 119, 89, 0.3);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image:hover img {
    /* Suppression de l'effet de zoom */
}

.profile-content {
    flex: 1;
}

.intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 20px;
    color: var(--light-text);
    opacity: 0.9;
}

#experience, #formation, #projets, #competences, #contact {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 119, 89, 0.15), rgba(255, 119, 89, 0.15)),
                url('image/star.png') center/cover fixed;
    position: relative;
    background-blend-mode: normal, luminosity;
}

/* Suppression des pseudo-éléments qui ne fonctionnent pas */
#experience::after, #formation::after, #projets::after, #competences::after, #contact::after {
    display: none;
}

#experience::before, #formation::before, #projets::before, #competences::before, #contact::before {
    display: none;
}

#experience > *, #formation > *, #projets > *, #competences > *, #contact > * {
    filter: none;
}

.experience-card, .formation-card, .skill-category {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    padding: 35px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    width: 100%;
}

.experience-card:hover, .formation-card:hover, .skill-category:hover {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    box-shadow: none;
}

.experience-card h3, .formation-card h3 {
    color: var(--primary-color);
    -webkit-text-fill-color: initial;
}

.subtitle {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.experience-card ul, .formation-card ul {
    list-style-position: inside;
    margin-top: 15px;
}

.experience-card li, .formation-card li {
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.9);
}

.date {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 5s ease infinite;
    text-shadow: none;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    padding-left: 35px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section h2 {
    width: 100%;
    text-align: left;
    padding-left: 35px;
    margin-bottom: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
}

.contact-info {
    display: grid;
    gap: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.5em;
}

.contact-info a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info p i {
    min-width: 25px; /* Pour garder l'alignement des icônes */
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .profile-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .nav-content {
        flex-direction: column;
        padding: 10px;
    }

    .nav-logo {
        margin-bottom: 10px;
    }

    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Animation du gradient */
@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animation pour le texte gradient */
@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.experience-description p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.9;
}

.reflection {
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin-top: 20px;
}

.experience-description ul {
    margin-left: 20px;
    margin-bottom: 25px;
    list-style: none;
}

.experience-description ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.experience-description ul li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.experience-description h4 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin: 25px 0 15px 0;
    -webkit-text-fill-color: initial;
}

.experience-description > p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-button {
    margin-top: 20px;
    display: inline-block;
}

.contact-button a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 119, 89, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button a:hover {
    background: rgba(255, 119, 89, 0.2);
    transform: translateY(-2px);
}

.contact-button i {
    color: var(--primary-color);
}

.facebook-container {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.facebook-posts {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 119, 89, 0.3);
}

.contact-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-button a[href*="OMNIlIFE"] {
    background: rgba(110, 59, 255, 0.1);
    border: 1px solid var(--secondary-color);
}

.contact-button a[href*="OMNIlIFE"]:hover {
    background: rgba(110, 59, 255, 0.2);
}

.contact-button a[href*="OMNIlIFE"] i {
    color: var(--secondary-color);
}

.contact-button a[href*="facebook"] {
    background: rgba(59, 120, 255, 0.1);
    border: 1px solid var(--accent-color);
}

.contact-button a[href*="facebook"]:hover {
    background: rgba(59, 120, 255, 0.2);
}

.contact-button a[href*="facebook"] i {
    color: var(--accent-color);
}

.facebook-image-link {
    display: inline-block;
    width: 500px;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.facebook-image-link:hover {
    transform: translateY(-5px);
}

.facebook-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.formation-card .contact-button a {
    background: rgba(110, 59, 255, 0.1);
    border: 1px solid var(--secondary-color);
}

.formation-card .contact-button a:hover {
    background: rgba(110, 59, 255, 0.2);
}

.formation-card .contact-button i {
    color: var(--secondary-color);
}

strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 30px;
}

.linkedin-badge {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    padding: 20px;
    margin-left: 0;
    width: 100%;
}

.linkedin-badge iframe {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 119, 89, 0.2);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .linkedin-badge {
        margin-left: 0;
        margin-top: 30px;
        width: 100%;
    }
    
    .linkedin-badge iframe {
        width: 100%;
    }
} 