/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=Space+Grotesk:wght@400;500;700&display=swap');

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* ou 100svh pour mobile */
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background-color: #0d1117;
  color: #f0f6fc;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  background-color: rgba(22, 27, 34, 0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px clamp(20px, 4vw, 60px);
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f6fc;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #58a6ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #79c0ff;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: clamp(32px, 6vw, 60px);
  padding: clamp(60px, 10vw, 120px) clamp(20px, 6vw, 80px);
}

.hero-content {
  max-width: 560px;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #79c0ff;
  margin-bottom: 12px;
}

.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #c9d1d9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.hero-img {
  display: block;
  width: min(380px, 100%);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(88, 166, 255, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(88, 166, 255, 0.32);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #238636, #2ea043);
  color: #f0f6fc;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(35, 134, 54, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(121, 192, 255, 0.6);
  color: #79c0ff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(88, 166, 255, 0.1);
  box-shadow: none;
}

.status-banner {
  margin: 0 clamp(20px, 6vw, 80px);
  padding: 18px clamp(20px, 6vw, 80px);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(88, 166, 255, 0.15), rgba(35, 134, 54, 0.15));
  border: 1px solid rgba(121, 192, 255, 0.25);
  color: #c9d1d9;
  font-size: 0.95rem;
}

.about,
.highlights,
.cta-contact {
  padding: clamp(60px, 10vw, 110px) clamp(20px, 6vw, 80px);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.section-subtitle {
  color: #8b949e;
  font-size: 1rem;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-card {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(121, 192, 255, 0.15);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(5, 10, 20, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.about-card:hover,
.about-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(121, 192, 255, 0.4);
}

.about-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #79c0ff;
}

.about-card p {
  color: #c9d1d9;
  line-height: 1.6;
}

.highlights {
  background: linear-gradient(180deg, rgba(12, 16, 24, 1) 0%, rgba(10, 14, 20, 1) 60%, rgba(5, 9, 15, 1) 100%);
}

.highlight-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.highlight-card {
  background: rgba(13, 17, 23, 0.9);
  border-radius: 18px;
  border: 1px solid rgba(88, 166, 255, 0.18);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
}

.card-link {
  color: #58a6ff;
  font-weight: 600;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
  text-decoration: underline;
}

.card-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-contact {
  text-align: center;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(88, 166, 255, 0.08);
  border: 1px solid rgba(88, 166, 255, 0.25);
  border-radius: 22px;
  padding: clamp(32px, 6vw, 60px);
  box-shadow: 0 24px 60px rgba(5, 10, 20, 0.45);
}

.cta-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.cta-content p {
  margin-bottom: 24px;
  color: #c9d1d9;
}

.page-intro {
  padding: clamp(60px, 12vw, 140px) clamp(20px, 6vw, 80px) clamp(20px, 6vw, 60px);
  text-align: center;
}

.page-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 18px;
}

.page-intro p {
  max-width: 720px;
  margin: 0 auto;
  color: #c9d1d9;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 0 clamp(20px, 6vw, 80px) clamp(60px, 10vw, 100px);
}

.contact-card,
.contact-form {
  background: rgba(22, 27, 34, 0.85);
  border: 1px solid rgba(88, 166, 255, 0.18);
  border-radius: 20px;
  padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 20px 40px rgba(5, 10, 20, 0.45);
}

.contact-card h2,
.contact-form h2 {
  margin-top: 0;
  color: #79c0ff;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-card a {
  color: #58a6ff;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  text-decoration: underline;
}

.contact-form form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(88, 166, 255, 0.25);
  background: rgba(13, 17, 23, 0.9);
  color: #f0f6fc;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid rgba(88, 166, 255, 0.45);
  outline-offset: 2px;
}

.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(88, 166, 255, 0.18);
  color: #79c0ff;
  font-size: 0.85rem;
}

.content-section {
  padding: clamp(40px, 8vw, 80px) clamp(20px, 6vw, 80px);
}

.content-section h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.simple-card {
  background: rgba(22, 27, 34, 0.8);
  border: 1px solid rgba(88, 166, 255, 0.15);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(5, 10, 20, 0.4);
}

.simple-card h3 {
  margin-top: 0;
  color: #79c0ff;
}

.simple-card ul {
  margin: 0;
  padding-left: 18px;
  color: #c9d1d9;
  line-height: 1.6;
}

.simple-card p {
  color: #c9d1d9;
  line-height: 1.6;
}

.site-footer {
  background-color: #161b22;
  text-align: center;
  padding: 24px clamp(20px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  margin-top: auto;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-link {
  color: #58a6ff;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    padding-top: clamp(80px, 14vw, 140px);
  }
}

/* ================================
   PAGE : Politique de confidentialité
   ================================ */

.confidentialite-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 10%;
  text-align: center;
  background-color: #0d1117;
  color: #f0f6fc;
}

.confidentialite-content {
  max-width: 800px;
  background-color: #161b22;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px #58a6ff33;
}

.confidentialite-title {
  font-size: 2em;
  color: #58a6ff;
  margin-bottom: 30px;
}

.confidentialite-section {
  margin-bottom: 25px;
}

.confidentialite-section h3 {
  color: #58a6ff;
  margin-bottom: 10px;
}

.confidentialite-section p {
  line-height: 1.7;
  color: #c9d1d9;
}

