<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =========================
  BASE
========================= */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #0f172a;
  color: #f1f5f9;
  line-height: 1.6;
}

a {
  color: #38bdf8;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =========================
  Annimation présentation acceuil
========================= */
.intro-title {
  color: #38bdf8;
  font-size: 2.8rem;
  margin-bottom: 0.3rem;
  text-align: center;
}


@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* =========================
  Annimation transition
========================= */
section {
  transition: background-color 0.6s ease, transform 0.4s ease;
}

/* =========================
  NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background-color: #1e293b;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links li a:hover {
  color: #facc15;
}

.nav-links a.active {
  background-color: #facc15;
  color: #0f172a;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}

/* =========================
  HERO SECTION
========================= */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

/* =========================
  BURGER ICON
========================= */
.burger {
  display: none;
  flex-direction: column;
  margin-left: auto;
  margin-right: 1rem;
  padding: 0.5rem;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.burger span {
  height: 3px;
  width: 25px;
  background-color: white;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 812px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #1e293b;
    padding: 1rem;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .burger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #1e293b;
    margin-top: 1rem;
    padding: 1rem 0;
  }

  .nav-links.show {
    display: flex;
  }
}

/* =========================
  PROGRESS BAR
========================= */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(to right, #38bdf8, #0ea5e9);
  z-index: 9999;
  transition: width 0.2s ease-out;
}

/* === Reset de base === */
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
}

/* === Section Accueil === */
.hero {
  width: 100%;
  padding: 2rem 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.hero-content {
  width: 100%;
  max-width: 700px;
  min-width: 300px;
  padding: 0 1rem;
  box-sizing: border-box;
  z-index: 1;
}

/* === Titre principal avec animation === */
.intro-title {
  font-size: 2.8rem;
  color: #38bdf8;
  margin-bottom: 0.3rem;
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #facc15;
  width: 0;
  animation:
    typing 2.5s steps(32, end) forwards,
    blink-cursor 0.75s step-end infinite;
}

/* === Clignotement du curseur === */
@keyframes blink-cursor {
  0%, 100% { border-color: transparent; }
  50% { border-color: #facc15; }
}

/* === Animation machine à écrire === */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* === Mise en valeur du prénom === */
.highlight {
  color: #facc15;
  white-space: nowrap;
}



/* === Responsive mobile : désactivation de l’animation === */
@media screen and (max-width: 768px) {
  .intro-title {
    font-size: 1.2rem;
    line-height: 1.2;
    animation: none !important;
    border-right: none !important;
    white-space: normal !important;
    overflow: visible !important;
    width: auto !important;
  }

  .highlight {
    white-space: normal;
  }
}


/* === Accroche === */
.intro-hook {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  word-break: break-word;
}

/* boutton pour attirer l'oeil */
.btn-gold {
  position: relative;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid #facc15;
  border-radius: 8px;
  background-color: transparent;
  color: #facc15;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animation lumineuse sur le texte */
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
  z-index: 1;
}

/* Texte au-dessus de l'effet lumineux */
.btn-gold span {
  position: relative;
  z-index: 2;
}

/* Au survol : effet plus fort */
.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #facc15;
}

@keyframes shine {
  0% { left: -75%; }
  100% { left: 125%; }
}


/* =========================
  Animation icônes de fond
=========================*/
.tech-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.tech-background img {
  width: 60px;
  opacity: 0.15;
  position: absolute;
  animation: float 20s linear infinite;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
}

/* Positionnements personnalisés des icônes */
.tech-background img:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.tech-background img:nth-child(2) { top: 20%; left: 25%; animation-delay: 5s; }
.tech-background img:nth-child(3) { top: 40%; left: 15%; animation-delay: 10s; }
.tech-background img:nth-child(4) { top: 60%; left: 50%; animation-delay: 2s; }
.tech-background img:nth-child(5) { top: 30%; left: 75%; animation-delay: 4s; }
.tech-background img:nth-child(6) { top: 70%; left: 80%; animation-delay: 8s; }
.tech-background img:nth-child(7) { top: 50%; left: 90%; animation-delay: 12s; }

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-40px) rotate(360deg); }
}


