/* Réinitialisation des marges et paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: roxane;
    src: url(typo/upheavtt.ttf) format('opentype');
}

/* Style général */
body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth; 
    justify-content: center;  
    align-items: center; 
}

body {
    background-color: black;
    background-image: url('visuals/background_image.webp'); 
    background-size: cover; 
    background-position: center;
    background-attachment: fixed; 
    background-repeat: no-repeat; 
}



@media (max-width: 768px) {
    body {
        background-image: none;
        background-color: black;
    }
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-image: url('visuals/roshani_greenhouse_mobile.webp');
        background-size: cover;
        background-position: center;
        z-index: -1;
    }
}

.hero-section {

    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

/* Contenu centré */
.content h1 {
    font-size: 10em;
    font-weight: bold;
    /*text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);*/
    font-family: roxane, sans-serif;
    background: url('visuals/grain_2.webp');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    color: transparent;


    /* avec animation */
    /*background: url('visuals/roshani_cut_only_colors.webp');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    color: transparent;
    animation: moveBackground 10s linear infinite;*/
    /* ************** */
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 70px;
    }
}

@keyframes colorRotate {
    0% {
        -webkit-filter: hue-rotate(0deg);
        filter: hue-rotate(0deg);
    }
    100% {
        -webkit-filter: hue-rotate(360deg);
        filter: hue-rotate(360deg);
    }
}

/* Animation de déplacement de l'image */
@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 100%; /* Déplacement complet sur l'axe X et Y */
    }
    100% {
        background-position: 0 0;
    }
}


.nav-menu a {
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    margin: 0 15px;
    position: relative;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.9) 50%);
    background-size: 200%;
    transition: background-position 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .nav-menu a {
        padding: 5px;
        margin: 0 5px;
    }
}

.nav-menu a:hover {
    background-position: -100%;
    color: black;
}

.label{
    margin-top: 10px;
}


.label a{
    padding: 10px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    font-weight: 500;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.9) 50%);
    background-size: 200%;
    transition: background-position 0.3s ease-in-out, color 0.3s ease-in-out;
    text-decoration: none;
}

.label a:hover{
    background-position: -100%;
    color: black;
}


.cta-button button {
    padding: 10px 30px;
    font-size: 1.2em;
    background-color: #a20000;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button button:hover {
    background-color: #7f0000;
}

.social-icons {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    padding-left: 10px;
    margin-top: 20px; 
}

.social-icons a {
    color: white;
    font-size: 5em; 
    text-decoration: none;
    transition: color 0.3s;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.9) 50%);
    background-size: 200%;
    transition: background-position 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .social-icons a {
        font-size: 2.5em;
    }
}

.social-icons a i{
    padding-left: 10px;
    padding-right: 10px;
}

.social-icons a:hover{
    background-position: -100%;
}


#instagram:hover{
    color: #FCB045;
}

#youtube:hover{
    color:#FF0000;
}

#spotify:hover{
    color: #2e920f;
}

.content-section {
    width: 100%; 
    background-color: transparent;
    padding: 30px;
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.dates-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.dates-section > * {
    position: relative;
    z-index: 1;
}


.content-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: left;
    color: white;
}

.section-title{
    
    padding: 5px;
    font-size: 30px;
    font-weight: bold;
    color: black;  
    background-color:white;
    font-family: roxane, sans-serif;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 16px;
        padding: 3px;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        background: rgba(0, 0, 0, 0.75);
        padding: 8px 16px;
        width: 100%;
    }
    .nav-menu a {
        background: none;
    }
}


.content-section p {
    font-size: 1.2em;
    line-height: 1.6;
    /*width: 50%;*/
    width: 60%;
    color: white;
    font-weight: 500;
    margin: 0 auto; 
    text-align: justify;
}

@media (max-width: 768px) {
    .content-section p{
        width: 90%;
        font-size: 1rem;
    }
}

.history{
    background-color: rgba(0, 0, 0, 1);
    padding-top: 50px;
    padding-bottom: 50px;
    /*background-image: url('visuals/roshani_cut.webp');
    background-position: center;
    background-size: cover;*/
}


.history-span{
    font-size: 20px;
    text-align: center;
    
}

@media (max-width: 768px) {
    .history-span{
        font-size: 14px;
    }
}
.history p{
    padding-top: 10px;
    padding-bottom: 10px;
}

.video_container{
    width: 50%;
    padding-top: 20px;
}

.video_container video{
    width: 80%;
}

@media (max-width: 768px) {
    .video_container{
        width: 100%;
    }
    .video_container video{
        width: 90%;
    }
}

.highlight {
    color: white; 
    display: inline; 
    padding: 6px; 
    font-size: 24px;
    background-color: rgba(255, 255, 255, 0.9); /* Fond noir statique */
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.9) 50%);
    background-size: 200% 100%;
    background-position: 100% 0; /* Le dégradé est en dehors de la vue par défaut */
    transition: background-position 0.3s ease-in-out, color 0.3s ease-in-out;
}

