/* ==================================== */
/* 🏡 CREATIVE HERO (PORTFOLIO)       */
/* ==================================== */

.creative-hero {
    height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    position: relative;
    padding-top: 5vh; 

    background-color: var(--white); 
    background-image: none; 
}

/* 🚀 NOUVEAU : Formes d'arrière-plan (Carrés) */
.creative-hero .shape {
    position: absolute;
    border-radius: 0; 
    opacity: 0.1; 
    background: var(--black);
    z-index: 0; 
    animation: square-move 10s ease-in-out infinite alternate;
}

/* ➡️ CARRÉS PLUS GROS ET SUPERPOSÉS */
.shape-1 {
    width: 400px; /* Augmenté */
    height: 400px; /* Augmenté */
    top: 0;
    left: 0;
    background: var(--black);
    opacity: 0.08;
    animation-delay: 1s;
    transform: rotate(15deg);
}

.shape-2 {
    width: 550px; /* Augmenté */
    height: 550px; /* Augmenté */
    bottom: -200px; 
    right: -100px;
    background: var(--grey);
    opacity: 0.05; 
    animation-duration: 12s;
    transform: rotate(-30deg);
}

.shape-3 {
    width: 250px; /* Augmenté */
    height: 250px; /* Augmenté */
    top: 40%;
    right: 15%;
    background: var(--black);
    opacity: 0.1;
    animation-duration: 7s;
    transform: rotate(45deg);
}

.shape-4 {
    width: 150px; /* Augmenté */
    height: 150px; /* Augmenté */
    bottom: 10%;
    left: 15%;
    background: var(--grey);
    opacity: 0.06;
    animation-duration: 8s;
    animation-delay: 0.5s;
    transform: rotate(0deg); 
}

/* 🆕 NOUVEAU CARRÉ 5 */
.shape-5 {
    width: 300px;
    height: 300px;
    top: 10%; 
    right: 5%;
    background: var(--grey);
    opacity: 0.04;
    animation-duration: 9s;
    animation-delay: 2s;
    transform: rotate(60deg);
}

/* 🆕 NOUVEAU CARRÉ 6 */
.shape-6 {
    width: 100px;
    height: 100px;
    bottom: 5%;
    right: 40%;
    background: var(--black);
    opacity: 0.07;
    animation-duration: 5s;
    animation-delay: 3s;
    transform: rotate(-10deg);
}
/* FIN DES CARRÉS */


.creative-container {
    position: relative; 
    z-index: 5;
    
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.8;
}

/* --- LIGNE 1 : PORT --- */
.line-port {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 16vw; 
    text-transform: uppercase;
    color: var(--black);
    margin: 0;
    letter-spacing: -5px;
    position: relative;
    z-index: 3;
}

.letter-anim {
    display: inline-block;
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
    animation-delay: var(--delay);
}

/* --- LIGNE 2 : fol(i)o --- */
.line-folio {
    display: flex;
    align-items: baseline;
    justify-content: center;
    position: relative;
    
    top: -5vw;           
    margin-left: 35vw; 
    z-index: 4;
}

.serif-text {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16vw;
    color: var(--black);
    font-weight: 400;
    letter-spacing: -5px;
}

.anim-up {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
    animation-delay: var(--delay);
}

/* --- L'IMAGE (Le "i") - TAILLE AUGMENTÉE --- */
.image-i-wrapper {
    width: 18vw;
    margin: 0 0.5vw;
    position: relative;
    top: 6vw; 
    z-index: 0; 
    
    opacity: 0;
    transform: scale(0);
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: var(--delay);
}

.cele-i {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}



																			/* --- STORYTELLING SECTION --- */
.story-section {
    background-color: #000; /* Fond noir profond */
    color: #e0e0e0; /* Blanc cassé pour ne pas brûler les yeux */
    padding: 100px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Police propre */
    overflow: hidden;
}

.story-container {
    max-width: 700px; /* Colonne de lecture étroite pour le confort */
    margin: 0 auto;
    position: relative;
}

