/* 
* new.css - Version girly & professionnelle
* Thème : Rose élégant avec touches de lilas
*/

/* ===== VARIABLES ===== */
:root {
    --rose-poudre: #fff5f7;
    --rose-theme: #ff8a9c;
    --rose-fonce: #e87183;
    --lilas-doux: #d9b8d9;
    --lilas-clair: #f3e6f3;
    --blanc-chaud: #fef9f9;
    --gris-ardoise: #4a4a4a;
    --texte-gris: #5d5d5d;
    --shadow-doux: 0 15px 35px rgba(255, 138, 156, 0.15);
    --border-rose: rgba(255, 138, 156, 0.25);
    --gold-soft: #e8d1c5;
  }
  
  /* ===== RESET & BASE ===== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: var(--blanc-chaud);
    background-image: radial-gradient(circle at 10% 20%, var(--rose-poudre) 0%, transparent 30%),
                      radial-gradient(circle at 90% 80%, var(--lilas-clair) 0%, transparent 40%);
    color: var(--texte-gris);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    font-size: 16px;
    min-height: 100vh;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
  }
  
  h1 { font-size: 3.5rem; margin-bottom: 1rem; }
  h2 { font-size: 2.8rem; margin-bottom: 1rem; }
  h3 { font-size: 2rem; margin-bottom: 1rem; }
  h4 { font-size: 1.5rem; margin-bottom: 0.8rem; }
  
  /* ===== LOGO ===== */
  .logo {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: var(--rose-theme) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    letter-spacing: 2px !important;
    display: inline-block;
    position: relative;
  }
  
  .logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose-theme), var(--lilas-doux), transparent);
    border-radius: 2px;
  }
  
  .logo:hover {
    color: var(--rose-fonce) !important;
    transform: scale(1.02);
  }
  
  /* ===== NAVIGATION ===== */
/* ===== NAVIGATION ÉLÉGANTE ===== */
#nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 138, 156, 0.1);
    border: 1px solid rgba(255, 138, 156, 0.2);
    margin: 20px auto;
    max-width: 1200px;
    position: sticky;
    top: 20px;
    z-index: 1000;
  }
  
  /* Header de la navigation (logo + hamburger) */
  .nav-header {
    display: none;
    padding: 15px 25px;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Logo */
  .nav-logo {
    text-decoration: none;
  }
  
  .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--rose-theme);
    letter-spacing: 1px;
    transition: color 0.3s ease;
  }
  
  .nav-logo:hover .logo-text {
    color: var(--rose-fonce);
  }
  
  /* Menu hamburger - caché sur desktop */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--rose-theme);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  /* Contenu de la navigation */
  .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
    min-height: 70px;
  }
  
  /* Menu de navigation */
  #nav ul.links {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  #nav ul.links li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #4a4a4a;
    padding: 10px 20px;
    border-radius: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
  }
  
  #nav ul.links li a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--rose-theme);
    transition: transform 0.3s ease;
    border-radius: 2px;
  }
  
  #nav ul.links li a:hover::after,
  #nav ul.links li a.active::after {
    transform: translateX(-50%) scaleX(1);
  }
  
  #nav ul.links li a:hover,
  #nav ul.links li a.active {
    color: var(--rose-theme);
    background: rgba(255, 138, 156, 0.08);
  }
  
  /* Icônes sociales */
  #nav ul.icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  #nav ul.icons li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--rose-theme);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 138, 156, 0.2);
    text-decoration: none;
    font-size: 1.2rem;
  }
  
  #nav ul.icons li a:hover {
    background: var(--rose-theme);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 138, 156, 0.3);
  }
  
  /* ===== VERSION MOBILE ===== */
  @media screen and (max-width: 768px) {
    #nav {
      margin: 10px;
      border-radius: 30px;
      padding: 0;
    }
    
    /* Afficher l'en-tête avec logo et hamburger */
    .nav-header {
      display: flex;
    }
    
    /* Afficher le hamburger */
    .menu-toggle {
      display: flex;
    }
    
    /* Cacher le contenu par défaut */
    .nav-content {
      display: none;
      padding: 0 20px 20px;
      flex-direction: column;
      gap: 20px;
    }
    
    /* Afficher le contenu quand le menu est ouvert */
    .nav-content.open {
      display: flex;
    }
    
    /* Menu en colonne */
    #nav ul.links {
      flex-direction: column;
      width: 100%;
      gap: 10px;
    }
    
    #nav ul.links li {
      width: 100%;
    }
    
    #nav ul.links li a {
      width: 100%;
      text-align: center;
      padding: 15px !important;
      font-size: 1.1rem;
    }
    
    /* Icônes sociales en bas */
    #nav ul.icons {
      justify-content: center;
      margin-top: 10px;
    }
    
    /* Animation du hamburger */
    .menu-toggle.open span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.open span:nth-child(2) {
      opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  }
  
  
  /* ===== VERSION MOBILE ===== */
  @media screen and (max-width: 768px) {
    /* Afficher le hamburger */
    .menu-toggle {
      display: block;
    }
    
    /* Cacher les icônes desktop */
    .desktop-only {
      display: none !important;
    }
    
    /* Afficher l'icône dans le menu mobile */
    .mobile-only {
      display: block !important;
    }
    
    /* Menu mobile (caché par défaut) */
    .nav-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      z-index: 1000;
    }
    
    .nav-menu.open {
      transform: translateX(0);
    }
    
    #nav ul.links {
      flex-direction: column;
      gap: 20px;
      padding: 20px;
    }
    
    #nav ul.links li a {
      font-size: 1.2rem !important;
      padding: 15px 25px !important;
    }
    
    #nav ul.links li.mobile-only a {
      width: 50px;
      height: 50px;
      font-size: 1.5rem !important;
      background: var(--rose-theme) !important;
      color: white !important;
      border-radius: 50% !important;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 20px auto 0;
    }
    
    #nav ul.links li.mobile-only a i {
      font-size: 1.5rem;
    }
    
    #nav ul.links li.mobile-only a span {
      display: none;
    }
  }
  
  /* Tablette */
  @media screen and (min-width: 769px) and (max-width: 968px) {
    #nav ul.links li a {
      font-size: 0.9rem;
      padding: 6px 12px !important;
    }
  }
  /* Empêcher le scroll quand le menu mobile est ouvert */
