:root {
--primary-gradient: linear-gradient(to bottom, #C8B6FF 0%, #E7C6FF 100%);
--footer-gradient: linear-gradient(to bottom, #E7C6FF 0%, #C8B6FF 100%);
--stripe-color: #bea7fc;
--glass-bg: rgba(255, 255, 255, 0.2);
--glass-border: rgba(255, 255, 255, 0.4);
--card-bg: rgba(255, 255, 255, 0.9);
--text-primary: #1F1F1F;
--text-secondary: #222;
--text-muted: #666;
--accent-shadow: rgba(162, 155, 254, 0.6);
 
```
--font-body: "Montserrat", sans-serif;
--font-display: "Montserrat", sans-serif;
```
 
}
 
- {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
 
html {
scroll-behavior: smooth;
}
 
body {
font-family: “Montserrat”, sans-serif;
background: linear-gradient(to bottom, #C8B6FF 0%, #E7C6FF 100%);
background-attachment: fixed;
background-repeat: no-repeat;
overflow-x: hidden;
position: relative;
min-height: 100vh;
}
 
/* BANDES VERTICALES */
.bg-stripes {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 70vh;
z-index: -1;
pointer-events: none;
overflow: hidden;
}
 
.bg-stripes div {
position: absolute;
background: #D4C4FF;
opacity: 0.5;
border-radius: 200px;
width: 180px;
transition: transform 0.3s ease;
}
 
.bg-stripes div:nth-child(1) { height: 70vh; top: -25vh; left: 0%; }
.bg-stripes div:nth-child(2) { height: 55vh; top: -18vh; left: 20%; }
.bg-stripes div:nth-child(3) { height: 65vh; top: -22vh; left: 40%; }
.bg-stripes div:nth-child(4) { height: 50vh; top: -15vh; left: 60%; }
.bg-stripes div:nth-child(5) { height: 60vh; top: -20vh; left: 80%; }
 
/* HEADER */
header {
position: absolute;
top: 70px;
width: 100%;
display: flex;
justify-content: center;
z-index: 100;
padding: 0 20px;
}
 
.header-title-bg {
position: absolute;   /* <<< c’est ça qui fait qu’il reste en haut */
top: 0;
left: 50%;
transform: translateX(-50%);
z-index: 1;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
font-size: clamp(90px, 15vw, 280px);
color: rgba(255, 255, 255, 0.3);
white-space: nowrap;
pointer-events: none;
user-select: none;
letter-spacing: -0.02em;
}
 
 
header nav {
background: rgba(255, 255, 255, 0.25);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 0.2px solid rgba(255, 255, 255, 0.5);
padding: 16px 35px;
border-radius: 50px;
box-shadow: 0 8px 32px rgba(200, 182, 255, 0.2);
animation: fadeInDown 0.6s ease;
}
 
 
 
nav ul {
  display: flex;
  justify-content: center;
  gap: 40px; /* espace entre les mots */
  list-style: none;
  padding: 0;
  margin: 0;
}
 
 
/* TRAIT SOUS LE LIEN ACTIF DU MENU */
nav ul li a.active {
    position: relative;
}
 
.contact-section {
  padding: 20px 0;
  margin: 0;
}
 
 
 
 
nav ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px; /* distance du trait sous le mot */
    width: 100%;
    height: 2px; /* épaisseur du trait */
    background: white; /* couleur du trait */
    border-radius: 2px;
}
 
 
nav ul li a {
    font-weight: 600; /* ou 700 si tu veux encore plus épais */
}
 
 
 
 
header ul {
display: flex;
gap: 35px;
list-style: none;
align-items: center;
}
 
header a {
color: white;
text-decoration: none;
font-size: 1.1rem;
font-weight: 400;
position: relative;
transition: all 0.3s ease;
padding: 8px 0;
}
 
header a::after {
content: ‘’;
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: white;
transition: width 0.3s ease;
}
 
header a:hover {
color: #A29BFE;
transform: translateY(-3px);
}
 
header a:hover::after,
header a.active::after {
width: 100%;
}
 
header a.active {
font-weight: 600;
}
 
/* HERO */
.hero {
min-height: 45vh;
display: flex;
justify-content: center;
align-items: center;
padding-top: 10px;
padding-bottom: 10px;
position: relative;
z-index: 10;
}
 
.hero-center {
text-align: center;
animation: fadeInUp 0.8s ease;
position: relative;
z-index: 10;
}
 
.laptop {
mix-blend-mode: normal;
width: 110%;
max-width: 1300px;
opacity: 1;
margin-bottom: 20px;
animation: float 3s ease-in-out infinite;
filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
position: relative;
z-index: 1;
}
 
.hero-text h1 {
font-family: “Montserrat”, sans-serif;
font-size: clamp(2rem, 5vw, 3.5rem);
color: var(–text-primary);
margin-bottom: 15px;
font-weight: 600;
}
 
.hero-text .subtitle {
font-size: clamp(1rem, 2vw, 1.2rem);
color: var(–text-secondary);
margin-bottom: 8px;
opacity: 0.9;
}
 
.hero-text .welcome {
font-size: clamp(1.1rem, 2.5vw, 1.3rem);
color: var(–text-primary);
margin-top: 25px;
line-height: 1.6;
font-weight: 300;
}
 
/* SECTION À PROPOS */
.section {
width: 90%;
max-width: 1000px;
margin: 20px auto 120px;
padding: 60px 45px;
background: #ffffff;
border-radius: 22px;
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
animation: fadeIn 0.8s ease;
}
 
.section h2 {
font-family: “Montserrat”, sans-serif;
font-size: clamp(1.8rem, 4vw, 2.8rem);
color: var(–text-primary);
margin-bottom: 30px;
font-weight: 600;
}
 
.section .description {
font-size: clamp(1rem, 2vw, 1.15rem);
line-height: 1.8;
color: var(–text-secondary);
opacity: 0.9;
}
 
/* PAGE PORTFOLIO */
.portfolio-section {
width: 100%;
min-height: 100vh;
padding-top: 180px;
padding-bottom: 100px;
}
 
.portfolio-intro {
  width: 90%;
  max-width: 800px;
  margin: 80px auto 50px;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  animation: fadeIn 0.8s ease;
}
 
.portfolio-intro p {
font-size: clamp(0.95rem, 2vw, 1.05rem);
color:#ffffff
opacity: 0.9;
line-height: 1.7;
margin-bottom: 25px;
}
 
.portfolio-pdf-btn {
display: inline-block;
background: linear-gradient(135deg, rgb(224, 215, 249) 0%, #e2ccfe 100%);
color: #ffffff;
padding: 12px 30px;
border-radius: 50px;
text-decoration: none;
font-size: 0.95rem;
font-weight: 600;
box-shadow: 0 6px 20px rgba(212, 196, 255, 0.4);
transition: all 0.3s ease;
font-family: “Montserrat”, sans-serif;
}
 
.portfolio-pdf-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(212, 196, 255, 0.6);
}
 
.projects-title {
text-align: center;
margin-bottom: 30px;
}
 
.projects-title h2 {
font-family: “Montserrat”, sans-serif;
font-size: clamp(1.8rem, 4vw, 2.5rem);
color: var(–text-primary);
font-weight: 600;
margin-bottom: 15px;
}
 
.projects-subtitle {
font-size: clamp(0.9rem, 2vw, 1rem);
color: var(–text-muted);
}
 
.portfolio-filters {
width: 90%;
max-width: 1200px;
margin: 0 auto 50px;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 15px;
animation: fadeIn 1s ease;
}
 
.filter-btn {
background: rgba(255, 255, 255, 0.9);
color: var(–text-primary);
padding: 10px 25px;
border: none;
border-radius: 25px;
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(200, 182, 255, 0.15);
font-family: “Montserrat”, sans-serif;
}
 
.filter-btn:hover,
.filter-btn.active {
background: linear-gradient(135deg, #D4C4FF 0%, #E7D6FF 100%);
color: white;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(212, 196, 255, 0.5);
}
 
.portfolio-grid {
width: 90%;
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 60px 40px;
padding: 20px;
}
 
.project-card {
text-align: center;
animation: fadeInUp 0.6s ease;
cursor: pointer;
transition: transform 0.3s ease;
}
 
.project-card:hover {
transform: translateY(-8px);
}
 
.project-image {
width: 100%;
height: auto;
margin-bottom: 20px;
position: relative;
display: flex;
justify-content: center;
}
 
.project-image img {
width: 40%;
border-radius: 0px;
object-fit: contain;
filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
transition: transform 0.3s ease;
}
 
.communication-image img {
    position: relative;
    z-index: 10;
}
 
.ordilum img {
width: 120%;
}
 
.jazzordi img {
width: 120%;
}
 
.mot img {
width: 120%;
}
 
.tor img {
width: 120%;
}
 
.deconso img {
width: 40%;
}
 
.ryoji img {
width: 500px;
}
 
.darty img {
width: 120%;
}
 
.rome img {
width: 80%;
}
 
.marque img {
width: 40%;
}
 
.reve img {
width: 60%;
}
 
.philo img {
width: 90%;
}
 
.diamond img {
width: 50%;
}
 
.motion img {
width: 70%;
}
 
.retro img {
width: 50%;
}
 
.senso img {
width: 50%;
}
 
.cera img {
width: 70%;
}
 
.presence img {
width: 55%;
}
 
.ligne img {
width: 75%;
}
 
.utopia img {
width: 60%;
}
 
.vynil img {
width: 80%;
}
 
.orphe img {
width: 60%;
}
 
.futur img {
width: 65%;
}
 
.paysage img {
width: 65%;
}
 
.biennale img {
width: 50%;
}
 
.bb img {
width: 50%;
}
 
.ettore img {
width: 50%;
}
 
.lumin img {
width: 60%;
}
 
.snu img {
width: 90%;
}
 
.bene img {
width: 55%;
}
.project-card:hover .project-image img {
transform: scale(1.02);
}
 
.project-info {
text-align: center;
}
 
.project-info h3 {
font-family: “Montserrat”, sans-serif;
font-size: clamp(1.3rem, 3vw, 1.8rem);
color: var(–text-primary);
margin-bottom: 5px;
font-weight: 600;
}
 
.project-info p {
font-size: clamp(0.9rem, 2vw, 1rem);
color: var(–text-muted);
opacity: 0.85;
}
 
/* PAGE CV */
.cv-section {
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding-top: 200px;
padding-bottom: 100px;
}
 
.cv-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    max-width: 800px;
    width: 90%;
    box-shadow: none;
    text-align: center;
    animation: fadeIn 0.8s ease;
}
 
 
 
.cv-image {
width: 100%;
max-width: 700px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
margin-bottom: 30px;
}
 
.download-btn {
display: inline-block;
background: linear-gradient(135deg, #C8B6FF 0%, #D4C4FF 100%);
color: white;
padding: 16px 45px;
border-radius: 50px;
text-decoration: none;
font-size: 1.1rem;
font-weight: 600;
box-shadow: 0 10px 30px rgba(200, 182, 255, 0.5);
transition: all 0.3s ease;
font-family: “Montserrat”, sans-serif;
}
 
.download-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}
 
.cv-left {
left: 140px;
transform: none;
}
 
/* PAGE CONTACT - FOND BLANC */
.contact-section {
width: 100%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding-top: 260px;
padding-bottom: 200px;
}
 
.contact-card {
background: #ffffff;
border-radius: 24px;
padding: 50px 60px;
max-width: 900px;
width: 90%;
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
position: relative;
animation: fadeIn 0.8s ease;
}
 
.contact-card h1 {
font-family: “Montserrat”, sans-serif;
font-size: clamp(2rem, 5vw, 2.8rem);
margin-bottom: 30px;
color: var(–text-primary);
font-weight: 600;
}
 
.contact-row {
display: flex;
justify-content: space-between;
gap: 40px;
margin-bottom: 40px;
flex-wrap: wrap;
}
 
.contact-block {
flex: 1;
min-width: 250px;
}
 
.contact-block h2 {
font-size: 1.3rem;
margin-bottom: 8px;
color: var(–text-primary);
font-weight: 500;
}
 
.contact-block p a {
color: var(–text-primary);
text-decoration: none;
font-size: 1.1rem;
transition: color 0.3s ease;
}
 
.contact-block p a:hover {
color: #667eea;
text-decoration: underline;
}
 
.contact-social h2 {
font-size: 1.3rem;
margin-bottom: 15px;
color: var(–text-primary);
font-weight: 500;
}
 
.contact-icons {
display: flex;
gap: 20px;
}
 
.contact-icon {
transition: transform 0.3s ease;
}
 
.contact-icon img {
width: 40px;
height: 40px;
transition: transform 0.2s ease, filter 0.2s ease;
}
 
.contact-icon:hover {
transform: translateY(-5px);
}
 
.contact-icon:hover img {
filter: drop-shadow(0 5px 15px var(–accent-shadow));
}
 
/* FOOTER */
.footer-contact {
    position: relative;
    width: 100%;
    padding: 60px 20px 80px;
    margin-top: 0;
    background: transparent;
    overflow: hidden;
}
 
 
 
.footer-title {
position: absolute;
bottom: -140px;
left: 50%;
transform: translateX(-50%);
font-family: “Montserrat”, sans-serif;
font-weight: 600;
font-size: clamp(120px, 20vw, 360px);
color: rgba(255, 255, 255, 0.3);
white-space: nowrap;
pointer-events: none;
z-index: 3;
letter-spacing: -0.02em;
}
 
.footer-content {
position: relative;
z-index: 10;
display: flex;
justify-content: space-around;
align-items: center;
width: 90%;
max-width: 1200px;
margin: auto;
text-align: center;
flex-wrap: wrap;
gap: 40px;
}
 
.footer-block h3 {
font-size: 1.4rem;
margin-bottom: 8px;
color: var(–text-secondary);
font-weight: 500;
}
 
.footer-block p,
.footer-block p a {
font-size: 1.2rem;
opacity: 0.9;
color: var(–text-primary);
text-decoration: none;
}
 
.footer-block p a:hover {
text-decoration: underline;
}
 
.footer-icons {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
gap: 20px;
flex-wrap: nowrap;
}
 
.footer-icons img,
.footer-icons a img {
width: 40px;
height: 40px;
opacity: 0.9;
transition: all 0.3s ease;
cursor: pointer;
}
 
.footer-icons img:hover,
.footer-icons a:hover img {
opacity: 1;
transform: scale(1.1) translateY(-3px);
}
 
.footer-vertical-stripes {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 45vh;
pointer-events: none;
overflow: hidden;
z-index: 2;
}
 
.footer-vertical-stripes div {
position: absolute;
background: #D4C4FF;
opacity: 0.5;
border-radius: 200px;
}
 
.footer-vertical-stripes div:nth-child(1) { width: 140px; height: 38vh; bottom: -12vh; left: 5%; }
.footer-vertical-stripes div:nth-child(2) { width: 180px; height: 45vh; bottom: -15vh; left: 25%; }
.footer-vertical-stripes div:nth-child(3) { width: 120px; height: 40vh; bottom: -10vh; left: 48%; }
.footer-vertical-stripes div:nth-child(4) { width: 200px; height: 42vh; bottom: -16vh; left: 70%; }
.footer-vertical-stripes div:nth-child(5) { width: 160px; height: 36vh; bottom: -12vh; left: 88%; }
.footer-vertical-stripes div:nth-child(6) { width: 110px; height: 42vh; bottom: -14vh; left: -3%; }
.footer-vertical-stripes div:nth-child(7) { width: 130px; height: 48vh; bottom: -18vh; right: -3%; }
 
/* ANIMATIONS */
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
 
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
 
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
 
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
}
 
/* RESPONSIVE */
@media (max-width: 1024px) {
.portfolio-grid { grid-template-columns: 1fr; gap: 50px 20px; }
header ul { gap: 20px; }
}
 
@media (max-width: 768px) {
header { top: 20px; }
header nav { padding: 10px 20px; }
header ul { gap: 15px; }
header a { font-size: 0.95rem; }
.hero { padding-top: 120px; }
.section { padding: 40px 30px; }
.contact-card { padding: 40px 30px; }
.contact-row { flex-direction: column; gap: 30px; }
.footer-content { flex-direction: column; gap: 30px; }
.portfolio-filters { gap: 10px; }
.filter-btn { padding: 8px 20px; font-size: 0.9rem; }
.bg-stripes div { width: 150px; }
}
 
@media (max-width: 480px) {
header ul { gap: 10px; }
header a { font-size: 0.85rem; }
.laptop { max-width: 300px; }
.cv-container { padding: 30px 20px; }
.download-btn { padding: 12px 30px; font-size: 1rem; }
.portfolio-intro { padding: 30px 25px; }
}
 
/* CORRECTION SPÉCIALE POUR LA PAGE CONTACT */
main.contact-section {
  margin: 0;
  padding: 40px 0;
  min-height: auto;
}
 
/* On évite que le footer soit trop loin */
footer {
  margin-top: 40px;
}
 
/* ESPACEMENT ÉQUILIBRÉ POUR LA PAGE CONTACT */
main.contact-section {
  margin-top: 230px;   /* espace sous le header */
  margin-bottom: 40px; /* espace avant le footer */
  padding: 0;
  min-height: auto;
}
 
body {
  margin: 0;
  padding: 0;
}
 
main.contact-section {
  padding-bottom: 0;
  margin-bottom: 0;
}
 
 
footer {
  margin-top: 0;
}
 
.contact-card {
  margin-bottom: 0;
}
 
header {
  position: relative;
}
 
/* LOGO EN HAUT À GAUCHE */
.logo img {
  height: 65px;          /* taille du logo */
  width: auto;
  display: block;
}
 
.logo {
  position: absolute;
  top: -70px;             /* distance du haut */
  left: 35px;            /* distance de la gauche */
  z-index: 1000;         /* passe au-dessus des bulles */
}
 
/* 📱 Téléphones (écrans < 600px) */
@media (max-width: 600px) {
 
  /* Logo plus petit + mieux placé */
  .logo img {
    height: 45px;
  }
 
  .logo {
    top: 10px;
    left: 15px;
  }
 
  /* Menu en colonne si besoin */
  nav ul {
    flex-direction: column;
    gap: 10px;
  }
 
  nav ul li a {
    font-size: 16px;
  }
 
  /* Cartes / sections plus étroites */
  .contact-card,
  .portfolio-card,
  .cv-section {
    width: 90%;
    margin: 0 auto;
  }
 
  /* Titres plus petits */
  h1 {
    font-size: 28px;
  }
}
 
/* 📱📲 Tablettes (600px à 900px) */
@media (max-width: 900px) {
 
  .logo img {
    height: 55px;
  }
 
  .logo {
    top: 15px;
    left: 20px;
  }
 
  nav ul {
    gap: 20px;
  }
 
  nav ul li a {
    font-size: 18px;
  }
 
  .contact-card,
  .portfolio-card,
  .cv-section {
    width: 80%;
  }
}
 
/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
 
    /* Barre de navigation */
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        gap: 12px;
    }
 
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
 
    nav a {
        font-size: 16px;
    }
 
    /* Le mot géant derrière */
    .header-title-bg {
        font-size: 18vw; /* s’adapte à la largeur de l’écran */
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
        white-space: nowrap;
    }
 
    /* Blocs de texte */
    .texte, .description, .bloc {
        max-width: 90%;
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.4;
    }
 
    /* Image ordinateur */
    .laptop, .hero img {
        width: 100%;
        max-width: 320px;
        margin: 20px auto;
        display: block;
    }
}
 
