/**
* CSS adapté pour retrouver la mise en page originale et responsive
* 
* @version 2.0
* @author Vaska 
*
*/

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

body {
  font-size: 20px;
  font-family: "EB Garamond", 'Helvetica Neue', Arial, Helvetica, Verdana, sans-serif;
  background: #fff;
  color: #931e1e;
  line-height: 1.4em;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

/* Conteneur principal */
#container {
  display: flex;
  align-items: flex-start;
}

/* Menu */
#index {
  width: 330px;
  padding: 20px;
  background: #fff;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5em;
  color: #931e1e;
  display: block;
}

#index ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

/* styling the index */
#index ul { list-style: none; margin: 0; font-weight: 400;}
#index ul.section { color: black; }
#index ul.subsection { color: #931e1e; font-weight: 400; }



/* styles for the section titles */
#index ul.section span.section_title, 
#index ul.section span.section_title a 
{ color: #9e8339; font-weight: 400; }
#index ul.section span.section_title a:hover {
  font-style: italic;
  color: #931e1e;
}

/* active section title */
#index span.active_section_title,
#index span.active_section_title a { font-weight: bold; }

#index a {
  text-decoration: none;
  color: #931e1e;
}

#index a:hover {
  font-style: italic;
  color: #c4a347;
}

/* Contenu principal */
#exhibit {
  flex-grow: 1;
  max-width: 800px;
  padding: 20px;
  margin-left: 350px;
  color: #931e1e;
}

/* Liens dans l'exhibit */
#exhibit a {
  text-decoration: none;
  color: #c4a347;
}

#exhibit a:visited {
  color: #c4a347;
}

#exhibit a:hover {
  font-style: italic;
  color: #c4a347;
}

/* Titres */
h1, h2, h3, h4 {
  font-family: "EB Garamond";
  font-size: 16px;
  margin-bottom: 1em;
  font-weight: bold;
  font-style: italic;
  color: #931e1e;
}

/* Paragraphes */
#exhibit p, code, blockquote {
  width: 600px;
  margin-bottom: 1em;
  color: #931e1e;
}

/* Style général */
small {
  font-size: 9px;
}

code {
  font-family: "EB Garamond";
}

blockquote {
  padding-left: 9px;
}

/* Titres et légendes */
.captioning {
  margin-top: 2px;
}

.title, .caption {
  font-size: 0.7em;
  font-style: italic;
  line-height: 1.2em;
}

/* Conteneurs */
.container {
  padding: 27px 9px 25px 27px;
}

/* Supprime les bordures des images dans les liens */
a img {
  border: none;
  max-width: 100%;
  height: auto;
}

/* Bouton menu sur mobile */


/* Responsive Design */
@media screen and (max-width: 768px) {
  #container {
    flex-direction: column;
    align-items: center;
  }


  #exhibit {
    margin-left: 0;
    max-width: 80%;
    padding: 15px;
  }

  #exhibit p, code, blockquote {
    width: 100%;
  }

  #exhibit img {
    max-width: 90%;
    height: auto;
  }
}