/* Chaque bloc de texte */
.story-block {
    margin-bottom: 80px; /* Beaucoup d'espace entre les paragraphes */
    line-height: 1.8;
    font-size: 1.2rem;
    font-weight: 300;
}

/* --- Typographie et Effets --- */
.date-highlight {
    display: block;
    font-family: 'Times New Roman', serif;
    font-style: italic;
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.highlight-white {
    color: #fff;
    font-weight: 600;
    font-size: 1.4rem;
}

.italic-soft {
    font-style: italic;
    color: #bbb;
    border-left: 2px solid #333;
    padding-left: 20px;
    margin-top: 20px;
}

.dimmed-text {
    color: #777; /* Texte grisé pour les parenthèses/pensées */
    font-size: 1.1rem;
}

.big-statement {
    font-family: 'Times New Roman', serif;
    font-size: 3rem;
    color: #fff;
    margin: 40px 0;
    text-align: center;
    font-weight: normal;
    font-style: italic;
    letter-spacing: 2px;
}

.final-sentence {
    margin-top: 40px;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
}

/* --- ANIMATION SCROLL REVEAL --- */
/* État initial : invisible et décalé vers le bas */
.reveal-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out; /* Animation fluide de 1s */
}

/* État final (ajouté par JS) : visible et à sa place */
.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

										
																			
/* ==================================== */
/* 🎬 KEYFRAMES (Animations)          */
/* ==================================== */

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-100px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(100px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0) rotate(-10deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 🚀 KEYFRAME pour les Carrés */
@keyframes square-move {
    0% { transform: scale(1) translate(0, 0) rotate(0deg); }
    100% { transform: scale(1.05) translate(10px, -10px) rotate(5deg); }
}

/* ==================================== */
/* 📱 RESPONSIVE (Mobile)             */
/* ==================================== */
@media (max-width: 900px) {
    .line-port, .serif-text {
        font-size: 20vw;
    }
    
    .line-folio {
        margin-left: 15vw; 
        top: -3vw; 
    }
    
    .image-i-wrapper {
        width: 18vw;
        top: 4vw;
    }
    
    .creative-hero {
        min-height: 60vh; 
        height: auto;
        padding: 60px 0 20px 0;
    }
    
    /* Les formes sont cachées sur mobile */
    .shape-1, .shape-2, .shape-3, .shape-4, .shape-5, .shape-6 {
        width: 0;
        height: 0;
        opacity: 0;
    }
    
    .presentation-section {
        padding: 50px 20px;
    }
    
    .presentation-section p {
        font-size: 1.1rem;
    }
    
    .presentation-content .signature {
        font-size: 2rem;
    }
}
																							
																							
																							
																							
																							
																									
									
/* ==================================== */
/* 🦶 FOOTER MODERN & SMOOTH ANIMATIONS */
/* ==================================== */

/* 1. Configuration des animations fluides */
:root {
    /* Courbe de Bézier "Expo" : démarre vite, freine très doucement (effet premium) */
    --ease-smooth: cubic-bezier(0.19, 1, 0.22, 1);
    /* Durée un peu plus longue pour laisser le temps à l'œil de suivre */
    --duration-smooth: 0.5s; 
}

.main-footer {
    background-color: var(--white);
    border-top: 1px solid #eeeeee;
    padding: 80px 10% 30px 10%;
    font-family: sans-serif; /* Ou votre police habituelle */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

/* --- COLONNE 1 : Identité --- */
.identity-col .footer-logo {
    margin-bottom: 25px;
}

.identity-col .address {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* --- ICÔNES RÉSEAUX (Animation "Float") --- */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; /* Légèrement plus grand pour le confort */
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    color: #999;
    text-decoration: none;
    font-size: 18px;
    
    /* 🚀 L'ANIMATION CLÉ */
    transition: transform var(--duration-smooth) var(--ease-smooth),
                background-color 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease;
}

.social-links a:hover {
    border-color: var(--black);
    background-color: var(--black);
    color: var(--white);
    /* L'icône "flotte" vers le haut sans saccade */
    transform: translateY(-5px) scale(1.05);
}

/* --- COLONNES 2 & 3 : Titres --- */
.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 800;
}

/* --- LIENS DE NAVIGATION (Animation "Slide") --- */
.nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-col ul li {
    margin-bottom: 15px;
    overflow: hidden; /* Garde tout propre */
}

.nav-col ul li a {
    display: inline-block; /* Indispensable pour que transform fonctionne */
    color: var(--grey);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    
    /* 🚀 L'ANIMATION CLÉ */
    transition: transform var(--duration-smooth) var(--ease-smooth),
                color 0.3s ease;
}

.nav-col ul li a:hover {
    color: var(--black);
    /* Glissement fluide vers la droite */
    transform: translateX(10px);
}

/* --- CONTACT (Animation subtile) --- */
.contact-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: inline-block;
    color: var(--grey);
    text-decoration: none;
    font-size: 1rem;
    
    /* 🚀 L'ANIMATION CLÉ */
    transition: transform var(--duration-smooth) var(--ease-smooth),
                color 0.3s ease;
}

