/*Google Font*/
@import url("https://fonts.googleapis.com/css2?family=Glory:wght@400;500&display=swap");

/*css reset*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-style: normal;
}

body {
	font-family: "Glory", sans-serif;
	background: url(../images/Shooting-Star-Web-Header-1600x603.jpg);
	background-size: cover;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: #010101;
	height: 100vh;
}

.content {
	min-height: 100%;
}

/* ------------------------------------------------------------------------------------------- */

header{
	flex-basis: 100vw;
	width: 100%;
}


.page-title {
	text-shadow: #010101 1px 0 10px;
	color: #9cecff;
	text-align: center;
	padding-bottom: 30px;
	font-size: 3em;
}

/*menu principale*/
nav ul {
	/*enlever les puces*/
	list-style-type: none;
	text-align: center;
	display: flex;
}

nav li {
	flex:1 1 auto;
	position: relative;
	background-color: #a94caa;
	text-align: center;
}
nav li:hover {
	background-color: #c7305d;
}

nav li a {
	text-decoration: none;
	display: block;
	/*espace entre les boutons*/
	padding: 15px;
	color: #9cecff;
	border-bottom: 4px solid transparent;
}

nav li a:hover {
	color: #9cecff;
	border-bottom: 4px solid #9cecff;
}

nav li a.actif {
	color: #9cecff;
	background-color: #642d87;
}

nav li a.actif:hover {
	color: #642d87;
	background-color: #9cecff;
	border-bottom: 4px solid #642d87;
}


/* menu déroulant*/
nav ul li ul {
	display: none;
	position: absolute;
	width: 100%;
	z-index: 10;
}

/* menu déroulant apparait au survol*/
nav ul li:hover ul {
	display: block;
	display: flex;
	flex-flow: column wrap;
}

nav li ul {
	position: absolute;
}

.headerImage {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	width: 50%;
	height: 50%;
}

/* ------------------------------------------------------------------------------------------- */

.content-inside {
	padding: 20px;
	padding-bottom: 70px;
}

/* ------------------------------------------------------------------------------------------- */



/* --------------------------------------------------------------------------------------------- */

footer {
	background-color: #a94caa;
	width: 100%;
	box-shadow: 5px 5px 15px 5px #ff8080, -9px 5px 15px 5px #ffe488,
	-7px -5px 15px 5px #8cff85, 12px -5px 15px 5px #80c7ff,
	12px 10px 15px 7px #e488ff, -10px 10px 15px 7px #ff616b,
	-10px -7px 27px 1px #8e5cff, 5px 5px 15px 5px rgba(0, 0, 0, 0);
	flex-basis: 100vw;
	display: flex;
	justify-content: space-between;
  }

.copyright{
	
	display: block;
	height: 0px;
	left: 5px;
	top: 25px;
	width: 25%;
	position: relative;
	font-size: 0.9em;
	font-weight:bold;
}

.social-icons{
	margin-right: 5px;
	display: block;
	
}
/* icones */
.social-icons li {
	display: inline-block;
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size:18px;
	transition:0.3s;
	border-radius:50%;
}

/*icône*/
.social-icons a {
	display: block;
	color: #fff;
	padding:16px;
}


.social-icons li:nth-child(1){
	background: #4267B2;
}

.social-icons li:nth-child(2){
	background: #FF5700;
}

.social-icons li:nth-child(3){
	background: #FF0000;
}

.social-icons li:nth-child(4){
	background: #333;
}

.social-icons li:nth-child(5){
	background: #1DB954;
}

.social-icons li:hover{
	transform:translateY(-8px);
	box-shadow:0 10px 10px rgba(255,255,255,.5);
}



/* Scrollbar Volé de l'internet  https://codepen.io/stephenpaton-tech/full/JjRvGmY */
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #9AEAFD #383838;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 11px;
  }

  *::-webkit-scrollbar-track {
    background: #383838;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #9AEAFD;
    border-radius: 10px;
    border: 0px solid #ffffff;
  }

/* ------------------------------------------------------------------------------------------- */

/* burger */

.navbar-toggle{
    display: none;
	position :absolute;
	z-index: 10;
}

.bar1, .bar2, .bar3{
    width: 35px;
    background-color: white;
    height: 5px;
    margin: 6px 0;
    transition: 0.4s;

}


.change .bar1{
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2{
    opacity: 0;
}

.change .bar3{
    transform: rotate(45deg) translate(-8px, -8px);
}


/* ------------------------------------------------------------------------------------------- */

.menu {
    display: flex;
    justify-content: flex-end;
}

.menu a {
    display: flex;
    justify-content: center;
}


/* Menu hamburger */

.navbar-toggle {
    cursor: pointer;
    font-size: 2em;
    color: white;
    margin-left: 2vh;
    position: absolute;
    top: 0.2em;
    display: none;
}

/* icone hamburger animée CSS */
.bar1, .bar2, .bar3 {
    width: 35px;
    height: 4px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    transform: rotate(-45deg) translate(-9px, 6px);
}
.change .bar2 {
    opacity: 0;
}
.change .bar3 {
    transform: rotate(45deg) translate(-8px, -8px);
}

/* tablette */
@media screen and (min-width: 768px) and (max-width: 980px) {
    
    .menu {
        justify-content: space-between;
    }
}

/* cellulaire */
@media screen and (min-width: 320px) and (max-width: 767px) {
    .navbar-toggle {
        display: block;
    }
    /* Cacher menu */
    .menu {
        display: none;
    }
    /* barre menu */
    .navbar {
        display: block;
        position: relative;
    }  
    /* classe utilisée js pur ouvrir le menu */
    .active {
        display: flex;
        flex-direction: column;
    }
	.headerImage {
		display: none;
	}
}