* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'ClearSans', sans-serif;
    line-height: 1.6;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
	box-shadow: 0px 2px 25px #000000;
}


h1 { 
	font-family: 'Cooper BT Bold', sans-serif;
	font-size: 50px;
}

h2 { 
	font-family: 'Cooper BT Bold', sans-serif;
	font-size: 30px;
}

h3 { 
	font-family: 'Cooper BT Italic', sans-serif;
	font-size: 22px;
}

h4 {
	font-family: 'ClearSans Bold', sans-serif;
}

h5 {
	font-family: 'Cooper BT Italic', sans-serif;
	font-size: 20px;
}

p  {
	font-family: 'ClearSans', sans-serif;
}

.logo img {
    width: 50px;
    height: 50px;
	margin-top: 5px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
	font-family: 'ClearSans', sans-serif;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 5px;
    border-radius: 3px;
}

.section {
    min-height: 100vh;
    padding: 100px 20px;
}

.accueil {
    background: url('../images/accueil2.jpg') no-repeat center center/cover;
	color: #333;
	overflow: hidden;
	padding-left: 150px;
	padding-right: 150px;
}

.cestquoi {
    background-color: #FEE7F0;
	min-height: 50vh;
}

.notre-equipe {
    background: #FFD7E7;
	min-height: 75vh;
}

.cours {
    background: #8F3D30;
	color:  #FFD7E7;
    font-weight:normal;
}

