/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #000;
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    animation: fadeIn .6s ease forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

/********************************************
               CURSEUR CUSTOM
*********************************************/
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

/********************************************
                HEADER STICKY
*********************************************/
.header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0; left: 0;
    padding: 0 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(6px);
    z-index: 5000;
}

.header-logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
}

.header-nav a {
    margin-left: 30px;
    color: #fff;
    opacity: .7;
    font-size: 15px;
    text-decoration: none;
    transition: opacity .2s;
}
.header-nav a:hover { opacity: 1; }

/********************************************
                   HERO
*********************************************/
.hero {
    height: 75vh;
    padding: 140px 8vw 0;
    display: flex;
    align-items: flex-end;
}

.hero-inner h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(90px, 15vw, 210px);
    line-height: .85;
}

.hero-tagline {
    font-size: 18px;
    max-width: 520px;
    opacity: .9;
    margin: 20px 0 30px;
}

.hero-cta a {
    display: block;
    text-decoration: none;
    color: #fff;
    opacity: .7;
    margin-bottom: 6px;
}
.hero-cta a:hover { opacity: 1; }

/********************************************
                   FILMS
*********************************************/
.films {
    display: flex;
    flex-direction: column;
    gap: 140px;
    margin-top: 40px;
}

.project {
    display: flex;
    width: 100%;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.project.reverse { flex-direction: row-reverse; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/********************************************
                 VIDEO / TEXT
*********************************************/
.video-col { width: 55%; }
.text-col  { width: 45%; padding: 0 6vw; }

.text-col h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    white-space: nowrap;  /* force single line */
}

.text-col .desc {
    margin: 18px 0;
    opacity: .85;
}

.text-col ul {
    list-style: none;
    opacity: .7;
}

video {
    width: 100%;
    opacity: .45;
    transition: opacity .25s;
}
.project:hover video { opacity: 1; }

/********************************************
                 ABOUT
*********************************************/
.about {
    padding: 120px 8vw;
}

.about h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    margin-bottom: 20px;
}

.about-text {
    max-width: 800px;
    opacity: .8;
    font-size: 18px;
    line-height: 1.7;
}

/********************************************
                  CONTACT
*********************************************/
.info-contact {
    padding: 120px 8vw;
}

.info-contact h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 80px;
    margin-bottom: 40px;
}

.info-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/********************************************
                  FOOTER
*********************************************/
.footer {
    padding: 40px 8vw 70px;
    opacity: .5;
}
/* --- CURSEUR FLUIDE --- */
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
}

