:root {
  --marronfonce: #3D160C; 
  --marronclair: #AB7C51;
  --beige: #FFD297; 
  --jaune: #FFC300;  
}

p{
    font-size: 1.2em;
}

@font-face {
  font-family: hahafont;
  src: url(Lostar.ttf);
}

@font-face {
  font-family: hangfont;
  src: url(HangedLetters.ttf);
}

html{
    /*scroll-behavior: smooth;*/
}

body {
    background-color: black;
    color: var(--jaune);
    font-family: Arial;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    /*  height: 100vh;*/
    margin: 0px;
    font-size: 16px;
    overflow-x: hidden; 
    overflow-y: scroll; 
    display: flex;
    flex-direction: column;
    z-index: -5;
}
.cursor-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--jaune); /* Replace with your color variable */
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: difference;
    animation: drum-pulse 3s infinite ease-in-out;
}

@keyframes drum-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.trail-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--jaune); /* Replace with your custom color */
    position: absolute;
    pointer-events: none; /* Prevent interaction */
    transform: translate(-50%, -50%);
    animation: fade-out 0.5s ease-out forwards;
}

/* Trail Fade Out Animation */
@keyframes fade-out {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
}


header{
  text-align: center;
  margin-bottom: 5px;
  margin-top: 5px;
}

header ul{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  margin-top: 5px;
}

header ul li{
  display: inline-block;
  justify-content: space-between;
  align-items: center;
  color: var(--jaune);
  margin: 10px;
  transition: color 0.3s;
  padding: 10px;
}

header ul li a{
    text-decoration: none;
    color: var(--jaune);
}

header ul li a:hover{
  color: var(--marronfonce);
  cursor: pointer;
  border-radius: 50%;
  /*border: 1px solid var(--jaune);*/
}

header ul li img{
  background-color: var(--jaune);
  width: 100px;
  height: auto;
  border-radius: 50%;
  padding: 10px;
}

#titre{
    text-align: center;
    height: 6rem;
}

.titre{
    text-align: center;
}

h1{
  text-align: center;
  font-size: 4rem;
  text-transform: uppercase;
  font-family: Arial;
  margin-bottom: 5px;
  margin-top: 0px;
}

.highlight {
  color: black; /* Set the text color to black */
  text-shadow: 
    -1px -1px 0 var(--jaune), 
    1px -1px 0 var(--jaune), 
    -1px 1px 0 var(--jaune), 
    1px 1px 0 var(--jaune); 
}

.container-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-container-container{
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-container-container-adrien{
    /*margin: 0;*/
    margin-top: 15vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-video-debut{
    margin-top: -10vh;
    /*margin: 0;*/
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
  background: var(--marronfonce);
  border: 5px solid var(--marronclair);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  width: 70%;
  height: auto;
  padding: 10px;
  position: relative;
  text-align: center;
}

#introvideo {
  width: 100%;
  /*height: 450px;*/
  border: 3px solid var(--marronclair);
  border-radius: 5px;
}

.content-video-container {
  background: var(--marronfonce);
  border: 5px solid var(--marronclair);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  width: 50%;
  padding: 10px;
  position: relative;
  text-align: center;
  opacity: 1;
  /*transform: translateX(50px); */
  transition: opacity 0.5s, transform 0.5s;
}

.content-video-container-remy {
  background: var(--marronfonce);
  border: 5px solid var(--marronclair);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  width: 65%;
  padding: 10px;
  position: relative;
  text-align: center;
  opacity: 1;
  /*transform: translateX(50px); */
  transition: opacity 0.5s, transform 0.5s;
}

.content-video-container.visible {
  opacity: 1;
  transform: translateX(0); 
}

.content-video-container.stay {
  transform: translateX(0); 
  opacity: 1;
  transition: none;
}

.content-video {
  width: 100%;
  height: 450px;
  border: 3px solid var(--marronclair);
  border-radius: 5px;
}

.content-video {
    width: 100%; 
    height: auto;
    transition: transform 0.5s ease-in-out; 
    object-fit: contain; 
    transform-origin: top left; 
}

.video-fullscreen {
    transform: scale(2) translateX(50%); 
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    object-fit: cover; /* Cover the screen */
}

.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3px;
  padding: 5px;
  background: black;
  border-radius: 5px;
}

.controls button,
.controls input {
  background: var(--marronfonce);
  border: 2px solid var(--jaune);
  color: var(--jaune);
  font-family: 'Courier New', Courier, monospace;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s;
}

.controls button:hover,
.controls input:hover {
  background: var(--marronclair);
}