/* ============================
   RESPONSIVE MOBILE
============================ */
@media (max-width: 768px) {
 
    /* --- MENU CENTRÉ --- */
    header {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;      /* centre horizontalement */
        justify-content: center;  /* centre verticalement */
        gap: 16px;
        padding: 20px 0;
        text-align: center;
    }
 
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;      /* centre les liens */
        gap: 12px;
        padding: 0;
        margin: 0;
    }
 
    nav a {
        font-size: 18px;
        text-align: center;
    }
 
    /* --- MOT GÉANT DERRIÈRE --- */
    .header-title-bg {
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18vw;          /* s’adapte à la largeur de l’écran */
        white-space: nowrap;
        text-align: center;
    }
 
    /* --- TEXTES CENTRÉS --- */
@media (max-width: 768px) {
 
    /* MENU HORIZONTAL MAIS CENTRÉ */
    nav ul {
        display: flex;
        flex-direction: row;      /* reste horizontal */
        justify-content: center;  /* centre le menu */
        align-items: center;
        gap: 20px;                /* espace entre les liens */
        padding: 0;
        margin: 0 auto;
        width: 100%;
        text-align: center;
    }
 
    nav li {
        list-style: none;
    }
 
    nav a {
        font-size: 16px;
        text-align: center;
        padding: 6px 0;
    }
 
    /* CENTRAGE DU HEADER */
    header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        gap: 10px;
        width: 100%;
        text-align: center;
    }
}
 
