
@font-face {
    font-family: 'circular';
    src: url('./font/circular-std-medium-500.ttf');
}


html {
    scroll-behavior: smooth;
    font-family: Circular !important;
}


body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #fdfdfd;
    color: #222;
    line-height: 1.6;
}

h2{
    z-index: 2;
}

.banner-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


video {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/first_img_of_header_vid.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* assombrit la vidéo */
  z-index: 1;
}

/* Contenu par-dessus la vidéo */
.banner-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.banner-video {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    z-index: 2;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    gap: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    max-width: 10000px;
    margin: 0 auto;
    z-index: 1;
    box-sizing: border-box;
    color: white;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.page_title {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.sub_header{
    display: flex;
    flex-flow: column nowrap;
    align-items: center;   
}

.logos_ecoles{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.school-pic {
    width: 110px;
    height: 80px;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 500px) {
    .school-pic {
        height: 60px;
    }
}

.section-logo {
    width: 110px;
    height: 80px;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    left: 4px; 
    scale:0.8
}


@media only screen and (max-width: 972px) {
    .section-logo {
        scale: 0.8;
    }
}



.header-left {
    display: flex;
    align-items: center;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
}

.contact-btn {
    background-color: #222;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #444;
}



.scroll-container {
    text-align: center;
    margin-top: 2rem;
}

.scroll-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 0rem;
    display: inline-block;
}

.scroll-btn svg {
    width: 110px;
    height: 66.8px;
    fill: #222;
    transition: transform 0.3s;
    transition: fill 0.3s
}

.scroll-btn:hover svg {
    transform: translateY(4px);
    fill: green;
}



@media only screen and (max-width: 1520px) {
    .mobile-hidden {
        display: none;
    }
}

.section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    box-sizing: border-box;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
    color: white;
    overflow: hidden;
    min-height: 300px;
    opacity: 1;
    transform: translateY(0);
}


.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    transition: transform 0.5s ease;
    filter: blur(16px);
}

.section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
    transition: background-color 0.3s ease;
}

.bg-berceuse::before {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/laberceuse.png');
}

.bg-lit::before {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/le_lit_de_la_rivière.png');
}

.bg-sunbed::before {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/sunbed.png');
}

.bg-litmo::before {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/le_lit_de_la_rivière_making_of.png');
}

.bg-runlike::before {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/run_like_a_girl.png');
}

.bg-warehouse::before {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/warehousebackground.png');
}

.bg-skid::before {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/skid.png');
}

.bg-dragons::before {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/romantic_flight.png');
}


.bg-colossus::before {
    background-image: url('https://media.githubusercontent.com/media/TristanGomez32/Portfolio/refs/heads/main/img/colossus.png');
}

.bg-berceuse::after {
    background-color: rgb(43, 78, 128,0.4);
}


.bg-lit::after {
    background-color: rgba(64, 130, 80, 0.4);
}

.bg-sunbed::after {
    background-color: rgba(146, 139, 121, 0.4);
}

.bg-litmo::after {
    background-color: rgba(60, 207, 97, 0.4);
}

.bg-runlike::after {
    background-color: rgba(100, 170, 235, 0.4);
}

.bg-warehouse::after {
    background-color: rgba(234,117,50,0.1);
}

.bg-skid::after {
    background-color: rgba(75, 71, 53, 0.4);
}

.bg-dragons::after {
    background-color: rgba(199,145,93,0.4);
}

.bg-colossus::after {
    background-color: rgba(150, 150, 150, 0.4);
}

.section:hover::before {
    transform: scale(1.08);
}

@media (max-width: 1718px) {
    .section .text{
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 1718px) {
    .section{
        padding-left: 40px;
        padding-right: 40px;      
    }
    .section .text{
        min-width: 888px;
        margin-right: -1rem;
    }
}

.text {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding: 0 0rem;
    z-index: 1;
}

.text h2 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    padding-top: 20px;
}

.text p {
    font-size: 2.35rem;
    color: #f0f0f0;
    display: block;
}

span.line {
  display: inline-block;
}

.player {
    /*width: 800px;*/
    height: 400px;
    width: 718px;
    /*margin: 4rem auto;*/
    margin:0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}