body.menu-open {
    overflow: hidden;
  }
  /* ===== ICONES SOCIALES ===== */
  .icons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icons li {
    display: inline-block;
}

.icons a {
    color: inherit; /* ou une couleur spécifique comme #E4405F */
    font-size: 24px; /* taille de l'icône */
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.icons a:hover {
    opacity: 0.7;
}
  
  
  
  
  /* ===== BOUTONS ===== */
  .button {
    background: linear-gradient(135deg, var(--rose-theme), var(--rose-fonce)) !important;
    border: none !important;
    border-radius: 50px !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 500 !important;
    padding: 12px 35px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(255, 138, 156, 0.3) !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    font-size: 0.95rem !important;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border: 1px solid transparent !important;
    position: relative;
    overflow: hidden;
  }
  
  .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .button:hover::before {
    left: 100%;
  }
  
  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 138, 156, 0.4) !important;
  }
  
  .button.large {
    padding: 15px 45px !important;
    font-size: 1.1rem !important;
  }
  
  .button.outline {
    background: transparent !important;
    color: var(--rose-theme) !important;
    border: 2px solid var(--rose-theme) !important;
    box-shadow: none !important;
  }
  
  .button.outline:hover {
    background: linear-gradient(135deg, var(--rose-theme), var(--rose-fonce)) !important;
    color: white !important;
    border-color: transparent !important;
  }
  
  /* ===== HEADER ===== */
  #header {
    text-align: center;
    padding: 30px 20px 20px;
  }
  
  /* ===== MAIN ===== */
  #main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: transparent !important;
  }
  
  /* ===== CARTES & SECTIONS ===== */
  section {
    margin-bottom: 40px;
  }
  
  section h2, section h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
  }
  
  section h2::after, section h3::after {
   
    color: var(--rose-theme);
    font-size: 1.5rem;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
  }
  
  section h2::before, section h3::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-theme), var(--lilas-doux));
    border-radius: 3px;
  }
  




  
  /* ===== FOOTER ===== */
  #footer {
    position: relative;
    border-radius: 50px 50px 0 0 !important;
    overflow: hidden !important;
    margin-top: 80px !important;
    box-shadow: 0 -10px 30px rgba(255, 138, 156, 0.1);
  }
  
  #footer-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.05) saturate(1.1);
    -webkit-filter: brightness(1.05) saturate(1.1);
  }
  
  .footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
      rgba(255, 245, 247, 0.3), 
      rgba(217, 184, 217, 0.3));
    z-index: 1;
    pointer-events: none;
  }
  
  .footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  /* Formulaire de contact */
  #contact {
    position: relative;
  }
  
  #contact form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 35px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  #contact h3 {
    color: #2c3e50 !important;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
  }
  
  .fields {
    display: grid;
    gap: 20px;
  }
  
  .field {
    display: grid;
    gap: 8px;
  }
  
  .field label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50 !important;
    letter-spacing: 0.3px;
  }
  
  .field label i {
    color: var(--rose-theme);
    margin-right: 8px;
  }
  
  /* Champs de formulaire */
  input[type="text"], 
  input[type="email"], 
  textarea {
    width: 100%;
    border: 2px solid rgba(255, 138, 156, 0.2) !important;
    border-radius: 20px !important;
    background: white !important;
    padding: 14px 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    color: #2c3e50 !important;
  }
  
  input[type="text"]:hover, 
  input[type="email"]:hover, 
  textarea:hover {
    border-color: rgba(255, 138, 156, 0.4) !important;
    background: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 138, 156, 0.1);
  }
  
  input[type="text"]:focus, 
  input[type="email"]:focus, 
  textarea:focus {
    border-color: var(--rose-theme) !important;
    background: white !important;
    box-shadow: 0 0 0 5px rgba(255, 138, 156, 0.15) !important;
    outline: none !important;
    transform: translateY(-2px);
  }
  
  ::placeholder {
    color: #a0a0a0 !important;
    opacity: 0.7;
    font-weight: 300;
    font-style: italic;
  }
  
  .actions {
    list-style: none;
    margin-top: 30px;
  }
  
  .actions li {
    display: inline-block;
  }
  
  /* Infos contact */
  .split.contact {
    display: grid;
    gap: 25px;
    align-content: start;
  }
  
  .split.contact section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 25px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  
  .split.contact section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(255, 138, 156, 0.15);
  }
  
  .split.contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--rose-theme) !important;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .split.contact h3 span {
    font-size: 1.8rem;
  }
  
  .split.contact p {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50 !important;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
  }
  
  .split.contact a {
    color: #2c3e50 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    display: inline-block;
  }
  
  .split.contact a:hover {
    color: var(--rose-theme) !important;
    border-bottom-color: var(--rose-theme);
    transform: translateX(5px);
  }
  
  /* Messages flash */
  .flashes {
    list-style: none;
    margin-top: 20px;
  }
  
  .flashes li {
    padding: 15px 20px;
    border-radius: 20px;
    margin: 10px 0;
    background: white;
    border-left: 4px solid var(--rose-theme);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #2c3e50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: slideIn 0.3s ease;
  }
  
  @keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .flashes .success {
    border-left-color: #a8e6cf;
    background: #f0f9f4;
  }
  
  .flashes .error {
    border-left-color: #ffb3b3;
    background: #fff5f5;
  }
  
  /* ===== COPYRIGHT ===== */
  #copyright {
    background: white !important;
    padding: 25px 20px !important;
    border-radius: 40px !important;
    margin: 20px auto !important;
    max-width: 1100px !important;
    border: 1px solid var(--border-rose) !important;
    box-shadow: var(--shadow-doux) !important;
  }
  
  #copyright ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--texte-gris);
  }
  
  #copyright li {
    position: relative;
  }
  
  #copyright li:not(:last-child)::after {
    
    color: var(--rose-theme);
    position: absolute;
    right: -17px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.5;
  }
  
  #copyright a {
    color: var(--rose-theme);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }
  
  #copyright a:hover {
    color: var(--rose-fonce);
    text-decoration: underline;
    text-decoration-style: wavy;
    text-underline-offset: 5px;
  }
  
  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: var(--rose-poudre);
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--rose-theme), var(--lilas-doux));
    border-radius: 10px;
    border: 3px solid var(--rose-poudre);
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--rose-fonce), var(--lilas-doux));
  }
  
  /* ===== ANIMATIONS ===== */
  .is-preload {
    opacity: 0;
  }
  
  body {
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  .fade-in {
    animation: fadeIn 1s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .pulse {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  /* ===== BADGES & LABELS ===== */
  .badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--rose-poudre);
    color: var(--rose-theme);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-rose);
    margin: 5px;
  }
  
  /* ===== RESPONSIVE ===== */
  @media screen and (max-width: 968px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    #nav {
      margin: 15px !important;
    }
    
    #nav ul {
      flex-direction: column;
      padding: 10px 0;
    }
    
    #nav ul.links {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    #nav ul.links li a {
      padding: 8px 15px !important;
      font-size: 0.9rem;
    }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.8rem; }
  }
  
  @media screen and (max-width: 768px) {
    .footer-content {
      padding: 40px 15px;
    }
    
    #contact form,
    .split.contact section {
      padding: 20px;
    }
    
    #contact h3 {
      font-size: 1.8rem;
    }
    
    #copyright ul {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    
    #copyright li:not(:last-child)::after {
      display: none;
    }
    
    .logo {
      font-size: 1.8rem !important;
    }
    
    h2::after, h3::after {
      display: none;
    }
  }
  
  /* ===== UTILITAIRES ===== */
  .text-center { text-align: center; }
  .text-rose { color: var(--rose-theme); }
  .mt-4 { margin-top: 40px; }
  .mb-4 { margin-bottom: 40px; }
  .p-4 { padding: 40px; }
  .rounded-full { border-radius: 9999px; }
  .shadow-soft { box-shadow: var(--shadow-doux); }


  /* ===== STYLES SPÉCIFIQUES À LA PAGE D'ACCUEIL ===== */