.cours a:link {color:#FFD7E7; text-decoration : none;}

.cours a:visited {color:#000;}

.concerts-events {
    background: #f8b1d3;
	color: #8F3D30;
}


.contact {
    background: #FEE7F0;
	padding-left: 85px;
	padding-right: 85px;
	min-height: 65vh;
	}


.contact a:link {color:#8F3D30; text-decoration : none;}

.contact a:visited {color:#8F3D30;}



.social-links a {
    margin: 20px 10px ;
	max-height: 100%;
	max-width: 100%;
	text-align: center;
}


.contact-container {
	  display: flex;
      flex-wrap: wrap;
      min-height: 60vh;
    }

    .map {
      flex: 1;
      min-width: 300px;
	  max-height: inherit;
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: none;
	  pointer-events: auto;
      touch-action: pan-x pan-y;
    }

    .contact-text {
      flex: 1;
      min-width: 300px;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }

    .contact-text h2 {
      font-size: 28px;
      margin-bottom: 20px;
      color: #333;
    }

    .contact-text p {
      font-size: 16px;
      margin-bottom: 12px;
      line-height: 1.5;
      color: #555;
    }




       .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            max-width: 1200px;
            margin: auto;
		    pointer-events: auto;
  			touch-action: pan-x pan-y;
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            padding: 20px;
        }

	    .slide img {
            width: 415px;
            height: 515px;
            object-fit: cover;
        }

        .slide-content {
            padding-left: 80px;
            text-align: left;
			
        }

        .slide-content h2 {
            font-size: 45px;
        }

        .slide-content h3 {
            font-size: 30px;   
        }

        .slide-content p {
            font-size: 18px;
        }

        .navigation {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .navigation button {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        .indicators {
            text-align: center;
            margin-top: 20px;
        }

        .indicator {
            display: inline-block;
            width: 8px;
            height: 8px;
            margin: 0 4px;
            background-color: #ccc;
            border-radius: 50%;
        }

        .indicator.active {
            background-color: #333;
        }


.cours-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.cours-item {
    flex: 1 1 25%;
    margin: 10px;
    text-align: center;
}

.cours-item img {
    max-width: 100%;
    height: auto;
	width: 400px;
}

.event-grid {
    display: flex;
    flex-wrap: wrap;
}

.event-item {
    position: relative;
    flex: 1 1 23%;
    margin: 1%;
    overflow: hidden;
}

.event-item img {
    width: 100%;
    display: block;
}

.event-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.event-item:hover .event-info {
    opacity: 1; /* opacity à 0 pour effacer le hover (apparition des légendes) */
}



footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

footer a:link {color:#fff;}

footer a:visited {color:#fff;}


@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
    }

    nav ul.show {
        display: flex;
    }
	
	.accueil {
    background: url('../images/accueil3.jpg') no-repeat center center/cover;
	color: #333;
	overflow: hidden;
	padding-left: 40px;
	padding-right: 40px;
	}
	
	.notre-equipe {
	min-height: 50vh;
	}
	
	.notre-equipe h1 {
     font-size: 38px;
}
	
	.cours h1 {
		font-size: 38px;
	}
	
	.concerts-events h1 {
    font-size: 38px;
}

	.contact h1 {
			font-size: 38px
	}
	
	.contact h3 {
			font-size: 20px
	}
	
	.contact h5 {
			font-size: 25px;
	}
	
	
	.contact-container {
        flex-direction: column;
      }
	
    .map {
        height: 420px;
      }
	
    .contact-text {
        padding: 20px;
		  text-align: center;
      }
	
	.contact {
	padding-left: 0px;
	padding-right: 0px;
	} 
	
	.map iframe {
      width: 100%;
      height: 400px;
      border: none;
    }
	
	.cestquoi h1 {
    font-size: 38px;
    }
	
		.cestquoi h3 {
    font-size: 20px;
    }
	
	.indicators {
    text-align: center;
    margin-top: 2px;
        }
	
	
	.accueil h3 {
            font-size: 14px;   
        }
	
	.accueil h1 {
            font-size: 12px;   
        }
	
	.slide {
        flex-direction: column;
        text-align: center;
    }

    .slide img {
        width: 60%;
        height: auto;
    }
	
	.slide-content h1 {
		    text-align: center;
		    font-size: 30px;
        }
	
	  .slide-content h2 {
            font-size: 25px;
		    text-align: center;
        }

        .slide-content h3 {
            font-size: 20px;
			text-align: center;   
        }

        .slide-content p {
            font-size: 16px;
			text-align: center;
        }

    .slide-content {
        padding-left: 0;
        margin-top: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .slider-controls {
        top: 45%;
    }

    .cours-item {
        flex: 1 1 100%;
    }
	
	.cours-item img {
	width: 250px;
}

    .event-item {
        flex: 1 1 48%;
    }

    .contact-form, .contact-info {
        width: 100%;
		align-content: center;
    }
	
	
	

}

/* #Typo
================================================== */
	

	@font-face {
    font-family: 'ClearSans';
    src: url('../fonts/ClearSans/ClearSans-Regular.woff2') format('woff2'),
         url('../fonts/ClearSans/ClearSans-Regular.woff') format('woff'),
         url('../fonts/ClearSans/ClearSans-Regular.ttf') format('truetype');
  	}
	
		@font-face {
    font-family: 'ClearSans Italic';
    src: url('../fonts/ClearSans/ClearSans-Italic.woff2') format('woff2'),
         url('../fonts/ClearSans/ClearSans-Italic.woff') format('woff'),
         url('../fonts/ClearSans/ClearSans-Italic.ttf') format('truetype');
  	}

		@font-face {
    font-family: 'ClearSans Bold';
    src: url('../fonts/ClearSans/ClearSans-Bold.woff2') format('woff2'),
         url('../fonts/ClearSans/ClearSans-Bold.woff') format('woff'),
         url('../fonts/ClearSans/ClearSans-Bold.ttf') format('truetype');
  	}

	@font-face {
    font-family: 'Cooper BT';
    src: url('../fonts/CooperBT/CooperLtBT-Regular.woff2') format('woff2'),
         url('../fonts/CooperBT/CooperLtBT-Regular.woff') format('woff'),
         url('../fonts/CooperBT/CooperLtBT-Regular.ttf') format('truetype');
  	}

	@font-face {
    font-family: 'Cooper BT Italic';
    src: url('../fonts/CooperBT/CooperLtBT-Italic.woff2') format('woff2'),
         url('../fonts/CooperBT/CooperLtBT-Italic.woff') format('woff'),
         url('../fonts/CooperBT/CooperLtBT-Italic.ttf') format('truetype');
  	}

	@font-face {
    font-family: 'Cooper BT Medium';
    src: url('../fonts/CooperBT/CooperMdBT-Regular.woff2') format('woff2'),
         url('../fonts/CooperBT/CooperMdBT-Regular.woff') format('woff'),
         url('../fonts/CooperBT/CooperMdBT-Regular.ttf') format('truetype');
  	}

	@font-face {
    font-family: 'Cooper BT Medium Italic';
    src: url('../fonts/CooperBT/CooperMdBT-Italic.woff2') format('woff2'),
         url('../fonts/CooperBT/CooperMdBT-Italic.woff') format('woff'),
         url('../fonts/CooperBT/CooperMdBT-Italic.ttf') format('truetype');
  	}

	@font-face {
    font-family: 'Cooper BT Bold';
    src: url('../fonts/CooperBT/CooperLtBT-Bold.woff2') format('woff2'),
         url('../fonts/CooperBT/CooperLtBT-Bold.woff') format('woff'),
         url('../fonts/CooperBT/CooperLtBT-Bold.ttf') format('truetype');
  	}