.player h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.player-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 718px;
}

@media (max-width: 750px) {
    .player{
        width: 97vw;

    }

    .player-container{
        width: 97vw;
    }


}


.bandcamp {
    border: 0; 
    width: 100%; 
    max-width: 700px;
}

.youtube {
    border: 0; 
    width: 100%;
    height: 95%;
}


.scroll-btn-text {
    text-align: center;
    font-size: 2rem;
    margin: 3rem auto 1.5rem;
    font-weight: 600;
    color: #222;
    position:sticky; 
    width: 204px;
    top:20px;
    height: 55px;
}

.section-heading {
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 3rem auto 1.5rem;
    font-weight: 600;
    color: #222;
    position:sticky; 
    width: 204px;
    top:20px;
    height: 55px;
}

@media (max-width: 1717px) {

    .text {
        max-width: 100%;
        flex: 0 0 100%;
        box-sizing: border-box;
        text-align: center;
        padding: 0 0rem;
        z-index: 1;
    }
}

@media (max-width: 800px) {

    .text p {
        font-size: 1.5rem;
        color: #f0f0f0;
        display: block;
    }

}


@media (max-width: 335px) {
    .section-heading {
        font-size: 1.5rem;
    }
}


.logos-top{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;



}

.instagram-link-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 10px;
  padding-right: 5px;
  padding-left: 5px;
  
}

.instagram-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  gap: 0.4rem;
  font-size: 1rem;
  transition: color 0.3s ease;
  border-radius: 10px;
  padding-right: 5px;
  padding-left: 5px;
  
}

.instagram-link:hover {
    color: green;
}

.instagram-link-top:hover {
  transform: scale(1.3);
}

.instagram-logo {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.instagram-id {
  font-weight: 500;
}

.demos {
  /* We first create a flex layout context */
  display: flex;
  
  /* Then we define the flow direction 
     and if we allow the items to wrap 
   * Remember this is the same as:
   * flex-direction: row;
   * flex-wrap: wrap;
   */
  flex-flow: row wrap;

  /* Then we define how is distributed the remaining space */
  justify-content: space-around;

  
  padding: 0;
  margin: 0;
  list-style: none;
}

.demo {
  /*
  background-image: url('./img/enceinte.png');
  background-position: 8px 8px;
  background-color: rgb(10, 124, 0);
  background-blend-mode: screen;
  */
  display: flex;
  flex-flow: column nowrap;
  min-width: 170px;
  max-width: 220px;
  height: 120px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  line-height: 46px;
  color: white;
  align-items: center;
  font-weight: bold;
  font-size: 3em;
  text-align: center; 
  flex-grow: 1;
  flex-basis: 0;
  z-index: 2;
}

.audio-button-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  justify-content: center;
  scale: 1.2;
}


.demo_audio_btn {
  width: 40px;
  height: 40px;
  background: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.demo_audio_btn text{
    transform: translateY(-2px);
}

.demo_audio_btn:hover {
  transform: scale(1.1);
}

.demo_label {
    font-size: 16px;
}


.progress-ring {
  transform: rotate(-90deg); /* start from top */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.1s linear;
}


.albums {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-items: center;
}

.album_player {
    /*width: 800px;*/
    /*height: 450px;*/
    width: 80vw;
    margin: 4rem auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.section a.yt-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.section a.yt-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.section a.yt-link .yt-icon {
  flex-shrink: 0;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #111;
  padding: 1.5rem;
  text-align: center;
  color: white;
  margin-top: 3rem;
}

.footer-top{
   display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;   
}

.email-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.email {
  border-radius: 10px;
  gap: 0.4rem;
  padding-right: 5px;
  padding-left: 5px;
  transition: color 0.05s ease;
}
.email:hover{
    color:green;
}

.email-container svg{
    transition: transform 0.2s ease;
    z-index: 0;
}

.email-container:hover svg{
    transform: scale(1.1);
}

div.email > span:nth-child(2) {
	display: none;
}


.coming_soon_text{
    text-align: center;
    position: absolute;
    font-size: 3rem;
}