/* Intro section girly */
.intro-girly {
    background: linear-gradient(135deg, var(--rose-poudre) 0%, #f9e7ed 100%);
    padding: 5rem 2rem;
    border-radius: 40px;
    margin: 20px 20px 40px 20px;
    text-align: center;
    box-shadow: var(--shadow-doux);
    border: 1px solid var(--border-rose);
  }
  
  .intro-girly h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--rose-theme);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .intro-girly h1 span {
    font-size: 2rem;
    display: block;
    font-weight: 400;
    color: #b5a1a1;
    margin-top: 0.5rem;
  }
  
  .intro-girly p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--texte-gris);
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.8;
  }
  
  /* Presentation section */
  .presentation-section {
    padding: 4rem 2rem;
    background: white;
    border-radius: 40px;
    margin: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-rose);
  }
  
  .section-tag {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--rose-theme);
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 2px;
  }
  
  .section-tag::before,
  .section-tag::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--rose-clair);
    margin: 0 15px;
    vertical-align: middle;
  }
  
  .title-with-image {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  
  .title-with-image h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--texte-fonce);
    margin: 0;
    font-weight: 600;
  }
  
  .image-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--rose-clair);
    box-shadow: 0 5px 15px rgba(216, 106, 127, 0.15);
  }
  
  .profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .presentation-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--rose-theme);
    font-weight: 400;
    margin: 1.5rem 0;
    letter-spacing: 1px;
  }
  
  .description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--texte-gris);
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.9;
  }
  
  .actions.centered {
    text-align: center;
    margin-top: 2rem;
  }
  
  /* Services section */
  .services-section {
    padding: 4rem 2rem;
    background: var(--rose-poudre);
    border-radius: 40px;
    margin: 30px 20px;
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--rose-theme);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    position: relative;
  }
  
  .section-title::after {

    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--rose-theme);
    font-size: 1.5rem;
    opacity: 0.5;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: white;
    border-radius: 30px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(216, 106, 127, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-rose);
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(216, 106, 127, 0.15);
    border-color: var(--rose-clair);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--rose-poudre);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-theme);
    font-size: 2rem;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    background: var(--rose-theme);
    color: white;
    transform: scale(1.1);
  }
  
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--rose-theme);
    margin-bottom: 1rem;
  }
  
  .service-card p {
    font-family: 'Montserrat', sans-serif;
    color: var(--texte-gris);
    line-height: 1.7;
    font-size: 1rem;
  }


  .service-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-theme);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--rose-theme);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.service-button i {
    transition: transform 0.3s ease;
}