@media (max-width: 768px) {
 
    .laptop,
    .hero img {
        margin-top: -435px !important;   /* remonte l'image */
        width: 100% !important;          /* agrandit l'image */
        max-width: 900px !important;    /* taille max plus grande */
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}
 
 
@media (max-width: 768px) {
 
    /* CENTRER TOUT LE TEXTE */
    body,
    main,
    section,
    .apropos-texte,
    .texte,
    .description,
    .bloc {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
 
    h1, h2, h3, h4 {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
 
    /* IMAGE LAPTOP : CENTRÉE + AGRANDIE + REMONTÉE */
    .laptop {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: -20px !important;   /* remonte l'image */
        width: 100% !important;         /* prend toute la largeur */
        max-width: 650px !important;    /* très grande */
    }
 
    /* MENU HORIZONTAL MAIS CENTRÉ */
    nav ul {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 0;
        margin: 0 auto !important;
        width: 100%;
    }
 
    nav li {
        list-style: none;
    }
 
    nav a {
        text-align: center !important;
    }
}
 
@media (max-width: 768px) {
 
    nav ul {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important; /* centre tout */
        align-items: center !important;
        gap: 20px !important; /* espace entre les liens */
        width: 100%;
        padding: 0;
        margin: 0 auto !important;
        overflow: visible !important; /* évite que Contact disparaisse */
    }
 
    nav li {
        list-style: none;
    }
 
    nav a {
        text-align: center !important;
        white-space: nowrap !important; /* empêche Contact de passer à la ligne ou disparaître */
    }
}
 
@media (max-width: 768px) {
 
    .laptop {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: -20px !important;
        width: 100% !important;
        max-width: 650px !important;
    }
}
 
@media (max-width: 768px) {
 
    footer {
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 20px 0 !important;
    }
 
    footer p,
    footer a,
    footer div,
    footer span {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        white-space: nowrap !important; /* empêche Contact de disparaître */
    }
}
 
footer {
    text-align: center;
}
 
footer a {
    display: block;
    margin: 10px auto;
}
 
@media (max-width: 768px) {
 
    footer {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 20px 0;
    }
 
    .footer-title {
        text-align: center;
        margin: 0 auto 10px auto;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 2px;
    }
 
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
 
    .footer-block h3,
    .footer-block p,
    .footer-block a {
        text-align: center;
        margin: 0 auto;
        display: block;
    }
 
    .footer-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }
}
 
.footer-title {
    display: block !important;
    opacity: 1 !important;
    font-size: 24px !important;
    color: white !important; /* ou la couleur que tu veux */
    text-align: center !important;
    margin: 0 auto 20px auto !important;
    position: relative !important;
    z-index: 10 !important;
}
 
 
.footer-title {
    position: relative !important;
    z-index: 9999 !important; /* passe devant tout */
    display: block !important;
    opacity: 1 !important;
    color: white !important;
    font-size: 24px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
}
 
.footer-title {
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    text-align: center !important;
    color: white !important;
    font-size: 24px !important;
    font-weight: 700 !important;
 
    /* La partie qui corrige ton problème */
    margin-top: 20px !important;      /* descend CONTACT si trop haut */
    margin-bottom: 20px !important;   /* espace avant les infos */
}
 
.footer-title {
    font-size: 28px !important;     /* taille bien visible */
    font-weight: 700 !important;    /* plus d’impact */
    letter-spacing: 2px !important; /* style propre et lisible */
    text-align: center !important;
    color: white !important;
 
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    display: block !important;
}
.name {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  color: #fff;
  transition: color 0.4s ease;
  cursor: pointer;
}
 
/* Survol souris (desktop) */
.name:hover {
  color: #3A7BFF;
}
 
/* Toucher (mobile/tablette) */
.name:active,
.name:focus {
  color: #3A7BFF;
}
 
.name {
  background: linear-gradient(90deg, #3A7BFF, #6FA8FF);
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  cursor: pointer;
}
 
.name:hover,
.name:active,
.name:focus {
  opacity: 1;
}
 
.footer-contact {
    min-height: 60vh;  /* Le footer descend jusqu'en bas */
    padding: 160px 20px 0 20px;
}
 
.footer-content {
    padding-bottom: 100px;
}
 
/* CORRECTION — Remonter bloc blanc + footer */
.contact-section {
    padding-top: 120px !important;
    padding-bottom: 80px !important;
}
 
main.contact-section {
    margin: 0 !important;
    padding: 0 !important;
}
 
.footer-contact {
    margin-top: 60px !important;
}
 
/* === CORRECTION INDEX : Remonter bloc blanc + footer (petit espace) === */
 
/* Le hero prend moins de place → le bloc blanc remonte */
.hero {
    min-height: 65vh !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
 
/* Le bloc blanc .section remonte et garde un petit espace */
.section {
    margin-top: 20px !important;   /* petit espace sous l’image */
    margin-bottom: 40px !important; /* petit espace avant le footer */
    padding: 40px 30px !important;  /* plus compact */
}
 
/* Le footer remonte juste après le bloc blanc */
.footer-contact {
    margin-top: 40px !important;   /* petit espace */
    padding-top: 80px !important;  /* réduit */
    padding-bottom: 60px !important;
    min-height: auto !important;
}
/* ===== AGRANDIR LA FORME GÉNÉRALE DE LA BARRE ===== */
 
/* ===== BARRE DE MENU VERSION GROS ===== */
 
/* ===== BARRE DE MENU VERSION GROS ===== */
 
/* ===== MENU VERSION GROS (FORCE PAR PRIORITÉ) ===== */
 
header nav {
    background: rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(22px) !important;
    border: 3px solid rgba(255, 255, 255, 0.7) !important;
    padding: 14px 140px !important; /* largeur de la capsule */
    border-radius: 90px !important; /* forme très arrondie */
    box-shadow: 0 12px 45px rgba(200, 182, 255, 0.35) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
 
nav ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 60px !important; /* espace entre les mots */
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
 
nav ul li a {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    color: white !important;
    text-decoration: none !important;
    position: relative !important;
    padding: 8px 0 !important;
}
 
nav ul li a.active::after,
nav ul li a:hover::after {
    content: "" !important;
    position: absolute !important;
    bottom: -4px !important;
    left: 0 !important;
    width: 100% !important;
    height: 4px !important;
    background: white !important;
    border-radius: 3px !important;
}
 
 
}
 
 
 
/* ===================================================================
   MODAL - Fenêtre projet
=================================================================== */
 
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
 
.project-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}
 
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}
 
.modal-content {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 55px;
    max-width: 780px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(162, 155, 254, 0.35);
    animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: thin;
    scrollbar-color: #D4C4FF transparent;
}
 
.modal-content::-webkit-scrollbar {
    width: 5px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #D4C4FF;
    border-radius: 10px;
}
 
/* Bouton fermer */
.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(212, 196, 255, 0.2);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-family: "Montserrat", sans-serif;
}
 
.modal-close:hover {
    background: linear-gradient(135deg, #C8B6FF, #E7C6FF);
    color: #ffffff;
    transform: scale(1.1) rotate(90deg);
}
 
/* En-tête modal */
.modal-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0ebff;
}
 
.modal-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 6px;
    line-height: 1.2;
}
 