.highlight:hover {
    background-position: 0 0; /* Le dégradé se déplace et apparaît en hover */
    color: black; /* Change la couleur du texte en noir */
}

.concerts{
    width: 60%; 
    padding-top: 30px;
    padding-bottom: 30px;
}
@media (max-width: 768px) {
    .concerts {
        width: 100%;;
    }
}

.one-third {
    /*flex: 1;*/
    line-height: 1;
    font-size: 30px;
    font-weight: bold;
    /*text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);*/
    color: white;  
    font-family: roxane, sans-serif;
}

.one-third img{
    padding: 10px;
}

@media (max-width: 768px) {
    .one-third {
        display: none;
    }
}

.two-third {
    padding-left: 0;
    width: 100%;
}

/*.concerts-list {
    display: none; 
    padding-top: 10px;
}*/

@media (max-width: 768px) {
    .two-third .concerts-list .highlight{
        font-size: 20px;
    }
}

#concerts_2024 {
    display: block;
}

.year-selection{
    padding: 0px;
    margin: 0px;
}

.year-button {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1;
    display: inline-block;
    cursor: pointer;
    font-size: 40px;
    /*font-weight: bold;*/
    /*text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);*/
    color: rgb(255, 255, 255);
    margin-right: 10px;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.9) 50%);
    background-size: 200%;
    transition: background-position 0.3s ease-in-out, color 0.3s ease-in-out;
    font-family: roxane, sans-serif;
}

.year-button:hover{
    background-position: -100%;
    color: black;
}

.year-button.active {
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0.9);

}

#topBtn {
    display: none; 
    position: fixed; 
    top: 20px; 
    right: 20px;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: none; 
    padding: 10px;
    cursor: pointer; 
    font-size: 30px; 
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.9) 50%);
    background-size: 200%;
    transition: background-position 0.3s ease-in-out, color 0.3s ease-in-out;
}

#topBtn:hover {
    /*background-color: #333; */
    background-position: -100%;
}


.logo {
    animation: colorRotate 10s linear infinite;
  }
  
  @keyframes colorRotate {
    100% {
      -webkit-filter: hue-rotate(360deg);
    }
}

.clips{
    margin-top: 40px;
    width: 50%;
}

.clips-image {
    position: relative;
    display:none;
}

.clips-image img {
    width: 100%;
    height: auto;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 70px !important;
    opacity: 0.8;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .clips{
        width: 80%;
    }
    .clips video{
        display: none !important;
    }
    .clips-image{
        display: block;
    }
}

@media (max-width: 768px) {
    .clips {
        width: 95%;
    }
}

.video-title{
    padding-bottom: 20px;
    text-align: left;
}


.carre {
    width: 40px;
    height: 40px;
    background-color: white;
    position: relative;
    animation: rotation 1s infinite;
}

@media (max-width: 768px) {
    .carre {
        width: 20px;
        height: 20px;
    }
}

/* Animation de rotation */
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(90deg);
    }
    100% {
        transform: rotate(90deg);
    }
}

.container-title {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

.description-title{
    width: 50%;
    padding-bottom: 20px;
    
}

@media (max-width: 768px) {
    .description-title {
        width: 90%;
    }
}

.clips-title{
    width: 50%;
}

@media (max-width: 768px) {
    .clips-title {
        width: 90%;
    }
}

.container-video-text{
    text-align: justify;
    line-height: 1.6;
}

.video-text{
    font-size: 18px;
    color: transparent;
    padding-left: 10px;
    padding-right: 10px;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.9) 50%);
    background-size: 200%;
    transition: background-position 2s ease-in-out, color 2s ease-in-out;
}

.video-text.show {
    visibility: visible;
    background-position: -100%;
    color: white;
}

@media (max-width: 1200px) {
    .video-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .video-text {
        font-size: 14px;
        display: none;
    }
}


.hidden {
    visibility: hidden;
}

.video-title-text{
    padding-left: 20px;
    font-size: 30px;
    font-family: roxane, sans-serif;
    color: transparent;  
    width: 100%;
    margin-bottom: 5px;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(218, 162, 205, 0.9) 50%);
    background-size: 200%;
    transition: background-position 1s ease-in-out, color 1s ease-in-out;
}

.video-title-text.show {
    visibility: visible;
    background-position: -100%;
    color: black;

}

@media (max-width: 768px) {
    .video-title-text {
        font-size: 18px;
    }
}

.container-gallerie-desktop{
    display: flex; 
    justify-content: space-between; 
    margin: 0 auto; 
    width: 50%;
    padding-bottom: 30px;
}
@media (max-width: 1200px) {
    .container-gallerie-desktop {
        display: none;
    }
}