.service-button:hover {
    background: transparent;
    color: var(--rose-theme);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(216, 106, 127, 0.2);
}

.service-button:hover i {
    transform: translateX(5px);
}
  
  /* Portfolio section */
  .portfolio-section {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--rose-theme);
    margin-bottom: 3rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-overlay {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-doux);
    border: 1px solid var(--border-rose);
    background: white;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-overlay:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(216, 106, 127, 0.2);
}

.card-overlay-image {
    width: 100%;
    aspect-ratio: 16/10; /* Ratio adapté aux images horizontales */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: white;
    transition: transform 0.5s ease;
    border-bottom: 1px solid var(--rose-poudre);
}

.card-overlay-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card-overlay:hover .card-overlay-image img {
    transform: scale(1.05);
}

.card-overlay-content {
    background: white;
    padding: 1.8rem 1.5rem;
    border-top: 3px solid var(--rose-theme);
}

.card-overlay-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--rose-theme);
    margin: 0 0 0.3rem 0;
}

.card-overlay-content h3 a {
    color: inherit;
    text-decoration: none;
}

.card-overlay-content h3 a:hover {
    text-decoration: underline;
}

.card-overlay-content .portfolio-category {
    display: inline-block;
    background: var(--rose-poudre);
    color: var(--rose-theme);
    padding: 0.3rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    margin: 0.5rem 0;
    border: 1px solid var(--rose-clair);
}

