/* SCROLL SMOOTH */
html {
    scroll-behavior: smooth;
}

/* BODY */
body {
    background-color: #030027;
    background-image: url("../img/low-contrast-linen.png");
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
}

.citation {
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-size: 1.3rem;
}

/* TIMELINE */

ul.timeline-3 {
    list-style-type: none;
    position: relative;
}
ul.timeline-3:before {
    content: " ";
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline-3 > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline-3 > li:before {
    content: " ";
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #2aa9e1;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}

  /* Section Concert */

  /* concerts de l'année en cours mais déjà passés */
.concerts-recent-past {
  opacity: 0.5;
}




/* Ligne d'année stylée */
.concerts-year {
  background: linear-gradient(90deg, #ffcc33, #ff9966); /* dégradé pour effet visuel */
  text-align: left;
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  padding: 12px 0;
  border-radius: 8px;
  margin: 20px 0 10px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.concerts-year td {
  padding-left: 50px;
  text-align: left;
  color: #2aa9e1;
  font-size: 1.6em;
}



/* Légère séparation entre l'année et les concerts */
.concerts-year + tr {
  border-top: 2px solid #ff9966;
}


  .concerts-table {
    background: transparent;
    color: #fff;
    border-collapse: separate;
    border-spacing: 0 10px;
  }

  .concerts-table tr {
    background: transparent;
  }

  .concerts-calendar {
    width: 90px;
  }

  .concerts-calendar-box {
    background-color: #df016e; /* 🎨 Couleur personnalisée */
    color: #fff;
    border-radius: 10px;
    width: 70px;
    margin: auto;
    text-align: center;
    padding: 5px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
  }

  .concerts-day {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
  }

  .concerts-month {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .concerts-info {
    font-size: 1rem;
    color: white;
    font-weight: lighter;
  }

  .concerts-past-row {
    opacity: 0.6;
  }

  .concerts-past-box {
    background-color: #6c757d;
  }

  .concerts-fade {
    transition: opacity 0.4s ease-in-out, height 0.4s ease-in-out;
  }

  .concerts-btn-toggle {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    padding: 8px 25px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .concerts-btn-toggle:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.03);
  }

  .concerts-btn-ticket {
    display: inline-block;
    background-color: #f3e81c; /* 🎨 Jaune vif pour "Carte" */
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #000;
    padding: 4px 14px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .concerts-btn-ticket:hover {
    transform: scale(1.05);
    background-color: rgba(255,255,255,0.1);
    border: solid 1px #f3e81c;
    color: white;
  }

  /* === Animation d'apparition === */
  @keyframes concertsFadeUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .concerts-animate {
    opacity: 0;
  }

  .concerts-animate.show {
    animation: concertsFadeUp 0.4s ease forwards;
  }

/* ACCORDEON */

summary {
    font-size: 18px;
    cursor: pointer;
    margin: 10px;
    padding: 10px;
    width: 100%;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    color: white;
    background-color: rgba(42, 169, 225, 0.1);
}

summary {list-style: none;}

details summary::before {
    content: "🤘";
    display: inline-block;
    margin-right: 10px;
    transition: transform 0.4s ease-in-out;
}

details[open] summary::before {
    transform : rotate(360deg);
}

details > p {
    padding: 5px;
    font-size: 20px;
    font-weight: bold;
    border: 30px;
}

summary:focus,
summary:hover {
    background-color: rgba(42, 169, 225, 0.4);
}



/* TABLEAU */
table {
    color: #ffffff;
}

/* HEADER */
header {
    position: relative;
    z-index: 1;
    height: 100vh;
    padding-top: 150px;
    text-align: center;
}

header .overlay {
    position: relative;
    z-index: -1;
    inset: 1;
    background-color: #30303061;
}

header video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.headerTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    line-height: 1.1;
}

.headerTitle button {
    text-decoration: none;
    display: inline-block;
    color: #030027;
    font-size: 18px;
    background-color: #f3e81c;
    border: 1px solid #f3e81c;
    padding: 12px 20px;
    border-radius: 50px;
    margin-top: 10px;
    transition: 0.4s;
}

.headerTitle button:hover {
    color: #f3e81c;
    background-color: #030027;
    border-color: 1px solid #f3e81c;
    transform: translateY(-5px);
    transition: 0.4s;
}

.headerTitle p {
    text-decoration: none;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 300;
}

/*NAVBAR*/

.navbar {
    transition: all 0.5s;
  }

.navbar-scrolled {
    background-color: #030027;
    background-image: url("../img/low-contrast-linen.png");
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .nav-link {
    color: #f3e81c;
    font-size: 18px;
    font-weight: bold;
    transition: color -4s;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-toggler {
    color: transparent;
    border-color: transparent;
}

.navbar-toggler-icon {
    background-color: #f3e81c;
    border-radius: 20%;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #2aa9e1;
    opacity: 70%;
}



/* BOUTON */

.bouton button {
    text-decoration: none;
    display: inline-block;
    color: white;
    font-size: 18px;
    background-color: #2aa9e1;
    border: 1px solid #2aa9e1;
    padding: 12px 20px;
    border-radius: 50px;
    margin-top: 50px;
    transition: 0.4s;
}

.bouton button:hover {
    background-color: #2e2e2e;
    color: #2aa9e1;
    border: 1px solid #2aa9e1;
    transform: translateY(-5px);
    transition: 0.4s;
}

.btn {
    background: #2aa9e1;
    transition: 0.4s;
}

.btn:hover {
    background-color: #2e2e2e;
    color: #2aa9e1;
    border: 1px solid #2aa9e1;
    transform: translateY(-5px);
}

/* TITRES */
h1 {
    font-family: 'Nabla', cursive;
    font-weight: 600;
    font-size: 55px;
    font-style: inherit;
    font-display: flex;
    color: transparent;
    background: -webkit-linear-gradient(top, #991a81, #df016e, #e94f1a, #f3e81c, #3aaa3c, #2aa9e1);
    background-clip: text;
    -webkit-background-clip: text;
    margin-top: 80px;
}

h2 {
    font-weight: 400;
    font-size: 25px;
    font-style: inherit;
    font-display: flex;
    color: transparent;
    background: -webkit-linear-gradient(top, #991a81, #df016e, #e94f1a, #f3e81c, #3aaa3c, #2aa9e1);
    background-clip: text;
    -webkit-background-clip: text;
}

h3 {
    font-weight: 400;
    font-size: 35px;
    text-shadow: 1px 5px 2px #2aa9e1;
}



h6 {
    font-weight: 400;
    font-size: 25px;
}

h4 {
    color: white;
    display:flex;
	align-items:flex-end;
	justify-content:center;
    min-height: 93vh;
    font-size: 25px;
    font-weight: 500;
    text-shadow: 1px 1px #030027;
}

h5 {
    color: white;
    display: inline;
    font-size: 25px;
    font-weight: 500;
    text-shadow: 1px 1px #030027;
}

h7 {
    font-family: "Lilita One", sans-serif;
    font-weight: 400;
  font-style: normal;
    font-size: 9vw;
    color: white;
    text-shadow: 3px 1px #f3e81c;
    opacity: 60%;
}

/* EFFET SUR LES IMAGES */
.fond_image {
    background: #030027;
    display: inline-block;
    margin-top: 10px;
}
.fond_image img {
    -moz-transition: opacity 0.9s;
    -webkit-transition: opacity 0.9s;
    -o-transition: opacity 0.9s;
}
.fond_image img:hover {
    opacity: 0.5;
    -moz-transition: opacity 0.4s;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
}

/* VIDEO YOUTUBE RESPONSIVE */
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 10px;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* CAROUSEL BOOTSTRAP */
.carousel-item {
    height: calc(100vh - 40px);
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }

/* IMAGE SLIDER */

.formImgSlider {
    height: 100vh;
    width: 100%;
    position: relative;
}

@keyframes fade {
    0% {
        opacity: 1;
    }
    33% {
        opacity: 0;
    }
    67% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.formImgSlider img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    animation: fade 9s ease-in-out infinite alternate;
}

.formImgSlider img:nth-of-type(1) {
    animation-delay: 0s;
}

.formImgSlider img:nth-of-type(2) {
    animation-delay: 3s;
}

.formImgSlider img:nth-last-of-type(3) {
    animation-delay: 6s;
}

/* FOOTER */
footer {
    background: linear-gradient(#991a81, #df016e, #e94f1a, #f3e81c, #3aaa3c, #2aa9e1);
    padding: 60px 0;
}

/*CONTACT*/

.contactForm{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 30px 8%;
}

.contactForm .row{
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
}

.contactTitle h2{
	position: relative;
	font-size: 22px;
	color: #ddd;
	display: inline-block;
	margin-bottom: 25px;
}

.contactTitle h2::before{
	content: '';
	position: absolute;
	width: 50%;
	height: 1px;
	background-color: #888;
	top: 120%;
	left: 0;
}

.contactTitle h2::after{
	content: '';
	position: absolute;
	width: 25%;
	height: 3px;
	background-color: #2aa9e1;
	top: calc(120% - 1px);
	left: 0;
}

.contactTitle p{
	color: #ccc;
	letter-spacing: 1px;
	line-height: 1.2;
	padding-bottom: 22px;
}

.contactInfo{
	margin-bottom: 16px;
}

.contactInfo .iconGroup{
	display: flex;
	align-items: center;
	margin: 25px 0px;
}

.iconGroup .icon{
	width: 45px;
	height: 45px;
	border: 2px solid #2aa9e1;
	border-radius: 50%;
	margin-right: 20px;
	position: relative;
}

.iconGroup .icon i{
	color: #ddd;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.iconGroup .details span{
	display: block;
	color: #888;
}

.iconGroup .details span:nth-child(1){
	text-transform: uppercase;
	color: #ccc;
}

.socialMedia{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 22px 0px 20px;
}

.socialMedia a{
	width: 35px;
	height: 35px;
	text-decoration: none;
	text-align: center;
	margin-right: 15px;
	border-radius: 5px;
	background-color: #2aa9e1;
	transition: 0.4s;
}

.socialMedia a i{
	color: #ddd;
	line-height: 35px;
	border: 1px solid transparent;
	transition-delay: 0.4s;
}

.socialMedia a:hover{
	transform: translateY(-5px);
	background-color: #2e2e2e;
	color: #2aa9e1;
	border: 1px solid #2aa9e1;
}

.socialMedia a:hover i{
	color: #2aa9e1;
}

/* FORMULAIRE*/
/* Style inputs, select elements and textareas */
input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border-color: rgba(34, 192, 232, 0.5);
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    box-sizing: border-box;
    resize: vertical;
}

input :focus-within {
    outline: none;
    border-color: #5bd183;
    border-width: 3px;
}

textarea :focus-within {
    outline: none;
    border-color: #5bd183;
    border-width: 3px;
}

select :focus-within {
    outline: none;
    border-color: #5bd183;
    border-width: 3px;
}

/* Style the label to display next to the inputs */
label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

/* Style the submit button */
.inputGroup button{
	padding: 8px 16px;
	font-size: 18px;
	background-color: #2aa9e1;
	color: #ddd;
	border: 1px solid transparent;
	border-radius: 25px;
	outline: none;
	cursor: pointer;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
	transition: 0.4s;
}
.inputGroup button:hover{
    background-color: #2e2e2e;
    border-color: #2aa9e1;
    color: #2aa9e1;
    transform: translateY(-5px);
}

/* Style the container */
.formulaire {
    border-radius: 10px;
    background-color: transparent;

}

/* Floating column for labels: 25% width */
.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25,
    .col-75,
    input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
}

/* COMPACT CAPTCHA */

.capbox {
	background-color: transparent;
	border: #2aa9e1 0px solid;
	border-width: 2px 2px 2px 20px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	display: inline-block;
	padding: 5px 8px 5px 8px;
	border-radius: 4px 4px 4px 4px;
	}

.capbox-inner {
	font: bold 12px arial, sans-serif;
	color: #fff;
	background-color: transparent;
	margin: 0px auto 0px auto;
	padding: 3px 10px 5px 10px;
	border-radius: 4px;
	display: inline-block;
	vertical-align: middle;
	}

#CaptchaDiv {
	color: #000000;
	font: normal 25px Impact, Charcoal, arial, sans-serif;
	font-style: italic;
	text-align: center;
	vertical-align: middle;
	background-color: #FFFFFF;
	user-select: none;
	display: inline-block;
	padding: 3px 14px 3px 8px;
	margin-right: 4px;
	border-radius: 4px;
	}

#CaptchaInput {
	border: #2aa9e1 2px solid;
	margin: 3px 0px 1px 0px;
	width: 105px;
	}



/* ANIMATION ON SCROLL*/

.block {
    animation: reveal linear;
    animation-timeline: view();
    animation-range-start: cover 0%;
    animation-range-end: contain 50%;
}

@keyframes reveal {
    from {
        opacity: 0;
        scale: 0;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

