

/* COULEURS (à partir du logo et page du Diocèse)*/

:root{
  --rose-fonce:     #f02233;
  --rose-clair:     #fb808a;
  --vert:           #009543;
  --vert-clair:      #04ff8d;

  --gris-pale: #eeeeee;
  --gris-moyen: gray;
  --gris-fonce: #444444;

}

/* ------------------------------------------ */

body {
	font-family: Arial;
	font-size: large;
	background-color: white;
	color: black;
  max-width: 1200px;
  margin: auto;
}

div.contenu_page {
  margin: 0;
  padding: 10%;
  background-image: url(../img/fond_vertical.png);
  background-repeat: no-repeat;
}

/* ------------------------------------------ */

h1 {
  font-size: 200%;
  font-weight: bold;
  text-align: center;
  margin-top:5px;
  margin-bottom:35px;
  padding-bottom: 10px;
}
h2 {
  color: black;
  background-color: var(--vert-clair);
  font-size: 150%;
  font-weight: bold;
}
h3 {
  font-size: 110%;
  margin-left: 40px;
  font-style: italic;
  padding-left: 20px;
}
h2,h3 {
  display:inline;
}
h4 {
  margin-left: 60px;
  font-style: italic;
  padding-left: 20px;
}

/* ------------------------------------------ */


p.clear {
  clear: both;
}

/* *********** En-tête **************** */

#en_tete {
  width: 100%;
  top: 0;
  margin-left: 0;
  margin-right: 0;
  background-image: url(../img/banniere.jpg);
  /* background-repeat: no-repeat; */
  background-color: var(--gris-pale);
}

#logo {
  border: 0;
  width: 80px; 
  height: 80px; 
}


/* HORIZONTAL MENU */

ul.menuh {
    color: black;
    background-color: var(--vert-clair);
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
}

li.menuh {
    float: left;
}

li.menuh a {
    display: block;
    color: black;
    text-align: center;
    padding: 7px 8px;
    text-decoration: none;
    border-right: 1px solid white;
}

/* No bar after the last item */
li.menuh:last-child {
    border-right: none;
    float: left;
}

/* Change the link color on hover */
li.menuh a:hover {
    color: white;
    background-color: var(--vert);
}

/* Active (page sur laquelle on est) */
li.menuh a.en_cours {
    color:  black;
    background-color: var(--rose-clair);
}
li.menuh a.en_cours:hover {
    color:  white;
    background-color: var(--rose-fonce);
}


a:visited {
  color: var(--rose-fonce);
}

/* ------------------------------------------ */
/* miscellaneous */

/* ===== Centered image ===== */

img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-height: 400px;
  margin-bottom: 0;
}



/* ------------------------------------------ */
/* special pivoine */

.bouton_piv {
  font-size: 150%;
  font-weight: bold;
  text-align: center;
  background-color: var(--rose-fonce);
  color: white;
  border: 1px double var(--rose-fonce);
  border-radius: 15px;
  padding: 20px;
  margin: 30px;
  box-shadow: 4px 4px 7px var(--gris-moyen);
  cursor: pointer;
}
button.bouton_piv {
  float: right;  
}
.bouton_piv:hover {
  color: black;
  background-color: var(--rose-clair);
}
.bouton_piv a {
  text-decoration: none;
  color: var(--rose-fonce);
}

/* ===== Plis ===== */

/* contenus de paragraphe pliables */
div.pli {
  display: block;
}


.pliable:hover {
  background-color: var(--vert);
  color: white;
}

.triangle {
  cursor: pointer; 
}