.card-overlay-content p {
    font-family: 'Montserrat', sans-serif;
    color: var(--texte-gris);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.8rem 0 1.2rem 0;
}

.portfolio-link-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--rose-theme);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
    padding: 8px 0;
}

.portfolio-link-mini:hover {
    gap: 12px;
}

/* Version mobile */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .portfolio-grid {
        gap: 25px;
    }
    
    .card-overlay-image {
        aspect-ratio: 16/9;
        padding: 20px;
    }
    
    .card-overlay-content {
        padding: 1.5rem;
    }
    
    .card-overlay-content p {
        font-size: 0.9rem;
        margin: 0.5rem 0 1rem 0;
    }
}

/* Petit écran */
@media (max-width: 480px) {
    .card-overlay-image {
        aspect-ratio: 16/9;
        padding: 15px;
    }
    
    .card-overlay-content {
        padding: 1.2rem;
    }
    
    .card-overlay-content h3 {
        font-size: 1.3rem;
    }
}
  /* CTA section */
  .cta-section {
    background: linear-gradient(135deg, var(--rose-poudre) 0%, #f9e7ed 100%);
    padding: 5rem 2rem;
    border-radius: 40px;
    margin: 30px 20px;
    text-align: center;
    border: 1px solid var(--border-rose);
  }
  
  .cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--rose-theme);
    margin-bottom: 1rem;
  }
  
  .cta-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--texte-gris);
    max-width: 600px;
    margin: 1.5rem auto;
  }
  
  .cta-button {
    background: var(--rose-theme);
    border-radius: 50px;
    padding: 1.2rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    border: none;
    box-shadow: 0 8px 20px rgba(216, 106, 127, 0.25);
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
  }
  
  .cta-button:hover {
    background: var(--rose-fonce);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(216, 106, 127, 0.35);
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .intro-girly h1 {
      font-size: 2.5rem;
    }
    
    .intro-girly h1 span {
      font-size: 1.5rem;
    }
    
    .title-with-image h2 {
      font-size: 2.2rem;
    }
    
    .portfolio-grid {
      grid-template-columns: 1fr;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
      font-size: 2rem;
    }
    
    .cta-button {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }
  /* ===== MODERN HERO SECTION ===== */
.modern-hero {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
  }
  
  /* Formes animées en arrière-plan */
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
  }
  
  .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--rose-theme);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
  }
  
  .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--lilas-doux);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
  }
  
  .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--gold-soft);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
  }
  
  @keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
  }
  
  /* Contenu du hero */
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
  }
  
  .hero-badge {
    display: inline-block;
    background: var(--rose-poudre);
    color: var(--rose-theme);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid var(--border-rose);
    backdrop-filter: blur(5px);
    animation: slideInLeft 0.8s ease;
  }
  
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease 0.1s both;
  }
  
  .title-line {
    display: block;
  }
  
  .gradient-text {
    background: linear-gradient(135deg, var(--rose-theme), var(--lilas-doux));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    color: var(--texte-gris);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease 0.2s both;
  }
  
  /* Statistiques */
  .hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: slideInLeft 0.8s ease 0.3s both;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
  }
  
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-theme);
    line-height: 1;
  }
  
  .stat-label {
    font-size: 0.9rem;
    color: var(--texte-gris);
    opacity: 0.8;
  }
  
  .stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--rose-theme), transparent);
  }
  
  /* Actions */
  .hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: slideInLeft 0.8s ease 0.4s both;
  }
  
  .hero-actions .button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .hero-actions .button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
  }
  
  .hero-actions .button:hover i {
    transform: translateX(5px) translateY(5px);
  }
  
  /* Scroll indicator */
  .hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeIn 1s ease 1s both;
  }
  
  .scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--texte-gris);
    opacity: 0.6;
  }
  
  .scroll-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-theme), transparent);
    position: relative;
    overflow: hidden;
  }
  
  .scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--rose-theme);
    animation: scrollLine 2s infinite;
  }
  
  @keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 200%; }
  }
  
  /* Media section */
  .hero-media {
    position: relative;
    z-index: 2;
    animation: slideInRight 0.8s ease 0.2s both;
  }
  
  .media-container {
    position: relative;
    padding: 40px;
  }
  
  .hero-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(216, 106, 127, 0.15));
    animation: floatImage 6s infinite ease-in-out;
  }
  
  @keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  /* Tech bubbles */
  .tech-bubbles {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .tech-bubble {
    position: absolute;
    background: white;
    color: var(--rose-theme);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-doux);
    border: 1px solid var(--border-rose);
    animation: bubbleFloat 4s infinite ease-in-out;
    white-space: nowrap;
  }
  
  .tech-bubble:nth-child(1) {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
  }
  
  .tech-bubble:nth-child(2) {
    top: 30%;
    right: 60%;
    animation-delay: -1s;
  }
  
  .tech-bubble:nth-child(3) {
    bottom: 30%;
    right: 10%;
    animation-delay: -2s;
  }
  
  .tech-bubble:nth-child(4) {
    bottom: 10%;
    right: 40%;
    animation-delay: -3s;
  }
  
  .tech-bubble:nth-child(5) {
    top: 50%;
    right: 80%;
    animation-delay: -1.5s;
  }
  
  @keyframes bubbleFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -10px); }
  }
  
  /* Animations */
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive */
  @media screen and (max-width: 968px) {
    .modern-hero {
      grid-template-columns: 1fr;
      min-height: auto;
      padding: 60px 20px;
      text-align: center;
    }
    
    .hero-title {
      font-size: 3.5rem;
    }
    
    .hero-stats {
      justify-content: center;
    }
    
    .hero-actions {
      justify-content: center;
    }
    
    .hero-scroll-indicator {
      justify-content: center;
    }
    
    .hero-media {
      display: none;
    }
    
    .shape-1 {
      width: 300px;
      height: 300px;
    }
    
    .shape-2 {
      width: 200px;
      height: 200px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .hero-title {
      font-size: 2.8rem;
    }
    
    .hero-stats {
      flex-direction: column;
      gap: 20px;
    }
    
    .stat-divider {
      display: none;
    }
    
    .hero-actions {
      flex-direction: column;
      gap: 15px;
    }
    
    .hero-actions .button {
      width: 100%;
      justify-content: center;
    }
  }

  .tech-note {
    margin: -5px 0 15px 0;
    font-size: 0.85rem;
    color: #666;
}

.tech-note a {
    color: #888;
    text-decoration: none;
    border-bottom: 1px dotted #ccc;
    transition: all 0.3s ease;
}

.tech-note a:hover {
    color: #333;
    border-bottom-color: #333;
}

/* Version plus stylisée si vous préférez */
.tech-note {
    margin: -5px 0 15px 0;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tech-note a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.tech-note a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0066cc;
    transition: width 0.3s ease;
}

.tech-note a:hover::after {
    width: 100%;
}

/* about.css - Version Girly */

/* ===== HERO SECTION ===== */
.about-hera {
    background: linear-gradient(135deg, var(--light-pink), var(--soft-lavender));
    padding: 80px 0;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.about-hera::before {

    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    animation: float 20s linear infinite;
}

.hera-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hera-greeting {
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    color: var(--text-soft);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hera-text h1 {
    font-size: 4rem;
    color: var(--text-soft);
    margin: 0 0 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
}

.hera-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.hera-decoration {
    display: flex;
    gap: 10px;
}

.hera-decoration .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-pink);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.hera-decoration .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.hera-decoration .dot:nth-child(3) {
    animation-delay: 0.6s;
}

.photo-frame {
    position: relative;
    width: 300px;
    height: 300px;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 20px 40px var(--shadow-pink);
    position: relative;
    z-index: 2;
}

.frame-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px dashed var(--primary-pink);
    border-radius: 50%;
    animation: spin 20s linear infinite;
    z-index: 1;
}

/* ===== SECTIONS COMMUNES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: var(--light-pink);
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 1rem;
  color: var(--text-soft);
  margin: 0 auto 15px auto; /* margin: 0 auto pour centrer */
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px var(--shadow-pink);
  width: fit-content; /* S'ajuste à la largeur du contenu */
  max-width: 90%; /* Évite de dépasser sur petits écrans */
  text-align: center;
  white-space: nowrap; /* Empêche la coupure du texte */
}