.modal-header p {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.03em;
}
 
/* Corps modal */
.modal-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
 
/* Galerie */
.modal-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
 
.modal-gallery img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
}
 
.modal-gallery img:hover {
    transform: scale(1.01);
}
 
/* Description */
.modal-description {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    background: #faf8ff;
    border-left: 4px solid #C8B6FF;
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
}
 
/* Détails */
.modal-details h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 14px;
}
 
.modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
 
.modal-details ul li {
    background: #f9f7ff;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.92rem;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
 
.modal-details ul li span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C8B6FF;
}
 
/* Animations modal */
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
 
@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
 
/* Modal responsive */
@media (max-width: 600px) {
    .modal-content {
        padding: 35px 25px;
        border-radius: 18px;
        max-height: 92vh;
    }
 
    .modal-header h2 {
        font-size: 1.4rem;
    }
 
    .modal-details ul {
        grid-template-columns: 1fr 1fr;
    }
}
 
 
/* ===================================================================
   MODAL - Fenêtre projet
=================================================================== */
 
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
 
.project-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease;
}
 
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}
 
.modal-content {
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 55px;
    max-width: 780px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(162, 155, 254, 0.35);
    animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: thin;
    scrollbar-color: #D4C4FF transparent;
}
 
.modal-content::-webkit-scrollbar { width: 5px; }
.modal-content::-webkit-scrollbar-track { background: transparent; }
.modal-content::-webkit-scrollbar-thumb { background: #D4C4FF; border-radius: 10px; }
 
.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(212, 196, 255, 0.2);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    font-family: "Montserrat", sans-serif;
}
 