.controls input[type="range"] {
  width: 100%;
  cursor: pointer;
}

h4{
  text-align: center;
}

.intro-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.texte-intro {
  margin-top: 50px;
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start;
  gap: 20px;
  width: 70%;
}

.texte-gauche, .texte-droit {
  width: 30%; 
  font-size: smaller;
}

.texte-droit{
  text-align: right;
}

.texte-gauche p, .texte-droit p {
  margin: 0; 
}

.boutton{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

h3{
    margin-top: 50px;
    text-align: center;
    /*text-decoration: underline;*/
    border: 2px solid var(--jaune);
    border-radius: 50px;
    color: var(--jaune);
    transition: color 0.3s, background-color 0.3s;
    padding: 15px;
    width: 18%;
    text-transform: uppercase;
}

h3:hover{
  color: var(--marronfonce);
  cursor: pointer;
  background-color: var(--jaune);
}

.content{
    display: none;
    
}

.content{
    z-index : 0;
}

.content.show {
	display: block;
	animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.debut{
  margin-bottom: 100px;
}

.defiler {
    width: 120%; 
    height: 60px; 
    left: -50px;
    background-color: black; 
    overflow: hidden; 
    position: relative;
    display: flex;
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 0 10px 8px rgba(255, 195, 0, 1);
    margin: 0; 
    padding: 0; 
}

.defiler-content {
    display: flex;
    animation: defiler 40s linear infinite; 
}

.defiler span {
    font-size: 2.3rem;
    color: var(--jaune); 
    padding: 0 30px; 
    text-transform: uppercase;
    white-space: nowrap; 
    font-weight: bold;
}

@keyframes defiler {
    0% {
        transform: translateX(100%); 
    }
    100% {
        transform: translateX(-100%); 
    }
}

.affronter h2{
    font-size: 2em;
    text-transform:uppercase;
    padding-top: 50px;
}

.affronter{
    margin-bottom: 50px;  
}

.content{
    background-color: var(--marronfonce);
}

.lavideo{
    background: black;
    
}

#groupfil{
    width: 1000.2vh;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
}

#fil {
    width: 15.2vh;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#fil2{
    width: 1.7vh;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#zigzag {
    margin-top: 15vh;
    width: 120vh;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#caca{
    height: 20vh;
}

#m {
    width: 100%;
    height: 19.2vh;
    background-color: var(--marronfonce);
}

#n {
    width: 100%;
    /*height: 80vh;*/
    background-color: var(--marronfonce);
    display: flex;
    margin-bottom: 50px;
}

#o {
    width: 100%;
    height: 19.2vh;
    background-color: black;
}

#p {
    width: 100%;
    /*height: 80vh;*/
    background-color: black;
    display: flex;
    margin-bottom: 50px;
    align-items: center;
}

#titreu {
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#titree {
    margin-right: 5vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Titre aligné à droite */
    justify-content: flex-start; /* Contenu placé en haut */
}

#titree2 {
    margin-left: 5vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Titre aligné à gauche */
    justify-content: flex-end; /* Contenu placé en bas */
}


#titree h1, #titree2 h1 {
    margin: 0;
    padding: 0; /* Correction ici */
    font-size: 5em;
}

#titree p{
    margin-left: 20%;
    color: var(--beige);
    text-align: justify;
    text-align-last: right;
}

#titree2 p{
    margin-right: 20%;
    color: var(--beige);
    text-align: justify;
    text-align-last: left;
}

#left{
    margin-top: 10vh;
    width: 50%;
    display: flex;
    flex-direction: column;
    height: 90vh;
}

#right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 93vh;
}

#left {
    align-items: flex-start; /* Tout le contenu à gauche */
}

#right {
    align-items: flex-start; /* Contenu aligné à gauche */
}

#left2{
    width: 55%;
    height: 40%;
}

/*#left {*/
/*    align-items: start;*/
/*    display: flex;*/
/*    justify-content: start;*/
/*}*/

/*#right {*/
/*    align-items: end;*/
/*    display: flex;*/
/*    justify-content: end;*/
/*}*/

#left2 {
    align-items: end;
    display: flex;
    justify-content: end;
}

#lepas {
text-shadow: 
    -1px -1px 0 var(--jaune), 
    1px -1px 0 var(--jaune), 
    -1px 1px 0 var(--jaune), 
    1px 1px 0 var(--jaune); 
    color: black;
}

#FRANCHIR {
    color: var(--jaune);
    height: 7vh;
}

#prenom {
    color: var(--beige);
}

#nom {
    color: var(--beige);
}