.contact-link:hover {
    color: var(--black);
    transform: translateX(5px);
}

/* --- COPYRIGHT --- */
.footer-bottom {
    border-top: 1px solid #f5f5f5;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #cecece;
    font-size: 0.8rem;
    margin: 0;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .main-footer {
        padding: 50px 5% 30px 5%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .social-links {
        justify-content: center;
    }
    
    .contact-col {
        align-items: center;
    }
    
    /* On réduit un peu le mouvement sur mobile pour éviter que ça sorte de l'écran */
    .nav-col ul li a:hover {
        transform: translateX(5px);
    }
}
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
																																									  
/* --- Section CV --- */
.cv-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9; /* Couleur de fond légère */
}

.cv-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.cv-image-wrapper {
    /* Propriétés existantes */
    max-width: 1080px; /* Taille maximale pour l'image du CV */
    margin: 0 auto 30px; /* '0 auto' centre horizontalement le bloc */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;

    /* NOUVEAU : Centrage du contenu si la largeur est inférieure à max-width */
    display: flex; /* Utiliser Flexbox */
    justify-content: center; /* Centrer l'enfant (l'image) */
}

.cv-image {
    width: 100%;
    max-width: 100%; /* S'assurer qu'elle ne dépasse pas son conteneur */
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* 📥 Bouton de téléchargement (Style Ghost Button Épuré) */
.download-button {
    /* Positionnement */
    display: inline-block; 
    margin-top: 20px; 
    
    /* Style du bouton : Contour noir */
    background-color: transparent; /* Fond transparent */
    color: #333; /* Texte noir */
    
    /* Dimensions et forme */
    padding: 12px 30px;
    text-decoration: none;
    border: 2px solid #333; /* Bordure noire */
    border-radius: 4px; /* Coins nets ou légèrement arrondis */
    
    /* Typographie */
    font-weight: 500; 
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95em;
    
    /* Transition pour l'effet de survol */
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s;
}

.download-button i {
    margin-right: 10px;
}

/* Effet de survol (Hover Effect) - Remplissage noir */
.download-button:hover {
    background-color: #333; /* Fond noir */
    color: white; /* Texte blanc */
    transform: translateY(-2px);
    cursor: pointer;
}

/* Animations (si elles sont définies dans votre fichier CSS) */
.anim-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out var(--delay, 0s);
}
.cv-image.anim-fade {
    opacity: 1; /* Retirer cette ligne si vous avez une détection de scroll */
}

.anim-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out var(--delay, 0s), transform 0.6s ease-out var(--delay, 0s);
}
/* Déclenchement des animations si vous utilisez un script pour le faire */
/* Par exemple, une classe 'is-visible' ajoutée par un Intersection Observer */
.is-visible .anim-fade,
.is-visible .anim-up {
    opacity: 1;
    transform: translateY(0);
}																																									  
																																									  
									
																																									  
																																									  /* --- AMBIANCE GÉNÉRALE --- */
.story-section {
    background-color: #050505; /* Noir presque pur */
    color: #ccc;
    padding: 150px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    overflow: hidden;
    perspective: 1000px; /* Pour donner de la 3D */
}

