/* Accessibilité : skip-link visible au focus */
.skip-link:focus, .skip-link:focus-visible {
  left: 0 !important;
  position: absolute;
  box-shadow: 0 0 0 3px var(--accent-color);
}
/* =============================================================
  STYLES PRINCIPAUX DU PORTFOLIO
  -------------------------------------------------------------
  Ce fichier définit : thème sombre, mise en page responsive,
  composants réutilisables et règles d'accessibilité.
  Sections : Reset | Variables | Base | Layout | Header/Nav |
          Typo & Liens | Sections | Galerie | Formulaire |
          Timeline | Accessibilité | Responsive | Motion
  ============================================================= */
/* ===================== RESET ===================== */
/* Réinitialisation légère pour une base homogène */
@import url(https://fonts.bunny.net/css?family=lexend:300,400,600,700);


* {
    /* Annuler les marges/padding par défaut */
    box-sizing: border-box; /*pour tous */
    margin: 0;
    padding: 0;
}

/* ===================== VARIABLES ===================== */
/* Palette sombre et accents (utiliser var(--nom) pour cohérence) */
:root {
    --bg-primary: #0f172a;      /* Bleu très foncé */
    --bg-secondary: #1e293b;    /* Bleu foncé pour cartes */
    --text-primary: #e2e8f0;    /* Gris clair */
    --text-secondary: #A3B7C2;  /* Gris moyen */
    --accent-color: #69A4FC;    /* Bleu vif */
    --accent-hover: #60a5fa;    /* Bleu clair hover */
}

/* Comportement de défilement (sera neutralisé si utilisateur préfère moins d'animations) */
html { scroll-behavior: smooth; }

/* ===================== BASE DOCUMENT ===================== */
/* Police, couleurs globales et taille de base */
body {
    background-color: var(--bg-primary);
    font-family: 'Lexend', sans-serif;
    color: var(--text-primary);
    font-size: 16px;
}

/* ===================== LAYOUT PRINCIPAL ===================== */
/* Décalage pour éviter que le header fixe masque le contenu */
main {
    padding-top: 80px; /* Compense la hauteur du header fixe */
}

/* ===================== HEADER & NAVIGATION ===================== */
/* Barre supérieure fixe avec distribution logo/navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color:rgba(15, 23, 42, 1);
  width: 100%;
  padding: 0.5rem 1rem;
}

/* Logo responsive (largeur adaptative, hauteur conservée) */
.logo img {
  width: clamp(160px, 25vw, 300px);
  height: auto;
}

/* ===================== TITRES & TEXTE ===================== */
  h1, h2{
    color: var(--accent-color);
   }

   h1{
    margin-bottom: 1.5rem;
   }

   h2{
    font-size: 1.5rem;
    margin-bottom: 1rem;
   }

   p, li, label{
    color: var(--text-primary);
   }

   .action p {
    font-size: 1.5rem;
   }

/* Style de lien par défaut (sur fond sombre) */
  a{
    color: white;
   }

    a:hover {
    color: var(--accent-hover);
    }
   
/* Liste de navigation horizontale (vue desktop) */
  nav ul{
    display: flex;
   }

   nav li {
    list-style: none;
    margin: 0 15px;
   }

   nav a {
    text-decoration: none;
    padding: 1.5rem;  
    display: inline-block;
   }

/* ===================== SECTIONS GÉNÉRIQUES ===================== */
/* Largeur fluide et espacement vertical adaptatif */
  section {
    padding: clamp(60px, 10vh, 100px) 20px;
    margin: 0 auto;
    max-width: min(1200px, 90%);
    scroll-margin-top: 80px;
   }

/* Section d'introduction : mise en avant de l'accroche */
  #presentation {
    text-align: center;
    background-color: var(--bg-secondary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);

   }

/* Section parcours : contient la timeline */
  #parcours{
    background-color: var(--bg-primary);
   }

/* Section réalisations : liste des projets */
  #realisations {
    background-color: var(--bg-secondary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
   }

/* Section contact : formulaire utilisateur */
  #travaillons-ensemble {
    background-color: var(--bg-primary);
   }

/* ===================== BOUTONS D'ACTION ===================== */
/* Boutons principaux (haut de page + formulaire) */
  .top-contact-btn, .bottom-contact-btn {
    display: inline-block;
    color: #0a0a0a;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--accent-color);
    border-radius: 5px;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    transition: background-color 0.3s ease;
   }

   .top-contact-btn:hover, .bottom-contact-btn:hover{
    color: white;
   }

    .bottom-contact-btn {
    width: 10rem;
    display: block;
    margin: 0 auto;
   }

   #presentation h1 {
    font-size: 2rem;
   }