/* Pour les très petits écrans, on autorise la coupure */
@media (max-width: 480px) {
  .section-tag {
      white-space: normal; /* Permet au texte de passer à la ligne */
      font-size: 0.9rem;
      padding: 6px 15px;
      max-width: 95%;
  }
}

/* Remplacer aussi dans la partie @media existante */
@media (max-width: 768px) {
  .section-tag {
      font-size: 0.9rem;
      padding: 6px 18px;
      margin: 0 auto 12px auto;
  }
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-soft);
    margin: 0 0 15px 0;
    font-weight: 300;
}

.title-decoration {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.title-decoration .heart {
    font-size: 1.2rem;
    color: var(--primary-pink);
    animation: heartbeat 1.5s infinite;
}

.title-decoration .heart:nth-child(2) {
    animation-delay: 0.2s;
}

.title-decoration .heart:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    margin-bottom: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.about-text {
    background: var(--white-soft);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px var(--shadow-pink);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.about-text .intro {
    font-size: 1.2rem;
    color: var(--primary-pink);
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-pink);
    padding-left: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--light-pink), var(--soft-lavender));
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.highlight-icon {
    font-size: 2rem;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--shadow-pink);
}

.highlight-content h4 {
    color: var(--text-soft);
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.highlight-content p {
    margin: 0;
    color: var(--text-light);
}

.quote-box {
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 40px var(--shadow-pink);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    text-align: center;
}

.quote-box p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin: 20px 0;
}