.mail-link {
  color: #58a6ff;
  text-decoration: none;
}

.mail-link:hover {
  text-decoration: underline;
}

<<<<<<< HEAD
=======
.footer-link {
  color: #58a6ff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}
/* invisibilqstion de la section contact */
#section-contact {
  display: none;
}

/* ==========================================================================
   Custom site theme: neon gamer aesthetic
   ========================================================================== */

:root {
  --color-background: #04010e;
  --color-background-alt: #0f172a;
  --color-panel: rgba(15, 23, 42, 0.8);
  --color-primary: #7c3aed;
  --color-primary-glow: rgba(124, 58, 237, 0.35);
  --color-accent: #22d3ee;
  --color-text: #e2e8f0;
  --color-muted: #94a3b8;
  --shadow-strong: 0 20px 45px rgba(124, 58, 237, 0.25);
  --shadow-soft: 0 12px 30px rgba(34, 211, 238, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Space Grotesk', 'Segoe UI', Tahoma, sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at top left, rgba(34, 211, 238, 0.15), transparent 55%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.2), transparent 50%),
    var(--color-background);
  background-attachment: fixed;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover,
a:focus {
  color: #5eead4;
  text-shadow: 0 0 12px rgba(94, 234, 212, 0.6);
}

.site-header {
  width: 100%;
  display: block;
  padding: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(55, 48, 163, 0.85));
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.55);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
}

.nav-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: 'Chakra Petch', 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo::before {
  content: '⚡';
  font-size: 1.3rem;
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(34, 211, 238, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.hero,
.cv-hero {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(88, 28, 135, 0.75));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.hero::before,
.cv-hero::before {
  content: '';
  position: absolute;
  inset: -20% auto auto -20%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.35), transparent 60%);
  filter: blur(20px);
}

.hero-content,
.cv-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero h2,
.cv-hero h1 {
  font-family: 'Chakra Petch', 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero p,
.cv-hero p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.btn {
  align-self: flex-start;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.15), rgba(124, 58, 237, 0.2));
  color: #f8fafc;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 25px rgba(94, 234, 212, 0.15);
}

.btn:hover,
.btn:focus {
  background: linear-gradient(120deg, rgba(94, 234, 212, 0.35), rgba(129, 140, 248, 0.4));
  box-shadow: 0 16px 30px rgba(129, 140, 248, 0.25);
}

.hero-img {
  width: 100%;
  max-width: 320px;
  justify-self: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
  background: rgba(15, 23, 42, 0.6);
  padding: 1.2rem;
}

.about,
.cv-section,
.recette,
.confidentialite-content {
  max-width: 1100px;
  margin: 0 auto 3rem auto;
  padding: 2.5rem 2rem;
  background: var(--color-panel);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-soft);
}

.about h2,
.cv-section h2,
.cv-section h3,
.recette h2,
.recette h3,
.confidentialite-content h2,
.confidentialite-content h3 {
  font-family: 'Chakra Petch', 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f8fafc;
}

.about p,
.cv-section p,
.recette p,
.confidentialite-content p,
.confidentialite-content li {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.cv-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1.4rem 1.8rem;
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.18), rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(34, 211, 238, 0.3);
  box-shadow: var(--shadow-soft);
}

.cv-meta-item {
  min-width: 180px;
}

.cv-meta-title {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: 0.35rem;
}

.cv-meta-value {
  font-size: 1rem;
  color: #f1f5f9;
  font-weight: 600;
}

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

.skill-chip {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(94, 234, 212, 0.3);
  color: #f8fafc;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 18px rgba(94, 234, 212, 0.18);
}

.skill-chip::before {
  content: '▹';
  color: #5eead4;
}

.timeline {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.timeline-item {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(129, 140, 248, 0.3);
  box-shadow: var(--shadow-soft);
}

.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(129, 140, 248, 0.85);
}

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

.contact-card {
  padding: 1.5rem;
  background: rgba(8, 47, 73, 0.85);
  border-radius: var(--radius-md);
  border: 1px solid rgba(14, 165, 233, 0.35);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.2);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.site-footer {
  margin-top: auto;
  width: 100%;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(30, 64, 175, 0.85));
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 1.8rem 0;
  box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.45);
}

.site-footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--color-muted);
  text-align: center;
}

.site-footer-content p {
  margin: 0;
}

.footer-link {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.infos-recette,
.confidentialite-container {
  background: transparent;
  box-shadow: none;
}

.infos-recette {
  margin: 0 auto 3rem;
  max-width: 1100px;
  display: grid;
  gap: 1.5rem;
  padding: 0 2rem;
}

.infos-recette ul,
.recette ul,
.recette ol {
  color: var(--color-muted);
  padding-left: 1.2rem;
}

.recette-img {
  border-radius: var(--radius-md);
  border: 1px solid rgba(14, 165, 233, 0.35);
  box-shadow: var(--shadow-soft);
}

main {
  width: 100%;
}

@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    font-size: 1.5rem;
  }

  .hero,
  .cv-hero {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
  }

  .about,
  .cv-section,
  .recette,
  .confidentialite-content {
    margin: 0 1rem 2.5rem;
    padding: 2rem 1.5rem;
  }

  .site-footer-content {
    padding: 0 1.5rem;
  }
}

>>>>>>> test
