/* Fond d'image-couleur du site */
body{
    background-image: url("../img/mur.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    color: white;
}
.backgroundColor{
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 2px 2px 10px white;
    border-radius: 20px;
    padding: 30px;
    text-shadow: 1px 1px 0px grey;
}
.backgroundColor2{
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px;
    text-shadow: 2px 2px 2px black;
}
/* Style NavBar */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 1;
}
li[class*="nav-item"]:hover{
    border: 1px white inset;
    background-color: grey;
}
/* Titre des différents menus-pages */
h1{
    /* Padding-top important pour compenser la NavBar fixe */
    padding-top: 130px;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 -1px 0 #fff,
         0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626,
         0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c,
         0 11px 0 #1a1a1a, 0 12px 0 #181818, 0 13px 0 #161616, 0 14px 0 #141414, 0 15px 0 #121212,
         0 22px 30px rgba(255, 255, 255, 0.9);
    font-family: 'Baloo Bhai', cursive;
    font-size: 48px;
    font-weight: bold;
    color: orange;
    letter-spacing: 1px;  
}
h2, h3{
    font-family: 'Baloo Bhai', cursive;
    font-weight: bold;
    text-shadow: 0px 0px 1px black;
    text-align: center;
    color: orange;
}
h5{
    font-size: 14px;
    color: white;
}
/* Style Image Page 1-Vidéo Page 2 */
img{
    border: 1px inset white;
    border-radius: 10px;
}
img:hover{
    transition: transform 0.5s ease;
    transform: scale(1.2);
}
iframe{
    border: 3px orange inset;
}
iframe:hover{
    border: 8px orangered inset;
}
/* Style titre image Page 1 */
p[class="caption-text"]{
    font-family: Brush Script MT, cursive;
    font-size: 16px;
}
/* Style Liste Page 2 */
.list1{
    font-size: 18px;
    text-shadow: 2px 2px 8px #FF4500;
    list-style-image: url('../img/stationery.png');
    /*list-style-image: url("https://img.icons8.com/color/48/000000/stationery.png");*/     
    list-style-position: inherit; 
}
.list2{
    font-size: 18px;    
    text-shadow: 2px 2px 5px #FF4500;
    list-style-image: url('../img/stanley-knife.png');
    /*list-style-image: url("https://img.icons8.com/color/48/000000/stanley-knife.png");*/     
    list-style-position: inherit;
}
/* Style Signature Page 3 */
.signature{
    font-family: 'Sacramento', cursive;
    font-size: 35px;
    /*font-weight: bold;*/
}
/* Style du formulaire Page 4 */
label, input[class*=form-control], textarea{
    margin-bottom: 10px;
}
/* Footer */
footer{
    background-color: #2B3E50;
}
footer a{
    font-size: 18px;
    color: #DF691A;
}
:root {
    --dark-color: #232323;
    --light-color: #fff;
    --facebook-color: #2471a3;
    --twitter-color: #3498db;
    --reddit-color: #e74c3c;
    --github-color: #c39bd3;

/*  Everything is fully scalable so feel free to adjust the value of the '--icon-size' in order to meet your demands :) */
  
    --icon-size: 100px;
    --icon-offset: calc(var(--icon-size) * .5);
}
* {
    margin: 0;
    padding: 0;
    user-select: none;
}
.center-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.social-container{
    display: inline-block;   
    width: var(--icon-size);
    height: var(--icon-size);
}
@media screen and (max-width: 992px){
    .social-container{
        display:none;
    }
}
.social-container > input[type="checkbox"] {
    display: none;
}
.social-container .social-icon {
    position: absolute;
    padding:25px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    color: var(--light-color) !important;
    z-index: 0;
    transition: all 500ms ease;
}
.social-container .social-icon:hover {
    cursor: pointer;
}
.social-container .social-icon.facebook {
    background-color: var(--facebook-color);
    transform: rotate(22.5deg);
}
.social-container .social-icon.twitter {
    background-color: var(--twitter-color);
    transform: rotate(50deg);
}
.social-container .social-icon.reddit {
    background-color: var(--reddit-color);
    transform: rotate(72.5deg);
}
.social-container .social-icon.github {
    background-color: var(--github-color);
    transform: rotate(90deg);
}
.social-container .social-icon i {
    opacity: 0;
    font-size: calc(var(--icon-size) * .4);
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all 350ms ease-in-out;
}
.social-container .social-icon:last-of-type .description {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%) rotate(-90deg);
    text-align: center;
    font-size: calc(var(--icon-size) * .16);
    transition: opacity 250ms ease-out;
}
.social-container input[type="checkbox"]:checked ~ .github {
    transform: translate(var(--icon-offset), var(--icon-offset)) rotate(-90deg);
}
.social-container input[type="checkbox"]:checked ~ .reddit {
    transform: translate(var(--icon-offset), calc(var(--icon-offset)  * -1)) rotate(-90deg);
}
.social-container input[type="checkbox"]:checked ~ .twitter {
    transform: translate(calc(var(--icon-offset) * -1), calc(var(--icon-offset) * -1)) rotate(-90deg);
}
.social-container input[type="checkbox"]:checked ~ .facebook {
    transform: translate(calc(var(--icon-offset) * -1), var(--icon-offset)) rotate(-90deg);
}
.social-container input[type="checkbox"]:checked ~ .social-icon .description {
    opacity: 0;
}
.social-container input[type="checkbox"]:checked ~ .social-icon i {
    opacity: 1;
}
.social-container input[type="checkbox"]:checked ~ .social-icon:hover i {
    transform: translate(-35%, -50%) rotate(90deg);
}
.social-container input[type="checkbox"]:checked ~ .social-icon::before {
    content: attr(data-description);
    display: inline-block;
    position: absolute;
    top: 40%;
    right: 35%;
    width: inherit;
    text-align: center;
    font-size: calc(var(--icon-size) * .15);
    font-weight: bold;
    opacity: 0;
    transform: rotate(90deg) translateY(50%);
    transition: all 350ms 50ms ease;
}
.social-container input[type="checkbox"]:checked ~ .social-icon:hover::before {
    
    right: 25%;
    opacity: 1;
}
.facebook
{
  height: 50px;
  
}
.twitter
{
  height: 50px;
}
.youtube
{
  height: 50px;    
}
.instagram
{
  height: 50px; 
}
li[class*="nav-item"]:hover
{
 border: 1px white inset;
 background-color: grey;
}