.quote-icon {
    color: var(--primary-pink);
    font-size: 1.5rem;
    opacity: 0.3;
}

/* ===== TIMELINE GIRLY ===== */
.parcours-section {
    margin-bottom: 80px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 60px;
    height: calc(100% - 30px);
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-pink), var(--light-pink));
}

.timeline-marker {
    flex-shrink: 0;
}

.marker-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px var(--shadow-pink);
    border: 2px solid var(--primary-pink);
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-pink);
    flex: 1;
}

.timeline-content h3 {
    color: var(--text-soft);
    margin: 0 0 5px 0;
    font-size: 1.3rem;
}

.timeline-date {
    color: var(--primary-pink);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.timeline-note {
    background: var(--light-pink);
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
    font-style: italic;
}

/* ===== COMPÉTENCES GIRLY ===== */
.competences-section {
    margin-bottom: 80px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.skill-card {
    background: white;
    padding: 35px 25px;
    border-radius: 30px;
    box-shadow: 0 20px 40px var(--shadow-pink);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--light-pink) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.skill-card:hover {
    transform: translateY(-10px);
}

.skill-card.special {
    border: 2px solid var(--primary-pink);
    background: linear-gradient(135deg, white, var(--light-pink));
}

.special-badge {
    display: inline-block;
    background: var(--primary-pink);
    color: white;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-decoration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 3rem;
    opacity: 0.1;
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
    background: var(--light-pink);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px var(--shadow-pink);
}

.skill-card h3 {
    color: var(--text-soft);
    margin: 0 0 20px 0;
    font-size: 1.3rem;
}

.skill-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--light-pink);
}