/* =========================
  Section À propos 
=========================*/
.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #f1f5f9;
}

.about-text p {
  margin-bottom: 1rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.about-text a {
  color: #38bdf8;
  font-weight: bold;
  text-decoration: underline;
}

.about-text hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid #475569;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.95rem;
  color: #94a3b8;
}

.contact-info div strong {
  color: #facc15;
  display: block;
  margin-bottom: 0.2rem;
}

/* =========================
  Image + réseaux 
=========================*/
.about-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.about-image img {
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* =========================
  Réseaux sociaux 
=========================*/
.socials {
  margin-top: 1rem;
  background-color: #1e293b;
  padding: 0.8rem 1rem;
  border-radius: 0 0 12px 12px;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.socials a {
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.socials a:hover {
  transform: scale(1.2);
  color: #facc15;
}

/* =========================
  Responsive pour mobile - À propos 
=========================*/
@media (max-width: 480px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-image img {
    width: 100%;
    max-width: 220px;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .socials {
    justify-content: center;
    gap: 1rem;
  }
}

/* =========================
  Sections Education 
*/
.section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.edu-card {
  background-color: #1e293b;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.1);
  transition: transform 0.3s ease;
}

.edu-card:hover {
  transform: translateY(-5px);
}

.edu-year {
  color: #facc15;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.edu-card h3 {
  color: #38bdf8;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.edu-card p {
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* Responsive pour mobile - Éducation */
@media (max-width: 480px) {
  .section {
    padding: 2rem 1rem;
  }

  .edu-grid {
    grid-template-columns: 1fr;
    /* Une seule colonne */
    gap: 1.5rem;
  }

  .edu-card {
    padding: 1rem;
  }

  .edu-card h3 {
    font-size: 1rem;
  }

  .edu-card p {
    font-size: 0.85rem;
  }
}

/* Experiences */
.timeline {
  position: relative;
  margin: 3rem 0;
  padding-left: 30px;
  border-left: 3px solid #38bdf8;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 5px;
  width: 16px;
  height: 16px;
  background-color: #facc15;
  border: 3px solid #0f172a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #0f172a;
}

.timeline-date {
  font-weight: bold;
  color: #38bdf8;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.timeline-box {
  background-color: #1e293b;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.15);
  transition: transform 0.3s ease;
}

.timeline-box:hover {
  transform: translateY(-4px);
}

.timeline-box h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #f1f5f9;
}

.timeline-box p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline {
    padding-left: 20px;
  }

  .timeline-item::before {
    left: -13px;
  }
}

/* Responsive pour mobile - Expériences */
@media (max-width: 480px) {
  .timeline {
    padding-left: 15px;
    margin: 2rem 0;
  }

  .timeline-item {
    margin-bottom: 2rem;
    padding-left: 0.5rem;
  }

  .timeline-item::before {
    width: 14px;
    height: 14px;
    left: -10px;
  }

  .timeline-date {
    font-size: 0.9rem;
  }

  .timeline-box {
    padding: 0.8rem 1rem;
  }

  .timeline-box h3 {
    font-size: 1rem;
  }

  .timeline-box p {
    font-size: 0.9rem;
  }
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background-color: #1e293b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.3);
}

.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.project-info {
  padding: 1rem;
}

.project-info h3 {
  color: #38bdf8;
  margin-bottom: 0.3rem;
}

.project-info p {
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  padding: 60px 20px;
}

.modal-content {
  background-color: #1e293b;
  margin: auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 700px;
  color: #f1f5f9;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
  color: #38bdf8;
  margin-top: 0;
}

.modal-content p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.modal-content img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
}

.modal .close {
  float: right;
  font-size: 2rem;
  color: #facc15;
  cursor: pointer;
  margin-top: -1rem;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* diaporama dans modal  */
.slider {
  position: relative;
  margin-top: 1.5rem;
  text-align: center;
}

.slides-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.slides-container img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  display: none;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.slides-container img.active {
  display: block;
}

.slider button.prev,
.slider button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.8);
  border: none;
  color: #facc15;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem 0.8rem;
  border-radius: 50%;
  z-index: 10;
}

.slider button.prev {
  left: 10px;
}

.slider button.next {
  right: 10px;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 10px;
}

/* Responsive pour mobile - Projets &amp; Modals */
@media (max-width: 480px) {
  .projects-grid {
    grid-template-columns: 1fr;
    /* une seule colonne */
    gap: 1.5rem;
  }

  .project-card img {
    height: 140px;
  }

  .project-info p {
    font-size: 0.85rem;
  }

  .modal-content {
    padding: 1rem;
    max-width: 95%;
  }

  .modal-content p {
    font-size: 0.9rem;
  }

  .slider {
    margin-top: 1rem;
  }

  .slides-container {
    height: auto;
  }

  .slides-container img {
    max-height: 180px;
  }

  .slider button.prev,
  .slider button.next {
    font-size: 1.6rem;
    padding: 0.2rem 0.6rem;
  }
}

/* Skills */
.skill-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #ffffff;
  /* Texte blanc */
}