.modal-close:hover {
    background: linear-gradient(135deg, #C8B6FF, #E7C6FF);
    color: #ffffff;
    transform: scale(1.1) rotate(90deg);
}
 
.modal-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0ebff;
}
 
.modal-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 6px;
    line-height: 1.2;
}
 
.modal-header p {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
    letter-spacing: 0.03em;
}
 
.modal-body {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
 
.modal-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
 
 
.modal-gallery img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 14px;
    background: #fffff;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}
 
 
 
.modal-gallery img:hover { transform: scale(1.01); }
 
.modal-description {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
    background: #faf8ff;
    border-left: 4px solid #C8B6FF;
    padding: 18px 22px;
    border-radius: 0 12px 12px 0;
}
 
.modal-details h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 14px;
}
 
.modal-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}
 
.modal-details ul li {
    background: #f9f7ff;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.92rem;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
 
.modal-details ul li span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C8B6FF;
}
 
@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
 
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
 
@media (max-width: 600px) {
    .modal-content {
        padding: 35px 25px;
        border-radius: 18px;
        max-height: 92vh;
    }
    .modal-header h2 { font-size: 1.4rem; }
    .modal-details ul { grid-template-columns: 1fr 1fr; }
}
 
 
 
 
/* ── LOGO : remonté, sans toucher le bord ── */
.logo {
    position: absolute;
    top: -60px !important;
    left: 35px !important;
    z-index: 1000;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    text-decoration: none !important;
}
 
.logo img {
    height: 60px !important;
    width: auto;
    display: block;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}
 
/* ── PAGE INDEX : texte remonté, sans fond blanc ── */
.hero {
    min-height: 30vh !important;
    padding-top: 10px !important;
    padding-bottom: 0px !important;
}
 
.section {
    margin-top: -20px !important;
    margin-bottom: 40px !important;
    padding: 40px 45px !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
}
 
.section h2 {
    color: white !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
 
.section p,
.section .description {
    color: white !important;
    opacity: 0.95;
    text-shadow: 0 1px 6px rgba(0,0,0,0.1);
}
 
/* ── LIENS MODAL ── */
.modal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}
 
.modal-links-title {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 6px;
}
 
.modal-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #C8B6FF 0%, #E7C6FF 100%);
    color: white;
    padding: 9px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200,182,255,0.3);
}
 
.modal-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,182,255,0.5);
}
 
.modal-description p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}
.modal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}
 
.modal-links-title {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #aaa;
    margin-bottom: 6px;
}
 
.modal-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #C8B6FF 0%, #E7C6FF 100%);
    color: white;
    padding: 9px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(200,182,255,0.3);
}
 
.modal-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200,182,255,0.5);
    color: white;
}
 
.modal-description p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}