#affronter{
    color: var(--beige);
}

#doutes{
    text-shadow: 
    -1px -1px 0 var(--beige), 
    1px -1px 0 var(--beige), 
    -1px 1px 0 var(--beige), 
    1px 1px 0 var(--beige); 
    color: var(--beige);
}

#apres{
    text-shadow: 
    -1px -1px 0 var(--jaune), 
    1px -1px 0 var(--jaune), 
    -1px 1px 0 var(--jaune), 
    1px 1px 0 var(--jaune); 
    color: var(--marronfonce);
}

.texte-affronter{
    text-align: center;
    margin: 50px;
    color: var(--beige);
}

.nina-content{
    display: flex;
    justify-content: center;
    align-items: center;
}

#nina{
    width: 50%;
}

.milieu{
    background-color: black;
    height: 223vh;
}

.dernier{
    padding-top: 10vh;
    margin-top: 90px;
    background-color: var(--marronfonce);
    height: 180vh;
}

.remy h2{
    text-align: center;
    font-size: 3em;
    text-transform: uppercase;
}

.remy{
    margin: 13vh;
    border: 2px solid var(--jaune);
}

.remy p{
    margin-left: 200px;
    margin-right: 200px;
}

.dernier p{
    text-align: justify;
    text-align-last: center;
}

.jazzguitariste{
    display: flex;
    justify-content: center;
    gap: 30%;
    margin-top: 10px;
}

.ad{
    display: flex;
    justify-content: center;
    align-items: center;
}

.adrien{
    margin-top: 32vh;
    width: 50%;
}

.adrien h2{
    font-size: 3.5em;
    text-transform: uppercase;
}

.adrien p{
    text-align: justify;
}

.fin{
    background-color: black;
    padding-left: 20%;
    padding-right: 20%;
    padding-top: 10%;
    padding-bottom: 10%;
}

.fin p{
    text-align: justify;
}

.finfin{
    background-color: black;
}

footer{
    background-color: black;
}

#fotoooo{
    text-align: center;
}

#fotoooo img{
    margin:10px;
    width: 80%;
}

.logoint{
    display: flex;
    justify-content: center;
    gap: 75%;
    margin-top: 10px;
}

footer #rightsreserved{
    background-color: var(--marronfonce);
}

footer > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

footer h5 {
    color: var(--jaune);
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-decoration: underline;
}

footer h6 {
    color: var(--marronclair);
    font-size: 1.2rem;
    margin-top: 15px;
}

footer p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 5px 0;
}

footer a {
    color: var(--jaune);
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: var(--marronclair);
    text-decoration: underline;
}

footer img {
    max-width: 50px;
    margin-top: 10px;
}

#rightsreserved {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--jaune);
    border-top: 1px solid var(--marronclair);
    padding-top: 10px;
}

footer div > div {
    flex: 1;
    min-width: 200px;
}









.contact-container {
    width: 60%;
    margin: 50px auto;
    background-color: var(--black);
    color: var(--beige);
    padding: 30px;
    border: 5px solid var(--marronclair);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    background-color: var(--marronclair);
    color: var(--black);
    padding: 20px;
    border-radius: 10px;
    border: 3px solid var(--beige);
}

.info-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--beige);
    background-color: var(--black);
    padding: 5px 10px;
    border-radius: 5px;
}

.info-item p, .info-item ul {
    font-size: 1rem;
    margin: 0;
    color: var(--black);
}

.info-item a {
    text-decoration: none;
    color: var(--black);
    font-weight: bold;
}

.info-item a:hover {
    color: var(--jaune);
    text-decoration: underline;
}






.about-container {
    width: 60%;
    margin: 50px auto;
    background-color: var(--black);
    color: var(--jaune);
    padding: 30px;
    border: 5px solid var(--marronclair);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
}

.about-container header {
    text-align: center;
    margin-bottom: 30px;
}

.about-container header h1 {
    font-size: 2.5rem;
    color: var(--jaune);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-container header .intro-text {
    font-size: 1rem;
    color: var(--marronclair);
    margin-top: 10px;
}

.section {
    margin-bottom: 30px;
    background-color: var(--marronclair);
    color: var(--black);
    padding: 20px;
    border-radius: 10px;
    border: 3px solid var(--beige);
}

.section h2 {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    background-color: var(--jaune);
    padding: 10px;
    border-radius: 5px;
}

.section p {
    font-size: 1rem;
    line-height: 1.6;
    background-color: var(--marronfonce);
    padding: 15px;
    border-radius: 5px;
    border: 2px solid var(--marronfonce);
    color: var(--black);
}