/* --- LUMIÈRES D'AMBIANCE (GLOWS) --- */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    animation: floatGlow 10s infinite alternate ease-in-out;
}
.glow-1 {
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #2a2a72, transparent); /* Bleu nuit Céleste */
}
.glow-2 {
    bottom: 20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4a4a4a, transparent); /* Gris lumière */
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 50px); }
}

/* --- STRUCTURE LIGNE DE TEMPS --- */
.story-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* La ligne verticale centrale */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #444, #fff, #444, transparent);
    transform: translateX(-50%);
    z-index: 1;
}

/* --- MISE EN PAGE ASYMÉTRIQUE --- */
.story-row {
    display: flex;
    justify-content: center;
    margin-bottom: 150px; /* Grand espace vertical */
    position: relative;
    width: 100%;
}

.story-content {
    width: 40%; /* Les textes prennent moins de la moitié pour laisser l'espace */
    padding: 20px;
    position: relative;
}

/* Alignement Gauche */
.story-row.left {
    justify-content: flex-start;
}
.story-row.left .story-content {
    text-align: right;
    margin-right: 50%; /* Pousse vers la ligne centrale */
    padding-right: 40px;
    border-right: 2px solid transparent; /* Prêt pour hover effect */
}

/* Alignement Droite */
.story-row.right {
    justify-content: flex-end;
}
.story-row.right .story-content {
    text-align: left;
    margin-left: 50%;
    padding-left: 40px;
}

/* Connecteurs (Points sur la ligne) */
.story-row.left .story-content::after,
.story-row.right .story-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}
.story-row.left .story-content::after { right: -45px; } /* Ajuster selon le padding */
.story-row.right .story-content::before { left: -45px; }

/* --- STYLE DES TEXTES --- */
.title-focus {
    font-family: 'Times New Roman', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-style: italic;
    font-weight: 400;
}

.small-date {
    display: block;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.highlight-white { color: #fff; font-weight: 600; }

.quote-style {
    border-left: 1px solid #fff; /* Ligne fine blanche */
    padding-left: 15px;
    font-style: italic;
    color: #eee;
    margin: 20px 0;
}

/* --- EFFETS SPÉCIAUX (Dates géantes) --- */
.bg-year {
    position: absolute;
    font-size: 15rem;
    font-family: 'Impact', sans-serif; /* Ou une police très grasse */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03); /* Très transparent */
    z-index: -1;
    line-height: 1;
    pointer-events: none;
}
.story-row.left .bg-year { right: 45%; top: -50px; }
.story-row.center-break .bg-year { left: 50%; transform: translateX(-50%); top: -80px; }

/* --- BLOC CENTRAL "CARTE DE VERRE" (2023) --- */
.story-row.center-break {
    justify-content: center;
}
.story-row.center-break .story-content {
    width: 60%;
    margin: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05); /* Effet verre */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}
.mini-sep { border: 0; border-top: 1px solid #333; margin: 20px 0; }

/* --- TITRE ACCEPTÉE --- */
.big-statement {
    font-size: 3.5rem;
    color: #fff;
    margin: 30px 0;
    font-family: 'Times New Roman', serif;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* --- ANIMATIONS SCROLL --- */
.reveal-text {
    opacity: 0;
    transform: translateY(60px) scale(0.95); /* Effet de montée + zoom */
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1); /* Courbe élégante */
}
.reveal-text.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
    .timeline-line { left: 20px; } /* Ligne déplacée à gauche */
    .story-row { flex-direction: column; margin-bottom: 80px; }
    .story-content { width: 85%; margin-left: 50px !important; margin-right: 0 !important; text-align: left !important; }
    .bg-year { font-size: 8rem; right: 0; }
    .story-row.left .story-content::after { display: none; } /* Enlever les points */
    .story-row.right .story-content::before { left: -35px; } /* Ajuster point */
    
    /* Adapter le point gauche pour mobile */
    .story-row.left .story-content::before {
        content: ''; position: absolute; top: 20px; left: -35px;
        width: 10px; height: 10px; background: #fff; border-radius: 50%;
    }
}
																																									  