.progress-bar {
  width: 100%;
  height: 10px;
  background-color: #334155;
  /* bleu foncé/gris pour contraste */
  border-radius: 20px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #38bdf8;
  /* bleu clair attractif */
  width: 0;
  border-radius: 20px;
  transition: width 1s ease;
}

/* Responsive pour mobile - Skills */
@media (max-width: 480px) {
  .skill-label {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .progress-bar {
    height: 8px;
  }

  .progress-bar-fill {
    border-radius: 10px;
  }
}

/*soft skills */
.soft-skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.soft-skills-grid span {
  background-color: #334155;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.soft-skills-grid span:hover {
  background-color: #475569;
  cursor: default;
}

/* Responsive pour mobile - Soft Skills */
@media (max-width: 480px) {
  .soft-skills-grid {
    flex-direction: column;
    align-items: center;
  }

  .soft-skills-grid span {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }
}

/* Contact */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background-color: #1e293b;
  color: #ffffff;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form button {
  background-color: #38bdf8;
  color: #0f172a;
  border: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0ea5e9;
}

.contact-infos {
  flex: 1;
  min-width: 240px;
  color: #f1f5f9;
}

.contact-infos p {
  margin-bottom: 1.2rem;
}

.contact-infos a {
  color: #38bdf8;
  text-decoration: none;
}

.contact-infos a:hover {
  text-decoration: underline;
}

/* Responsive pour mobile - Contact */
@media (max-width: 480px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem;
  }

  .contact-infos {
    width: 100%;
    padding: 0 1rem;
    text-align: center;
  }

  .contact-infos p {
    margin-bottom: 1rem;
  }
}

/* Footer */
.site-footer {
  background-color: #0a192f;
  color: #e5e7eb;
  padding: 2.5rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  text-align: left;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #3b82f6;
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-col {
    align-items: center;
  }
}

