@charset "UTF-8";

/* === VARIABLES ET INITIALISATION === */
/* =================================== */

:root {
      --sizeREF: 24px;
      --sizeNAV: 24px;
      --sizeASIDE: 20px;
      --sizeDESIGN: 24px;
      --sizeCREA: 24px;
      --colorA: rgba(255,255,255,0.95);
      --colorB: rgba(198,222,231,0.70);
      --colorC: rgba(120,209,229,1.00);
      --colorD: rgba(84,131,141,1.00);
      --colorE: rgba(105,170,185,1.00);
      --teinteA:40,59,63;           
      --teinteB: 43,154,180;
    }

body, ul, li, h1, h2, h3, h4, p {
     margin: 0;
     padding: 0;
     font-weight: normal;
}
section, a {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	color: antiquewhite;
}

 /* === SPAN comportements === */

span {
	display: block;
}

/* ========== POLICES et FONTS ========== */
/* ====================================== */

.annieUseYourTelescope {
    font-family: "Annie Use Your Telescope", cursive;
    font-weight: 400;
    font-style: normal;
}
.atma-light {
  font-family: "Atma", system-ui;
  font-weight: 300;
  font-style: normal;
}
.atma-regular {
  font-family: "Atma", system-ui;
  font-weight: 400;
  font-style: normal;
}
.atma-medium {
  font-family: "Atma", system-ui;
  font-weight: 500;
  font-style: normal;
}
.atma-semibold {
  font-family: "Atma", system-ui;
  font-weight: 600;
  font-style: normal;
}
.atma-bold {
  font-family: "Atma", system-ui;
  font-weight: 700;
  font-style: normal;
}
.bangers-regular {
  font-family: "Bangers", system-ui;
  font-weight: 400;
  font-style: normal;
}
.chango-regular {
  font-family: "Chango", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.chelsea-market-regular {
  font-family: "Chelsea Market", system-ui;
  font-weight: 400;
  font-style: normal;
}
.delius-regular {
  font-family: "Delius", cursive;
  font-weight: 400;
  font-style: normal;
}
.fontdiner-swanky-regular {
  font-family: "Fontdiner Swanky", serif;
  font-weight: 400;
  font-style: normal;
}
.gochi-hand-regular {
  font-family: "Gochi Hand", cursive;
  font-weight: 400;
  font-style: normal;
}
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 700

.josefin-sans-<uniquifier> {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.londrina-solid-thin {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.londrina-solid-light {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.londrina-solid-regular {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.londrina-solid-black {
  font-family: "Londrina Solid", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.neucha-regular {
  font-family: "Neucha", cursive;
  font-weight: 400;
  font-style: normal;
}
.short-stack-regular {
  font-family: "Short Stack", cursive;
  font-weight: 400;
  font-style: normal;
}
.sniglet-regular {
  font-family: "Sniglet", system-ui;
  font-weight: 400;
  font-style: normal;
}
.sniglet-extrabold {
  font-family: "Sniglet", system-ui;
  font-weight: 800;
  font-style: normal;
}
.sofadi-one-regular {
  font-family: "Sofadi One", system-ui;
  font-weight: 400;
  font-style: normal;
}
.sonsie-one-regular {
  font-family: "Sonsie One", system-ui;
  font-weight: 400;
  font-style: normal;
}
.stint-ultra-expanded-regular {
  font-family: "Stint Ultra Expanded", serif;
  font-weight: 400;
  font-style: normal;
}
.stint-ultra-condensed-regular {
  font-family: "Stint Ultra Condensed", serif;
  font-weight: 400;
  font-style: normal;
}

/* ====================== BODY ======= */

body {
    display: grid;
    grid-template-columns: 1fr 1480px 1fr;
    background-color: rgba(48,45,49,1.00);
    font-family: "Londrina Solid", sans-serif;
    font-weight: 400;
}

/* ================== MAIN :: CONTENU ======= */

main {
    grid-column: 2;
	display: grid;
    grid-gap: 1em;
    grid-template-columns: 1fr;
    grid-template-rows: 560px repeat(10, 550px) 140px;
    grid-template-areas: 
        "bando"
        "section01"
        "section02"
        "section03"
        "section04"
        "section05"
        "section06"
        "section07"
        "section08"
        "section09"
        "section10"
        "footer";
}

/* ================= HEADER :: PAGE EN TETE JOBE's WORLD ======= */

main>header {
    grid-area: bando;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
}
main>header h1 {
     order: 2;
}
main>header h2 {
     order: 3;
}
main>header h3{
     order: 4;
}
main>header h4{
     order: 5;
}
main>header h5{
    order: 0;
}
main>header div {
    order: 1;    
    flex-grow: 1;
    width: 180px;
    height: 120px;
    margin: 1em 0 0.3em 0;
    background-image: url("VISUELS/ATLAS2.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}


/* =================== RÉGLAGES GÉNÉRAUX =============== */
/* ======================== SECTION ==================== */

section {
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: 50px auto;
    padding: 10px;
}

section>header {
    grid-column: 1/9;
    margin-bottom: 1em;
    padding-bottom: 10px;
    text-align: right;
    color: white;
    border-bottom: solid 2px;
}
section>header[title="jeune"] {
    border-color: aqua;
}
section>header[title="bd"] {
    border-color: rgba(255,0,246,1.00);
}
section>header[title="movie"] {
    border-color: rgba(106,255,0,1.00);
}
section>header[title="roman"] {
    border-color: rgba(142,113,72,1.00);
}
section>header[title="photo"] {
    border-color: rgba(76,64,202,1.00);
}

section article {
    display: flex;
    padding: 20px;
    background-color: rgba(103,213,103,1.00);
}
section article header {
    width: 300px;
    padding: 10px;
    background-color: rgba(189,103,213,1.00);
}
section article header h1 {
    color: rgba(244,233,247,1.00);
}
section article header h2 {
    color: rgba(242,225,246,1.00);
}
section article header h3 {
    color: rgba(240,213,247,1.00);
}

/* =================== RÉGLAGES des SECTIONS ==================== */
/* === JEUNESSE :: PAYS GOURMAND === */
section:nth-of-type(1) {
    background-color: rgba(58,71,75,1.00);
}
section:nth-of-type(1) article {
    grid-column: 2/8;
}

/* === BD :: AFFAIRE DU BIDET === */
section:nth-of-type(2) article {
    justify-content: flex-end;
    grid-column: 3/9;
}

/* === ANIMATION :: BOTTES ROUGES === */
section:nth-of-type(3) article {
    grid-column: 2/8;
}

/* === JEUNESSE :: PETIT LI - REINE NUIT === */
section:nth-of-type(4) article:nth-of-type(1) {
    grid-column: 2/5;
}
section:nth-of-type(4) article:nth-of-type(2) {
    justify-content: flex-end;
    grid-column: 5/8;
}

/* === BD :: ENERGIES === */
section:nth-of-type(5) article {    
    justify-content: flex-end;
    grid-column: 1/7;
}

/* === BD :: ANTIRIDES - ANATOLE === */
section:nth-of-type(6) article:nth-of-type(1) {
    grid-column: 2/5;
}
section:nth-of-type(6) article:nth-of-type(2) {
    grid-column: 5/9;
}

/* === ANIMATIONS :: BELLE JOURNÉE - RETOUR CROISADES - MIAM MIAM === */
section:nth-of-type(7) article:nth-of-type(1) {
    grid-column: 1/3;
}
section:nth-of-type(7) article:nth-of-type(2) {
    grid-column: 3/7;
}
section:nth-of-type(7) article:nth-of-type(3) {
    grid-column: 7/9;
}

/* === BD :: TEMPORALIS - UNIVERSE === */
section:nth-of-type(8) article:nth-of-type(1) {
    grid-column: 1/5;
}
section:nth-of-type(8) article:nth-of-type(2) {
    justify-content: flex-end;
    grid-column: 5/9;
}

/* === PROJET PHOTO === */
section:nth-of-type(9) article {
    grid-column: 1/9;
}

/* === ROMANS :: ENCORE UN PEU - TOURNEVIS DANS LA TETE - GARE FATALE === */
section:nth-of-type(10) article:nth-of-type(1) {
    grid-column: 2/4;
}
section:nth-of-type(10) article:nth-of-type(2) {
    grid-column: 4/6;
}
section:nth-of-type(10) article:nth-of-type(3) {
    grid-column: 6/8;
}

/* =======   PIED DE PAGE :::: BODY MAIN FOOTER  ======== */

main>footer {
    grid-area: footer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "GaleyRounded-Variable";
    font-size: 0.6em;
    font-weight: 200;
    color: rgba(238,238,238,0.65);
    padding-bottom: 1.5em;
    text-align: center;
}
main>footer a span {
    display: inline-block;
}
main>footer>a> span {
    background-image: url("VISUELS/LOGOsite.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 5px;
    height: 64px;
    width: 90px;
}

/* ====== RESPONSIVE ET FLUIDE ======= */
/* =================================== */

/* ==================================================== LARGEUR 320 PIXELS ======= */

@media screen and (min-width: 320px){
    
    /* === VARIABLES === */

     :root {
          --SIZEfont: 18px;
    }     
    
   
    
}

/* ==================================================== LARGEUR 640 PIXELS ======= */

@media screen and (min-width: 640px){
    
    /* === VARIABLES === */

     :root {
          --SIZEfont: 20px;
    }     
    
    
    
}

/* ==================================================== LARGEUR 960 PIXELS ======= */

@media screen and (min-width: 960px){
    
    /* === VARIABLES === */

     :root {
          --SIZEfont: 22px;
    }     
    
    
    
}

/* ==================================================== LARGEUR 1280 PIXELS ======= */

@media screen and (min-width: 1260px){
    
    /* === VARIABLES === */

     :root {
          --SIZEfont: 24px;
    }     
    
    
    
}
