/* ====================================
   🎨 DESIGN MODERNE & FÉMININ - TECH
   Couleurs tendances 2025
   ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales - Violet/Rose moderne */
    --primary: #8b5cf6;        /* Violet moderne */
    --secondary: #ec4899;       /* Rose vif */
    --accent: #06b6d4;          /* Cyan tech */
    --gold: #f59e0b;            /* Or chaleureux */
    
    /* Fonds */
    --bg-dark: #1a1625;         /* Violet très foncé */
    --bg-light: #faf5ff;        /* Lavande très clair */
    --bg-white: #ffffff;
    
    /* Texte */
    --text-dark: #2d1b4e;       /* Violet foncé */
    --text-medium: #6b5494;     /* Violet moyen */
    --text-light: #9ca3af;      /* Gris clair */
    
    /* Effets */
    --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    --gradient-3: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    --gradient-bg: linear-gradient(135deg, #faf5ff 0%, #fce7f3 50%, #e0e7ff 100%);
    
    --shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
    --shadow-hover: 0 15px 40px rgba(139, 92, 246, 0.3);
    --border-radius: 20px;
}

/* ====================================
   BASE
   ==================================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--gradient-bg);
    background-attachment: fixed;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

/* ====================================
   CONTAINER
   ==================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ====================================
   HEADER - Design moderne avec glassmorphism
   ==================================== */

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

header h1 {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: -1px;
}

.subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ====================================
   NAVIGATION - Style moderne avec pills
   ==================================== */

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    position: relative;
    overflow: hidden;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    transition: left 0.4s ease;
    z-index: -1;
}

nav a:hover::before {
    left: 0;
}

nav a:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

nav a.active {
    background: var(--gradient-1);
    color: white;
    box-shadow: var(--shadow);
}

/* ====================================
   HERO - Section d'accueil impactante
   ==================================== */

.hero {
    background: var(--gradient-1);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    color: white;
    border: none;
    padding: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.intro {
    font-size: 1.4rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* ====================================
   MAIN CONTENT - Cards modernes
   ==================================== */

.content {
    padding: 4rem 0;
}

article {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: transform 0.3s ease;
}

article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 3px solid;
    border-image: var(--gradient-1) 1;
    padding-bottom: 1rem;
}

h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    line-height: 2;
    padding: 1.5rem;
    background: linear-gradient(135deg, #faf5ff 0%, #fce7f3 100%);
    border-radius: 15px;
    border-left: 5px solid var(--primary);
}

/* ====================================
   HIGHLIGHT BOXES - Dégradés colorés
   ==================================== */

.highlight {
    background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
    padding: 2.5rem;
    border-radius: 25px;
    margin: 3rem 0;
    border-left: 6px solid var(--primary);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
}

.formation-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    padding: 2.5rem;
    border-radius: 25px;
    margin: 3rem 0;
    border-left: 6px solid var(--gold);
    box-shadow: 0 5px 20px rgba(245, 158, 11, 0.1);
}

.inspiration-box {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 25px;
    margin: 3rem 0;
    border-left: 6px solid var(--accent);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.1);
}

/* ====================================
   LISTS - Style moderne
   ==================================== */

ul {
    margin: 1.5rem 0;
}

li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    padding-left: 0.5rem;
}

.values-list {
    list-style: none;
    margin-left: 0;
    display: grid;
    gap: 1rem;
}

.values-list li {
    background: white;
    padding: 1.5rem;
    margin-bottom: 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 10px rgba(139, 92, 246, 0.08);
}

.values-list li:hover {
    transform: translateX(15px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ====================================
   SKILLS GRID - Cards avec animations
   ==================================== */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.skill-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.skill-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0);
    transition: transform 0.3s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1.1) rotate(5deg);
}

.skill-card h4 {
    margin-bottom: 1rem;
}

.skill-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ====================================
   STRENGTHS GRID
   ==================================== */

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.strength-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--accent);
    transition: transform 0.3s ease;
}

.strength-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.strength-card h4 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* ====================================
   CHALLENGES - Cards rouges/oranges
   ==================================== */

.challenges {
    margin: 3rem 0;
    display: grid;
    gap: 1.5rem;
}

.challenge-item {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid #ef4444;
    transition: transform 0.3s ease;
}

.challenge-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.challenge-item h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* ====================================
   QUOTES - Citations stylées
   ==================================== */

.quote {
    margin: 4rem 0;
    text-align: center;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    padding: 3rem;
    background: white;
    border-radius: 25px;
    position: relative;
    box-shadow: var(--shadow);
    line-height: 2;
    font-weight: 500;
}

blockquote::before {
    content: '"';
    font-size: 6rem;
    color: var(--secondary);
    position: absolute;
    top: -20px;
    left: 30px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* ====================================
   IMAGES AND VIDEO - Moderne
   ==================================== */

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

figure {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 3px solid white;
}

figure:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

figure img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

figure:hover img {
    transform: scale(1.1);
}

figcaption {
    padding: 1.5rem;
    background: white;
    text-align: center;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 500;
}

.video-container {
    margin: 3rem 0;
    text-align: center;
}

video {
    width: 100%;
    max-width: 800px;
    border-radius: 25px;
    box-shadow: var(--shadow-hover);
    border: 5px solid white;
}

.video-caption {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* ====================================
   CTA BOX - Call to action moderne
   ==================================== */

.cta-box {
    background: var(--gradient-1);
    color: white;
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    margin: 4rem 0;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-box h3 {
    color: white;
    margin-top: 0;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: white;
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: var(--bg-light);
}

/* ====================================
   BACK TO TOP - Style moderne
   ==================================== */

.back-to-top {
    text-align: center;
    margin-top: 4rem;
}

.back-to-top a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.back-to-top a:hover {
    color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ====================================
   FOOTER - Design moderne
   ==================================== */

footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-top: 5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
}

footer p {
    color: white;
    margin: 0.8rem 0;
}

footer a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent);
}

.footer-note {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* ====================================
   ANIMATIONS
   ==================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

article {
    animation: fadeInUp 0.6s ease-out;
}

/* ====================================
   RESPONSIVE - Mobile first
   ==================================== */

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .intro {
        font-size: 1.1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    article {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .skills-grid,
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}

/* ====================================
   SCROLLBAR PERSONNALISÉE
   ==================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}