/* --- HEADER OPAQUE --- */
.header {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* --- LANGUAGE SELECTOR --- */
.lang-switch {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.lang-switch button {
    background: none;
    border: none;
    color: #fff;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s;
}
.lang-switch button.active,
.lang-switch button:hover {
    opacity: 1;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .custom-cursor { display: none; }

    .project {
        flex-direction: column !important;
    }

    .video-col, .text-col {
        width: 100%;
        padding: 0;
    }

    .hero-inner h1 {
        font-size: clamp(48px, 10vw, 80px);
    }

    .about h2, .info-contact h2 {
        font-size: 48px;
    }
}

/* --- FADE SCROLL EFFECT --- */
.project.fade {
    opacity: 0.2;
    transition: opacity 0.5s ease-out;
}
.project.visible {
    opacity: 1;
}
/* --- BOUTON CTA FOOTER --- */
.cta-footer {
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 24px;
    font-family: "Space Mono", monospace;
    font-size: 16px;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.cta-footer:hover {
    background: #fff;
    color: #000;
    opacity: 1;
}

/* Optionnel : espacement harmonieux avec les autres colonnes */
.info-grid > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
}
/* ===========================
   🔹 MOBILE OPTIMISATION 🔹
   =========================== */

@media (max-width: 768px) {

  body {
    font-size: 15px;
    line-height: 1.6;
    padding-top: 70px; /* éviter que le hero soit caché sous le header */
  }

  /* --- HEADER --- */
  .header {
    height: 60px;
    padding: 0 5vw;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #000;
  }

  .header-logo {
    font-size: 22px;
  }

  .header-nav {
    display: flex;
    gap: 15px;
  }

  .header-nav a {
    font-size: 14px;
    opacity: 0.9;
  }

  .lang-switch {
    display: flex;
    gap: 6px;
    font-size: 13px;
    margin-left: auto;
  }

  /* --- HERO --- */
  .hero {
    height: auto;
    padding: 100px 6vw 40px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner h1 {
    font-size: clamp(36px, 10vw, 64px);
    line-height: 1;
  }

  .hero-tagline {
    font-size: 16px;
    margin-top: 10px;
    max-width: 100%;
  }

  /* --- PROJETS --- */
  .films {
    gap: 80px;
    margin-top: 20px;
  }

  .project {
    flex-direction: column !important;
    padding: 0 5vw;
  }

  .video-col, .text-col {
    width: 100%;
    padding: 0;
  }

  .text-col {
    margin-top: 20px;
  }

  .text-col h2 {
    font-size: 32px;
    white-space: normal;
    line-height: 1.1;
  }

  .text-col .desc {
    font-size: 15px;
    margin: 10px 0 20px;
  }

  .text-col ul {
    font-size: 14px;
    opacity: 0.75;
  }

  video {
    opacity: 0.85;
  }

  /* --- ABOUT --- */
  .about {
    padding: 80px 6vw;
  }

  .about h2 {
    font-size: 38px;
  }

  .about-text {
    font-size: 15px;
  }

  /* --- CONTACT --- */
  .info-contact {
    padding: 80px 6vw;
  }

  .info-contact h2 {
    font-size: 40px;
    margin-bottom: 25px;
  }

  .info-grid {
    flex-direction: column;
    gap: 30px;
  }

  /* --- FOOTER CTA --- */
  .cta-footer {
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 24px;
    font-family: "Space Mono", monospace;
    font-size: 15px;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
  }

  .cta-footer:hover {
    background: #fff;
    color: #000;
  }

  /* --- CURSEUR --- */
  .custom-cursor {
    display: none;
  }
}
/* --- LIENS CONTACT --- */
/* Liens de contact : blancs clairs, sans souligné */
.contact-link {
  color: #ffffff;                 /* blanc clair, pas bleu */
  text-decoration: none;          /* supprime le soulignement */
  font-family: "Space Mono", monospace;
  opacity: 0.9;                   /* légère transparence élégante */
  transition: opacity 0.3s ease, transform 0.2s ease;
  display: inline-block;
  margin-bottom: 8px;
}

.contact-link:hover {
  opacity: 1;                     /* plus lumineux au survol */
  transform: translateX(3px);     /* petit glissement fluide */
}

/* Supprime toute couleur par défaut des liens visités */
.contact-link:visited {
  color: #ffffff;
  text-decoration: none;
}
/* --- FORCE LE BLANC DES LIENS CONTACTS --- */
.contact-link,
.contact-link:link,
.contact-link:visited,
.contact-link:hover,
.contact-link:active {
  color: #fff !important;          /* blanc, toujours */
  text-decoration: none !important; /* jamais souligné */
  font-family: "Space Mono", monospace;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.contact-link:hover {
  opacity: 1;
}
/* Liens de contact : blancs clairs et sobres */
.contact-link,
.contact-link:link,
.contact-link:visited,
.contact-link:hover,
.contact-link:active {
  color: #ffffff !important;          /* blanc pur */
  text-decoration: none !important;   /* jamais souligné */
  font-family: "Space Mono", monospace;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.2s ease;
  display: inline-block;
  margin-bottom: 6px;
}

.contact-link:hover {
  opacity: 1;
  transform: translateX(3px);
}

/* Bouton "Prendre un rendez-vous" */
.cta-footer {
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 24px;
  font-family: "Space Mono", monospace;
  font-size: 16px;
  text-decoration: none;
  opacity: 0.85;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.cta-footer:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}
