* {
  margin: 0;
  line-height: calc(1em + 0.3rem);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

h1 {
  font-size: 2.8rem;
  font-family: "Chomsky";
  margin-bottom: 0.5rem;
}
h2 {
  font-size: 1.4rem;
  font-family: "PlayfairDisplay";
  margin: 1.4rem;
}
p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

q {
  font-family: "EBGaramond";
  font-size: 1.2rem;
}
a {
  text-decoration: none;
  color: #000000;
}
a:visited {
  color: #000000;
}
body {
  margin: 0;
  display: flex; /* pour centrer verticalement si tu veux */
  justify-content: center; /* centre horizontalement */
  font-size: 1rem;
  font-family: "LibreBaskerville";
}

/* CONTENEUR GLOBAL */
.wrapper {
  width: 60vw; /* largeur du site : moitié de l'écran */
  min-width: 300px; /* pour ne pas être trop petit sur mobile */
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.site-header {
  position: relative;
  text-align: center;

  color: #333;
  padding: 1em 0;
}

.female_medaillon_svg {
  width: 90px;
  height: 150px;
}
.cartouche_top_flourish {
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cartouche_bottom_flourish {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.title-container {
  display: flex;
  flex-direction: row;
}
/* TITRE */
.title {
  flex-grow: 1;
  width: 100%;
  font-family: "OldLondon";
  font-size: 4rem;
  padding: 2rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
  color: #000000;
}

/* BARRES NOIRES */
.header-bar {
  height: 2px;
  background-color: black;
  width: 100%;
  margin: 0.5em 0;
}

/* NAVIGATION sous le titre */
.site-header nav ul {
  display: flex;
  justify-content: space-evenly;
  gap: 2em;
  list-style: none;
  padding: 0;
  margin: 0.5em 0;
  font-family: "FetteBauerschAntiqua";
}

.site-header nav li {
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}
.site-header nav li a {
  text-decoration: none;
}
.site-header nav li a:visited {
  color: #000000;
}

/* GRID PRINCIPALE */
.page {
  display: grid;
  grid-template-columns: 1.2fr 3fr; /* section à gauche, main à droite */
  gap: 1em; /* espace entre section et main */
  margin-top: 1em;

  flex: 1;
}

/* SECTION / SIDEBAR */
section.sidebar {
  display: flex;
  flex-direction: column;

  padding: 1em;
  border-left: 2px solid #000000;
  border-right: 2px solid #000000;
}

.bulb_floral_svg {
  width: 55%;
  display: flex;
  align-self: center;
}
.sidebar-maintitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-family: "LibreCaslonTexTBold";
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
.sidebar ul li {
  display: flex;
  list-style: none;
  font-family: "LibreCaslonTexTBold";
  font-size: 1rem;
}
.sidebar ul li a:visited {
  color: #000000;
}
/* MAIN */
main {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  padding: 1em;
  text-align: justify;
  text-justify: auto;
}
.container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.h2_title {
  max-width: 80%;
}
.container_for_floral_stem_title {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-transform: uppercase;
}
.curved_floral_stem_left_svg {
  position: absolute;
  top: 0;
  right: 0;
}
.curved_floral_stem_right_svg {
  position: absolute;
  top: 0;
  left: 0;
}

.stylized_floral_stem_left_svg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.stylized_floral_stem_right_svg {
  position: absolute;
  left: 0;
  bottom: 0;
}
.container_scriptio_continua {
  width: 50%;
}
.scriptio_continua {
  width: 100%;
}
.container_big_ornament {
  width: 65%;
}

.plastische {
  font-size: 1.5rem;
  font-family: "PlastischePlakat";
  margin-bottom: 1.4rem;
}

.lettrine {
  font-family: "Behrens";
  font-size: 3.5rem;
}
/* NEWS PAGE */
.container_news {
  width: 100%;
  height: auto;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;

  display: flex;
  flex-direction: row;
}
.container_ship_svg {
  align-self: center;
  width: auto;
  height: auto;
  margin-left: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 0.2em;
}

.container_news_text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#date_news_rubrique {
  align-self: center;
  font-family: "OldLondon";
  font-size: 1.5rem;
  margin-bottom: 1em;
}
#news_paragraphe {
  margin: 0;
  font-family: "LibreBaskerville";
}

/* FONTS */
@font-face {
  font-family: "OldLondon";
  src: url(fonts/old_london/OldLondon.ttf) format("truetype");
}
@font-face {
  font-family: "MaximilianAntiqua";
  src: url(fonts/maximilianantiqua/MaximilianAntiquaSmallCaps.ttf)
    format("truetype");
}
@font-face {
  font-family: "MaximilianAntiquaInitialen";
  src: url(fonts/maximilian_antiqua_initialen/MaximilianAntiquaInitialen.ttf)
    format("truetype");
}
@font-face {
  font-family: "Ancient";
  src: url(fonts/ancient/Ancient\ Medium.ttf) format("truetype");
}
/* magnifique behrens si j'arrive a la faire fonctionner */
@font-face {
  font-family: "Behrens";
  src: url(fonts/behrens_antiqua_initialen/BehrensAntiquaInitialen.ttf)
    format("truetype");
}
/* pas mal chomsky */
@font-face {
  font-family: "Chomsky";
  src: url(fonts/chomsky/Chomsky.otf) format("opentype");
}
@font-face {
  font-family: "CloisterBlack";
  src: url(fonts/cloister_black/CloisterBlack.ttf) format("truetype");
}
@font-face {
  font-family: "PlastischePlakat";
  src: url(fonts/plastische_plakat_a/PlastischePlakatAntiqua.ttf)
    format("truetype");
}
/* POLICE POUR LE MENU LATERAL */
@font-face {
  font-family: "LibreCaslonTexTBold";
  src: url(fonts/Libre_Caslon_Text/LibreCaslonText-Bold.ttf) format("truetype");
}

@font-face {
  font-family: "LibreCaslonTextRegular";
  src: url(fonts/Libre_Caslon_Text/LibreCaslonText-Regular.ttf)
    format("truetype");
}

@font-face {
  font-family: "FetteBauerschAntiqua";
  src: url(fonts/fette_bauersche_antiqua/FetteBauerscheAntiquaUNZ1.ttf)
    format("truetype");
}

@font-face {
  font-family: "LibreBaskerville";
  src: url(fonts/Libre_Baskerville/LibreBaskerville-VariableFont_wght.ttf)
    format("truetype");
}

@font-face {
  font-family: "EBGaramond";
  src: url(fonts/EB_Garamond/EBGaramond-VariableFont_wght.ttf)
    format("truetype");
}
@font-face {
  font-family: "PlayfairDisplay";
  src: url(fonts/Playfair_Display/PlayfairDisplay-VariableFont_wght.ttf)
    format("truetype");
}
/* scroll bar */

body::-webkit-scrollbar {
  width: 1rem;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #000000;

  outline: 1px solid 251a11;
  border-radius: 0.4em;
}
/* * {
  outline: 1px solid rgba(255, 0, 0, 0.4);
}

*::before,
*::after {
  outline: 1px dashed rgba(0, 0, 255, 0.4);
} */

/* background-color: #f8f0e3; */