/* ===================== GALERIE PROJETS ===================== */
/* Grille flexible des réalisations */
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
   }

/* Carte projet individelle (fond, ombre, coins arrondis) */
  figure {
    max-width: 400px;
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

   figure img {
    width: 100%;
    transition: transform 0.3s ease;
   }

  /* Animation image projet sur interaction (hover/focus) */
  figure a:hover img,
  figure a:focus-visible img {
   transform: scale(1.05);
   box-shadow: 0 4px 8px rgba(0,0,0,.2);
  }

  /* Focus clavier sur lien image : outline visible */
  figure a:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 8px;
}



   figcaption{
    margin: 0.5rem 0;
   }

   figcaption ul li {
    list-style-type: none;
    color: var(--text-primary);
   }

  /* Titre de projet sous l'image */
  figcaption h3 {
    margin: 1rem 0 1rem 0;
    color: var(--accent-color);
   }

  figcaption p {
    font-size: 1.25rem;
   }

/* ===================== FORMULAIRE CONTACT ===================== */
/* Empilement vertical pour lisibilité et accessibilité */
  form{
    display: flex;
    flex-direction: column;
   }

  /* Groupe label + champ */
  .form-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
   }

   label {
    margin-bottom: 0.5rem;
    }

    /* Champs textuels : surface tactile suffisante */
    input, textarea {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem;
    color: var(--text-primary);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    min-height: 44px;
    width: 100%;
    }

    /* Zone de texte redimensionnable verticalement seulement */
    textarea {
    min-height: 120px;
    resize: vertical;
    }

  /* Placeholder atténué (couleur gris moyen) */
  ::placeholder {
    color: #9aa4b2;
    opacity: 1;
    }

    /* Accentuation bordure sur focus clavier/souris */
    input:focus, textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    }

    /* Badge Opquast centré sous le contenu */
    .certification-opquast a{
    display: block;
    text-align: center; 
    margin: 0 auto;
    margin-bottom: 1.5rem;
    width: 6rem;
    }

  /* ===================== PIED DE PAGE ===================== */
  /* Zone basse : droits d'auteur + badge */
    footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--bg-secondary);
      color: var(--text-primary);
    }

/* ===================== TIMELINE (PARCOURS) ===================== */
/* Chronologie centrale : alternance gauche/droite, ligne verticale,
   points (cercles) et flèches directionnelles. Responsive <600px. */
/*Timeline*/

    /* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline h3 {
  font-weight: 300;
  margin: 0 0 .5rem;
}

.timeline h3 a {
  color: var(--text-primary);
  text-decoration: none;
  display: inline-block;
  line-height: 1.3;
}

.timeline h3 a:hover,
.timeline h3 a:focus-visible {
  text-decoration: underline;
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
  border-radius: 4px;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-year { color: var(--accent-color); font-weight: 700; display: inline-block; margin-bottom: .25rem; }


/* Container around content */
.container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: var(--bg-primary);
  border: 4px solid var(--accent-color);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -16px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: var(--bg-secondary);
  position: relative;
  border-radius: 6px;
  border-left: 3px solid var(--accent-color);
  color: var(--text-primary);
}

/* Media query : adaptation timeline < 600px (ligne déplacée à gauche, colonnes pleine largeur) */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}

.timeline p{
    color: var(--text-primary);
}

/* Fin Timeline */

/* RGPD*/
#mentions-legales h1, #politique-confidentialite h1{
  font-size: 2rem;
}

#politique-confidentialite ul{
  margin-left: 1.5rem;
}


/* ===================== ACCESSIBILITÉ GLOBALE ===================== */
/* Outline visible pour navigation clavier (WCAG 2.1) */
/*Accessibilité*/

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { 
    outline: 3px solid var(--accent-color); 
    outline-offset: 3px; 
}

/* ===================== NAVIGATION MOBILE (HAMBURGER) ===================== */
/* Menu déroulant pure CSS pour petits écrans */
/* Hamburger menu */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 1rem;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    margin: 3px 0;
    transition: 0.3s;
}

.menu-icon:focus-visible span {
    background: var(--accent-hover);
    box-shadow: 0 0 0 2px var(--accent-color);
}

/* Media query : logo réduit sur très petits écrans */
@media (max-width: 480px) { .logo img { width: 180px; } }

/* Media query navigation : transformation liste en menu déroulant */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu-toggle:checked ~ ul {
        max-height: 400px;
    }
    
    nav li {
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    nav a {
        padding: 1.5rem;
        display: block;
        color: white;
    }
    
    /* Animation hamburger → X */
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Réduction des animations pour les utilisateurs préférant moins de mouvement */

/* Media query accessibilité : réduction des animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    html {
        scroll-behavior: auto;
    }
}