/* Style de base */
a {
    color: #993300;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

/* Visité */
a:visited {
    color: #3f2c90;
}

/* Hover + animation */
a:hover {
    color: #3f2c90;
}

/* Actif */
a:active {
    color: #3f2c90;
}

/* Accessibilité */
a:focus {
    outline: 2px solid #3f2c90;
    outline-offset: 2px;
}

/* Appliquer seulement aux liens qui ne contiennent PAS d'image ainsi que les boutons */
a:not(:has(img)):not(:has(button))::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #CC9933;
    transition: width 0.3s ease;
}

a:not(:has(img)):not(:has(button)):hover::after {
    width: 100%;
}
body
{
    font-family: "franklin-gothic-atf", sans-serif;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #FFFFFF;	
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

p {
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #0F0F0F;
    line-height: 1.6;
}
h1
{
    color: #B8910B;
    font-size: 28px;
	font-family: franklin-gothic-atf,sans-serif;
	font-weight: 400;
	font-style: normal;
}

h2
{
    color: rgb(204,153,51);
    font-size: 24px;    
	font-family: franklin-gothic-atf,sans-serif;
	font-weight: 400;
	font-style: normal;
}
h3
{
	color: rgba(63,44,144,1.00);
	font-size: 22px;
	font-family: franklin-gothic-atf,sans-serif;
	font-weight: 400;
	font-style: normal;
}
h4
{
    color: rgba(63,44,144,1.00);
    font-size: 20px;    
	font-family: franklin-gothic-atf,sans-serif;
	font-weight: 400;
	font-style: normal;
}
h5
{
    color: rgba(63,44,144,1.00);
    font-size: 18px;    
	font-family: franklin-gothic-atf,sans-serif;
	font-weight: 400;
	font-style: normal;
}
h6
{
    color: rgb(153,153,51);    
    font-size: medium; 
	font-family: franklin-gothic-atf,sans-serif;
	font-weight: 400;
	font-style: normal;
}
hr {
	border: thin ridge #CC9933;
    background-color: #CC9933;
}
li {
    color: #B8910B;
    font-size: medium;
	font-family: franklin-gothic-atf,sans-serif;
	font-weight: 400;
	font-style: normal    
}


/*Media-affichage cellulaire-ordinateur*/
/* Par défaut (desktop) */
.hide-desktop { display: none; }
.show-desktop { display: block; }

/* Mobile */
@media (max-width: 768px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }

  /* Inverse sur mobile */
  .hide-desktop { display: block; }
  .show-desktop { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  #cellulaire_masque,
  #cellulaire_masque2,
  #cellulaire_masque3,
  #cellulaire_masque4 {
    display: none;
  }

  #cellulaire_show,
  #cellulaire_show2,
  #cellulaire_show3,
  #cellulaire_show4 {
    display: block;
  }
}

/* Desktop */
@media (min-width: 769px){
  #cellulaire_masque,
  #cellulaire_masque2,
  #cellulaire_masque3,
  #cellulaire_masque4 {
    display: block;
  }

  #cellulaire_show,
  #cellulaire_show2,
  #cellulaire_show3,
  #cellulaire_show4 {
    display: none;
  }
}
