/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.row{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.column{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 92%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .twoo.columns                   { max-width: 225px; min-width: 160px; width: 25%; display: block; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }

  .one-half.column                { width: 48%; }

}

/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 1.8rem; line-height: 1.25;  letter-spacing: -.1rem;}
h3 { font-size: 1.2rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 1rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 0.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 0.5rem; line-height: 1.6;  letter-spacing: 0; }

/* Larger than phablet */
@media (min-width: 550px) {
  h1 { font-size: 5.0rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
  h4 { font-size: 1rem; }
  h5 { font-size: 0.8rem; }
  h6 { font-size: 0.5rem; }
}

p {
  margin-top: 0; }


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB; }
a:hover {
  color: #0FA0CE; }


[data-theme="dark"] {
  --color-bg: #1A1A1A;                /* Fond principal : noir doux */
  --color-bg-alt: #2A2A2A;            /* Fond secondaire : gris foncé */
  --color-text: #F0F0F0;              /* Texte principal : très clair */
  --color-text-always: #1E1E1E;
  --color-text-secondary: #BBBBBB;    /* Texte secondaire : gris clair */
  --color-accent-primary: #FFD700;    /* Accent jaune légèrement atténué */
  --color-accent-secondary: #3399FF;  /* Accent secondaire : bleu lumineux */
  --color-success: #66E0A1;           /* Vert clair */
  --color-error: #FF7373;             /* Rouge clair légèrement rosé */
  --border-color: #333;
  --color-fg: #ffffff;
}
[data-theme="light"] {
  --color-bg: #white;                /* Fond principal : noir doux */
  --color-bg-alt: #A1D6DF33;            /* Fond secondaire : gris foncé */
  --color-text: #11304C;              /* Texte principal : très clair */
  --color-text-always: #1E1E1E;
  --color-text-secondary: #BBBBBB;    /* Texte secondaire : gris clair */
  --color-accent-primary: #FFD700;    /* Accent jaune légèrement atténué */
  --color-accent-secondary: #3399FF;  /* Accent secondaire : bleu lumineux */
  --color-success: #66E0A1;           /* Vert clair */
  --color-error: #FF7373;             /* Rouge clair légèrement rosé */
  --border-color: #333;
  --color-fg: #000000;
}
button {
  font-size: 1em;
  font-weight: bold;
  padding: 0.5rem 1rem;
  transition: all var(--global-transition-time) ease-in-out;
  border-radius: 2rem;
  cursor: pointer;
  color: var(--color-fg);
  background-color: var(--color-bg);
  border: 0.25rem solid var(--color-fg);
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; margin-top: 1rem; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 0rem; margin-right: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; 
  width: 100%;
}


/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,