/* Default styles */
:root {
    --primary: #f0dae9;
    --bg: #0f513b;
    --hover: #4a6fa5;
    --shadow: rgba(0,0,0,0.1);
    --accent: #4a6fa5;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* 'Barlow Condensed' font family */
@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-RegularItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('/fonts/barlow-condensed/BarlowCondensed-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* SVG schéma */
.st0, .st1, .st2, .st7 {
  fill: #f0dae9;
}

.st1 {
  font-family: 'Barlow Condensed';
  font-size: .7rem;
  font-weight: 200;
}

.st1, .st3, .st2 {
  isolation: isolate;
}

.st2 {
  opacity: .5;
}

.st2, .st4, .st5 {
  stroke: #f0dae9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.st4, .st5 {
  fill: none;
}

.st5 {
  stroke-dasharray: 0 2;
}

.st6 {
  fill: #0f513b;
}

.st7 {
  font-family: 'Barlow Condensed';
  font-size: 1.1rem;
  font-weight: 600;
}

.schema {
    max-width: 1200px;
}

/* styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow Condensed', system-ui, sans-serif;
    background: var(--bg);
    color: var(--primary);
    line-height: 1.4;
    font-size: 1.75rem;
    font-weight: 300;
    padding: 0 1rem;
}

a {
    text-decoration: none;
    color: #f0dae9;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}
    
header {
    padding: 2rem 0;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 200;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
}

main {
    flex-grow: 1;
    max-width: 800px;
    margin: 0 auto;
}

ul, ol {
    margin: 0 0 0 3rem;
    padding: 0;
    list-style-position: outside;
}

code {
    font-size: 1rem;
    font-weight: 100;
    line-height: .25rem;
}

strong {
    font-weight: 700;
    letter-spacing: .25rem;
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.subtitle {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    /*letter-spacing: .15rem;*/
    font-weight: 100;
}

.maj {
    font-variant: small-caps;
}

.workflow {
    background-color: rgba(240, 218, 233, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.workflow h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cta {
    text-align: center;
    padding: 3rem 0;
}

.btn {
    display: inline-block;
    background-color: #f0dae9;
    color: #0f513b;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .logo {
        max-width: 300px;
    }
}