.column-gallerie {
    flex: 1; 
    padding: 10px;
    text-align: center;
}

.column-gallerie img {

    width:100%;
    height: auto;
}

.gallerie-text{
    text-align: left;
    font-size: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    color: transparent;
    font-family: roxane, sans-serif;
    padding-left: 10px;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.9) 50%);
    background-size: 200%;
    transition: background-position 2s ease-in-out, color 2s ease-in-out;
}

.gallerie-text.show {
    visibility: visible;
    background-position: -100%;
    color: black;
}

.container-gallerie-mobile{
    width:90%;
    display: none;
    margin: 0 auto;
    text-align: center;
}

.image-gallerie-mobile{
    padding-top: 20px;
}

.image-gallerie-mobile img{
    width: 100%;
    height: auto;
}

@media (max-width: 1200px) {
    .container-gallerie-mobile {
        display: block;
    }
}

.container-gallerie-first{
    width:50%;
    margin: 0 auto 10px;
    padding: 0 10px;
    text-align: center;
}

.image-gallerie-first{
    padding-top: 20px;
}

@media (max-width: 1200px) {
    .container-gallerie-first {
        width: 90%;
        padding: 0px;
    }
}


.image-gallerie-first img{
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover;
}


/* TIMELINE */

.timeline {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 20px;
    padding-bottom: 40px;
  }
  
  .title > h2,
  .title > h1 {
    margin: 0;
  }
  
  .title > h2 {
    opacity: 50%;
  }
  
  .events {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 32px;
    width: 100%;
  }
  
  .event {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 16px;
    width: 100%;
  }
  
  .date > h2,
  .description > p {
    margin: 0;
  }
  
  .knob {
    display: none;
  }

    .inner-knob {
        width: 15px; 
        height: 15px;
        background-color: rgb(240, 25, 226);
        position: absolute; 
        top: 50%;  
        left: 50%;  
        transform: translate(-50%, -50%);
        z-index: 2;
        visibility: hidden;
    }

    .inner-knob.visible{
        visibility: visible;
    }


    .rotation-knob {
        animation: rotation 1s infinite linear;
    }


  .date {
    text-align: left;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .description {
    text-align: left;
    flex: 1;
    min-width: 0;
  }
  
  
  .line {
    display: none;
  }

.timeline-infography{
    display: none;
}

.timeline-infography-text{
    color: white;
    font-family: roxane, sans-serif;
}

.highlight_date {
    color: white; 
    font-family: roxane, sans-serif;
    display: inline; 
    padding: 4px 8px; 
    font-size: 22px;
    background-color: #9e0248;
}

@media (max-width: 768px) {
    .highlight_date {
        font-size: 16px;
    }
}

.highlight_description,
.highlight_description a {
    color: white; 
    font-family: roxane, sans-serif;
    line-height: 1.3;
    padding: 4px; 
    font-size: 22px;
    background: rgba(0, 0, 0, 0.7);
    word-break: break-word;
}


@media (max-width: 768px) {
    .highlight_description,
    .highlight_description a {
        font-size: 16px;
    }
}

.highlight_description.show,
.highlight_description a.show{
    visibility: visible;
    color: white;
}

.link{
    cursor: pointer;
}
/* Shop */
.shop-carousel {
    position: relative;
    width: 50%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0;
    text-align: center;
}

.shop-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-img-big {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.shop-img-big img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.shop-arrow {
    position: absolute;
    top: 170px;
    background: #fff;
    color: #000;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 0;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-arrow:hover {
    background: #ddd;
}

.shop-arrow-left { left: -54px; }
.shop-arrow-right { right: -54px; }
.shop-carousel { min-height: 500px; }

.shop-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.shop-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.2s;
}

.shop-dot.active {
    background: #9e0248;
}

.shop-info-wrap {
    background: rgba(0, 0, 0, 0.5);
    padding: 16px 20px;
    border-radius: 0;
    margin-top: 16px;
    display: inline-block;
}

.shop-title {
    font-family: roxane, sans-serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.shop-price {
    font-size: 22px;
    font-weight: 700;
    color: #9e0248;
    margin-bottom: 8px;
}

.shop-desc {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 16px;
}

.shop-size {
    margin-bottom: 16px;
    font-size: 14px;
    color: #ccc;
}

.shop-size select {
    padding: 6px 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    margin-left: 6px;
}

.shop-btn {
    padding: 12px 32px;
    background: #9e0248;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    font-family: roxane, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.shop-btn:hover {
    background: #b8035a;
}

@media (max-width: 768px) {
    .shop-carousel {
        width: 85%;
    }
    .shop-arrow-left { left: -24px; }
    .shop-arrow-right { right: -24px; }
    .shop-arrow { width: 36px; height: 36px; font-size: 16px; }
    .shop-carousel { min-height: 400px; }
}