.skill-list li:last-child {
    border-bottom: none;
}

.skill-name {
    display: block;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 5px;
}

.skill-desc {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Nuages de compétences */
.skills-cloud {
    text-align: center;
    margin-top: 50px;
}

.skills-cloud h3 {
    color: var(--text-soft);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.cloud-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.cloud-tag {
    background: white;
    padding: 10px 25px;
    border-radius: 40px;
    color: var(--text-light);
    box-shadow: 0 5px 15px var(--shadow-pink);
    border: 1px solid var(--light-pink);
    transition: all 0.3s;
    cursor: default;
}

.cloud-tag:hover {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

/* ===== STATS GIRLY ===== */
.stats-section {
    margin: 80px auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px var(--shadow-pink);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 10px;
}

.stat-decoration {
    font-size: 1.5rem;
    opacity: 0.3;
}

/* ===== TÉMOIGNAGES ===== */
.testimonials-section {
    margin: 80px auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 20px 40px var(--shadow-pink);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: var(--light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-pink);
    border: 2px solid white;
    box-shadow: 0 5px 15px var(--shadow-pink);
}

.testimonial-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 20px 0;
}

.testimonial-author {
    border-top: 1px dashed var(--light-pink);
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-soft);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-top: 15px;
    color: #ffd700;
    font-size: 0.9rem;
    letter-spacing: 3px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    margin: 80px auto;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-pink), var(--dusty-rose));
    padding: 60px;
    border-radius: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 2rem;
    opacity: 0.1;
    white-space: nowrap;
    animation: float 30s linear infinite;
}

.cta-decoration {
    font-size: 3rem;
    opacity: 0.3;
    margin: 10px 0;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.button-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-pink);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
}

.button-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: white;
    background: transparent;
    color: white;
}

.button-cta i {
    transition: transform 0.3s;
}

.button-cta:hover i {
    transform: scale(1.2);
}

/* ===== BACK BUTTON ===== */
.back-button-container {
    text-align: center;
    margin: 40px 0;
}

.button-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    border: 1px solid var(--light-pink);
    transition: all 0.3s;
    box-shadow: 0 5px 15px var(--shadow-pink);
}

.button-back:hover {
    background: var(--light-pink);
    color: var(--text-soft);
    transform: translateX(-5px);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    /* ===== CORRECTION PHOTO FRAME ===== */
@media (max-width: 968px) {
  .hera-content {
      flex-direction: column-reverse;
      text-align: center;
  }
  
  .hero-text h1 {
      font-size: 3rem;
  }
  
  .about-content {
      grid-template-columns: 1fr;
  }
  
  /* CORRECTION: Photo frame qui déborde/coupe */
  .photo-frame {
      width: 250px;
      height: 250px;
      margin: 0 auto;
      overflow: visible; /* S'assure que rien n'est caché */
  }
  
  .profile-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 5px solid white;
      box-shadow: 0 20px 40px var(--shadow-pink);
      position: relative;
      z-index: 2;
  }
  
  .frame-decoration {
      position: absolute;
      top: -15px;
      left: -15px;
      right: -15px;
      bottom: -15px;
      border: 2px dashed var(--primary-pink);
      border-radius: 50%;
      z-index: 1;
  }
}

/* CORRECTION POUR TRÈS PETITS ÉCRANS (problème de coupe) */
@media (max-width: 480px) {
  .photo-frame {
      width: 200px;
      height: 200px;
  }
  
  .frame-decoration {
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      border-width: 2px;
  }
}

@media (max-width: 360px) {
  .photo-frame {
      width: 160px;
      height: 160px;
  }
  
  .frame-decoration {
      top: -8px;
      left: -8px;
      right: -8px;
      bottom: -8px;
  }
}

}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-marker {
        align-self: flex-start;
    }
    
    .timeline-item:not(:last-child)::before {
        left: 35px;
        top: 70px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    .cloud-tag {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .marker-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}