/* Responsive pour mobile - Footer &amp; Animations */
@media (max-width: 480px) {
  footer {
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .animate-fade,
  .animate-slide {
    transform: none;
    opacity: 1;
    animation: none;
    /* désactive les animations si besoin */
  }
}

/* À ajouter à la fin de style.css */
.animate-fade.visible,
.animate-slide.visible {
  animation-play-state: running;
}

/* ============================= */
/* === RESPONSIVE &lt; 480px === */
/* ============================= */
@media (max-width: 480px) {
  /* Navbar */
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  /* Accueil */
  .intro-title {
    font-size: 2rem;
  }

  .intro-subtitle {
    font-size: 1.1rem;
  }

  .intro-hook {
    font-size: 0.95rem;
    padding: 0 1rem;
    max-width: 100%;
  }

  .scroll-down {
    font-size: 0.9rem;
  }

  .hero {
    padding: 1.5rem 1rem;
    height: auto;
  }

  /* À propos */
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.2rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .about-image img {
    width: 100%;
    max-width: 220px;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  /* Éducation */
  .section {
    padding: 2rem 1rem;
  }

  .edu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .edu-card {
    padding: 1rem;
  }

  .edu-card h3 {
    font-size: 1rem;
  }

  .edu-card p {
    font-size: 0.85rem;
  }

  /* Expériences */
  .timeline {
    padding-left: 15px;
    margin: 2rem 0;
  }

  .timeline-item {
    margin-bottom: 2rem;
    padding-left: 0.5rem;
  }

  .timeline-item::before {
    width: 14px;
    height: 14px;
    left: -10px;
  }

  .timeline-date {
    font-size: 0.9rem;
  }

  .timeline-box {
    padding: 0.8rem 1rem;
  }

  .timeline-box h3 {
    font-size: 1rem;
  }

  .timeline-box p {
    font-size: 0.9rem;
  }

  /* Projets */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-card img {
    height: 140px;
  }

  .project-info p {
    font-size: 0.85rem;
  }

  .modal-content {
    padding: 1rem;
    max-width: 95%;
  }

  .modal-content p {
    font-size: 0.9rem;
  }

  .slider {
    margin-top: 1rem;
  }

  .slides-container {
    height: auto;
  }

  .slides-container img {
    max-height: 180px;
  }

  .slider button.prev,
  .slider button.next {
    font-size: 1.6rem;
    padding: 0.2rem 0.6rem;
  }

  /* Skills */
  .skill-label {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .progress-bar {
    height: 8px;
  }

  .progress-bar-fill {
    border-radius: 10px;
  }

  /* Soft Skills */
  .soft-skills-grid {
    flex-direction: column;
    align-items: center;
  }

  .soft-skills-grid span {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
  }

  /* Contact */
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem;
  }

  .contact-infos {
    width: 100%;
    padding: 0 1rem;
    text-align: center;
  }

  .contact-infos p {
    margin-bottom: 1rem;
  }

  /* Footer */
  footer {
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }

  .animate-fade,
  .animate-slide {
    transform: none;
    opacity: 1;
    animation: none;
  }
}

/* ============================== */
/* === RESPONSIVE &gt; 1024px === */
/* ============================== */
@media (min-width: 1024px) {
  .section {
    max-width: 1100px;
    margin: 0 auto;
  }

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

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

/* ==============================
message coontact
============================== */
.form-message {
  padding: 0.8rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
}

.form-message[style*="green"] {
  background-color: #e6f9ed;
  color: #1a7f3c;
}

.form-message[style*="red"] {
  background-color: #ffe6e6;
  color: #c62828;
}

/* ==============================
boutton retour en haut
============================== */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: #0a192f;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#back-to-top:hover {
  transform: scale(1.1);
  background-color: #1a273a;
}

/* ==============================
pop up coockies
============================== */
#cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}

.cookie-popup-content {
  background: #1e1e2f;
  color: #eee;
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  animation: fadeInPop 0.4s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-popup-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.cookie-popup-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cookie-popup-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Boutons */
#accept-cookies {
  background: #00c0ff;
  color: #000;
}

#accept-cookies:hover {
  background: #00a2d1;
}

#reject-cookies {
  background: #ff4b4b;
  color: white;
}

#reject-cookies:hover {
  background: #e53935;
}

#toggle-more-info {
  background: #2c2c40;
  color: #ddd;
}

#toggle-more-info:hover {
  background: #383850;
}

/* Bloc infos supplémentaires */
#cookie-more-info {
  display: none;
  margin-top: 1.5rem;
  text-align: left;
  background-color: #2a2a3d;
  padding: 1rem;
  border: 1px solid #444;
  border-radius: 8px;
  font-size: 0.9rem;
}

#cookie-more-info ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

#cookie-more-info li {
  margin-bottom: 0.5rem;
}

/* Apparition douce */
@keyframes fadeInPop {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}</pre></body></html>