/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 NAVBAR
2.0 HERO
3.0 GLOBAL
4.0 BIO
5.0 CONCERTS
6.0 AUDIO
7.0 VIDEOS
8.0 RESEAUX
9.0 CONTACT
10.0 FOOTER
11.0 MOBILE
12.0 THEMES
*/

:root{
    --bg:#0f0f13;
    --bg-2:#18181d;
    --bg-3:#202028;
    --text:#ffffff;
    --text-soft:#d7d7d7;
    --title:#ffffff;
    --border:rgba(255,255,255,.08);
    --wave-color:rgba(255,255,255,.25);
    --shadow:
        0 20px 50px rgba(0,0,0,.35);
    --radius:20px;
}

html,
body{
    overflow-x:hidden;
}
body{
  background:var(--bg);
  color:var(--text);
}

h1,h2,h3,h4,h5{
   font-family:'Oswald',sans-serif;
   letter-spacing:1px;
}

/* =========================
   1.0 NAVBAR
========================= */

.artist-navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.5);
    backdrop-filter:blur(10px);
    padding:20px 0;
    border-bottom:1px solid var(--border);
}

.artist-navbar .navbar-brand{
    color:var(--hero-text);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.artist-navbar .nav-link{
    color:var(--hero-text);
    margin:0;
    text-transform:uppercase;
    font-size:.9rem;
}

.artist-navbar .nav-link:hover{
    color:var(--primary);
}

/* =========================
   2.0 HERO
========================= */

.artist-hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    color:var(--hero-text);
    background:
        var(--hero-overlay),
        var(--hero-bg)
        center center/cover no-repeat;
}

.artist-hero-content{
    max-width:700px;
}

.artist-hero h1{
    font-size:6rem;
    text-transform:uppercase;
    font-weight:800;
    line-height:1;
}

.artist-hero p{
    font-size:1.2rem;
    color:rgba(255,255,255,.82);
    margin:25px 0;
}

.btn-custom{
    background:var(--primary);
    color:#fff;
    border:none;
    padding:16px 30px;
    border-radius:var(--radius);
    text-decoration:none;
    transition:.3s;
    display:inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-custom:hover{
    background:var(--text);
    color:var(--bg);
}

.scroll-down{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    color:#fff;
    font-size:2rem;
}

a.scroll-down:hover{
  color:var(--primary);
}

/* =========================
   3.0 GLOBAL
========================= */

.artist-section{
    padding:110px 0;
    background: var(--bg-2);
    color:var(--text);
}

.section-title{
    font-size:3rem;
    margin-bottom:20px;
    text-transform:uppercase;
    color:var(--title);
    font-weight: 500;
}

.section-subtitle{
    color:var(--primary);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:.85rem;
    font-weight:700;
}

/* =========================
   4.0 BIO
========================= */

.bio-image{
    border-radius:var(--radius);
    overflow:hidden;
}

.bio-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================
   5.0 CONCERTS
========================= */

.concert-section{
  background:var(--bg);
  color:var(--text);
}

.concert-section .section-title{
   color:var(--text);
}

.concert-item{
    background:var(--bg-2);
    border-radius:var(--radius);
    padding:22px;
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:18px;
    transition:.3s;
    box-shadow:var(--shadow);
}

.concert-item:hover{
    transform:translateX(4px);
}

.concert-date{
    width:82px;
    min-width:82px;
    height:82px;
    border-radius:calc(var(--radius) - 4px);
    background:var(--primary);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.concert-date .day{
    font-size:2rem;
    font-weight:700;
    line-height:1;
}

.concert-date .month{
    font-size:.75rem;
    letter-spacing:2px;
    margin-top:5px;
}

.concert-details{
    flex:1;
}

.concert-details h3{
    font-size:1.3rem;
    margin-bottom:10px;
}

.concert-meta{
     color:var(--text-soft);
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.concert-meta i{
    color:var(--primary);
}

.btn-ticket{
    background:transparent;
    border:1px solid var(--border);
    color:var(--text);
    padding:12px 20px;
    border-radius:calc(var(--radius) - 6px);
    text-decoration:none;
}

.btn-ticket:hover{
    background:var(--primary);
    color:#fff;
}

.concert-image{
    border-radius:var(--radius);
    overflow:hidden;
    height:100%;
    min-height:720px;
}

.concert-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================
   6.0 AUDIO
========================= */

/* .audio-section{
    background:#121217;
    color:#fff;
} */

/* .audio-section .section-title{
    color: #FFF;
} */

/* .track-card{
    background:#18181d;
    border-radius:18px;
    padding:20px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
    transition:.3s;
} */

.track-card{
    background:var(--bg-3);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:20px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:20px;
    transition:.3s;
    box-shadow:var(--shadow);
}
.track-card:hover{
    background:var(--bg-2);
    transform:translateY(-2px);
}
/* .track-left{
    display:flex;
    align-items:center;
    gap:18px;
} */

.track-left{
    display:flex;
    align-items:center;
    gap:18px;
    /* min-width:240px; */
}

.play-btn{
    width:56px;
    height:56px;
    border:none;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
}

.track-title{
   color:var(--text);
   font-weight: 700;
   font-size: 1.05rem;
}

.track-artist{
    color:var(--text-soft);
    font-size:.9rem;
}
.track-wave{
    display:flex;
    align-items:center;
    gap:4px;
    height:40px;
}

.track-wave span{
    width:4px;
    background:var(--wave-color);
    border-radius:10px;
    animation:wave 1.2s infinite ease-in-out;
    animation-play-state:paused;
}

/* ACTIVE */
.track-card.playing .track-wave span{
    animation-play-state:running;
    background:var(--primary);
}
/*
.track-wave span:nth-child(1){height:12px;}
.track-wave span:nth-child(2){height:22px;}
.track-wave span:nth-child(3){height:16px;}
.track-wave span:nth-child(4){height:30px;}
.track-wave span:nth-child(5){height:18px;}
.track-wave span:nth-child(6){height:26px;}
.track-wave span:nth-child(7){height:14px;}
.track-wave span:nth-child(8){height:32px;}
.track-wave span:nth-child(9){height:18px;}
.track-wave span:nth-child(10){height:24px;}
.track-wave span:nth-child(11){height:15px;}
.track-wave span:nth-child(12){height:20px;} */

.track-wave span:nth-child(1){height:12px; animation-delay:.1s;}
.track-wave span:nth-child(2){height:22px; animation-delay:.2s;}
.track-wave span:nth-child(3){height:16px; animation-delay:.3s;}
.track-wave span:nth-child(4){height:30px; animation-delay:.4s;}
.track-wave span:nth-child(5){height:18px; animation-delay:.5s;}
.track-wave span:nth-child(6){height:26px; animation-delay:.6s;}
.track-wave span:nth-child(7){height:14px; animation-delay:.7s;}
.track-wave span:nth-child(8){height:32px; animation-delay:.8s;}
.track-wave span:nth-child(9){height:18px; animation-delay:.9s;}
.track-wave span:nth-child(10){height:24px; animation-delay:1s;}
.track-wave span:nth-child(11){height:15px; animation-delay:1.1s;}
.track-wave span:nth-child(12){height:20px; animation-delay:1.2s;}

@keyframes wave{
    0%,100%{
        opacity:.4;
        transform:scaleY(.8);
    }
    50%{
        opacity:1;
        transform:scaleY(1.15);
    }
}

.track-duration{
    color:var(--text-soft);
}

.audio-player{
    display:none;
}

/* =========================
   7.0 VIDEOS
========================= */

.video-section{
    background:var(--bg);
    color:var(--text);
}

.video-section .section-title{
    color:var(--text);
}

.video-card iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    border-radius:var(--radius);
}

.video-title {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}

/* =========================
   8.0 RESEAUX
========================= */

/* .social-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.social-links a{
    width:85px;
    height:85px;
    border-radius:50%;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:1.5rem;
    transition:.3s;
    text-decoration:none;
}

.social-links a:hover{
    background:var(--primary);
    transform:translateY(-5px);
} */

.social-links{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:40px;
  }

  .social-links a{
      color:var(--text-soft);
      text-decoration:none;
      text-align:center;
      transition:.3s;
  }

  .social-links a:hover{
      color:var(--primary);
      transform:translateY(-5px);
  }

  .social-links i{
      font-size:2.3rem;
      margin-bottom:10px;
  }


/* =========================
   9.0 CONTACT
========================= */

.contact-section{
    background:var(--bg);
    color:var(--text);
}

.contact-section .section-title{
    color:var(--text);
}

.contact-card{
    background:var(--bg-2);
    padding:40px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

.contact-card p{
    margin-bottom:18px;
}


/* =========================
   10.0 FOOTER
========================= */
footer {
  background:var(--bg);
  color:var(--text-soft);
  text-align: center;
  padding: 30px 0;
}

/* =========================
   11.0 MOBILE
========================= */

@media(max-width:992px){

    .artist-hero h1{
        font-size:4rem;
    }

    .concert-image{
        min-height:420px;
    }

}

@media(max-width:991px){

    .artist-navbar .navbar-collapse{
        padding-top:20px;
    }

    .artist-navbar .nav-link{
        padding:12px 0;
        margin:0;
    }

}

@media(max-width:768px){

    .artist-section{
        padding:80px 0;
    }

    .artist-hero{
        text-align:center;
    }

    .artist-hero h1{
        font-size:3rem;
    }

    .concert-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .track-card{
        flex-direction:column;
        align-items:flex-start;
    }

}

/* =========================
   12.0 THEMES
========================= */

/*
THEMES NAVA ARTISTES

| Variable      | Utilisation      |
| --------------|------------------|
| --bg          | fonds            |
| --bg-2        | cards            |
| --bg-3        | hover surfaces   |
| --text        | texte principal  |
| --text-soft   | texte secondaire |
| --title       | gros titres      |
| --primary     | accent           |
| --border      | bordures         |
| --wave-color  | waveform audio   |
| --shadow      | ombres           |
| --radius      | border radius    |
*/


/* ========================================
   DARK
======================================== */

.artist-theme-dark{

    --bg:#0f0f13;
    --bg-2:#18181d;
    --bg-3:#202028;

    --hero-text:#ffffff;
    --text:#ffffff;
    --text-soft:#bdbdbd;

    --title:#ffffff;

    --border:rgba(255,255,255,.08);

    --shadow:
        0 20px 50px rgba(0,0,0,.35);

    --radius:20px;

    --wave-color:rgba(255,255,255,.25);

    --hero-overlay:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.55)
        );

}

.artist-theme-dark .track-card.playing{
    box-shadow:0 10px 30px rgba(0,0,0,.35);
}



/* ========================================
   LIGHT
======================================== */

.artist-theme-light{

    --bg:#f8f8f8;
    --bg-2:#ffffff;
    --bg-3:#eeeeee;

    --hero-text:#ffffff;
    --text:#111111;
    --text-soft:#666666;

    --title:#111111;

    --border:rgba(0,0,0,.08);

    --shadow:
        0 20px 50px rgba(0,0,0,.08);

    --radius:20px;

    --wave-color:rgba(0,0,0,.18);

    --hero-overlay:
        linear-gradient(
            rgba(0,0,0,.35),
            rgba(0,0,0,.35)
        );

}

.artist-theme-light .track-card.playing{
    border-color:var(--primary);
}

.artist-theme-light .track-card.playing .track-wave span{
    background:var(--primary);
}



/* ========================================
   ELECTRO
======================================== */

.artist-theme-electro{

    --bg:#080811;
    --bg-2:#12121f;
    --bg-3:#1c1c2d;

    --hero-text:#ffffff;
    --text:#ffffff;
    --text-soft:#b8b8d0;

    --title:#ffffff;

    --border:rgba(157,77,255,.18);

    --shadow:
        0 20px 60px rgba(157,77,255,.18);

    --radius:24px;

    --wave-color:rgba(157,77,255,.35);

    --hero-overlay:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(10,10,25,.65)
        );

}

.artist-theme-electro .track-card.playing .track-wave span{

    background:var(--primary);

    box-shadow:
        0 0 6px var(--primary),
        0 0 12px var(--primary),
        0 0 20px var(--primary);

}



/* ========================================
   ACOUSTIC
======================================== */

.artist-theme-acoustic{

    --bg:#f3efe8;
    --bg-2:#ffffff;
    --bg-3:#e7dfd3;

    --hero-text:#ffffff;
    --text:#2f241b;
    --text-soft:#7c6b5d;

    --title:#2f241b;

    --border:rgba(90,60,30,.12);

    --shadow:
        0 20px 40px rgba(80,50,20,.08);

    --radius:18px;

    --wave-color:rgba(120,90,60,.22);

    --hero-overlay:
        linear-gradient(
            rgba(40,25,10,.30),
            rgba(40,25,10,.45)
        );

}

.artist-theme-acoustic .track-card{
    border:1px solid var(--border);
}

.artist-theme-acoustic .track-card.playing{
    transform:translateY(-2px) scale(1.01);
}

.artist-theme-acoustic .track-card.playing .track-wave span{
    background:var(--primary);
}



/* ========================================
   JAZZ
======================================== */

.artist-theme-jazz{

    --bg:#111016;
    --bg-2:#1a1821;
    --bg-3:#24212e;

    --hero-text:#ffffff;
    --text:#f4f1ea;
    --text-soft:#b2a5b9;

    --title:#f4f1ea;

    --border:rgba(212,170,95,.15);

    --shadow:
        0 20px 50px rgba(0,0,0,.40);

    --radius:14px;

    --wave-color:rgba(212,170,95,.28);

    --hero-overlay:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(30,20,10,.60)
        );

}

.artist-theme-jazz .track-card.playing{
    box-shadow:
        0 8px 30px rgba(0,0,0,.25);
}

.artist-theme-jazz .track-card.playing .track-wave span{
    background:rgba(212,170,95,.75);
}

/* ========================================
   ROCK / ALT ROCK
======================================== */

.artist-theme-rock{

    --bg:#111111;
    --bg-2:#1b1b1b;
    --bg-3:#252525;

    --hero-text:#ffffff;
    --text:#f5f5f5;
    --text-soft:#b3b3b3;

    --title:#ffffff;

    --border:rgba(255,255,255,.08);

    --wave-color:rgba(255,70,70,.25);

    --shadow:
        0 25px 60px rgba(0,0,0,.45);

    --radius:10px;

    --hero-overlay:
        linear-gradient(
            rgba(0,0,0,.60),
            rgba(0,0,0,.72)
        );

}

.artist-theme-rock .track-card.playing{
    border-color:var(--primary);
}

.artist-theme-rock .track-card.playing .track-wave span{
    background:var(--primary);
}

.artist-theme-rock .track-card:hover{
    transform:translateY(-3px) scale(1.01);
}


/* ========================================
   NATURE / ORGANIC
======================================== */

.artist-theme-nature{

    --bg:#edf2ea;
    --bg-2:#ffffff;
    --bg-3:#dfe8da;

    --hero-text:#ffffff;
    --text:#243024;
    --text-soft:#657565;

    --title:#1f2b1f;

    --border:rgba(70,90,70,.10);

    --wave-color:rgba(90,130,90,.22);

    --shadow:
        0 20px 40px rgba(40,60,40,.08);

    --radius:28px;

    --hero-overlay:
        linear-gradient(
            rgba(20,40,20,.22),
            rgba(20,40,20,.32)
        );

}

.artist-theme-nature .track-card{
    backdrop-filter:blur(4px);
}

.artist-theme-nature .track-card.playing .track-wave span{
    background:var(--primary);
}


/* ========================================
   CINEMATIC
======================================== */

.artist-theme-cinematic{

    --bg:#0c1018;
    --bg-2:#151c28;
    --bg-3:#1f2735;

    --hero-text:#ffffff;
    --text:#f5f5f5;
    --text-soft:#aab4c3;

    --title:#ffffff;

    --border:rgba(255,255,255,.08);

    --wave-color:rgba(212,175,55,.22);

    --shadow:
        0 30px 70px rgba(0,0,0,.45);

    --radius:18px;

    --hero-overlay:
        linear-gradient(
            rgba(0,0,0,.58),
            rgba(10,20,35,.72)
        );

}

.artist-theme-cinematic .track-card.playing{
    box-shadow:
        0 15px 40px rgba(0,0,0,.35);
}

.artist-theme-cinematic .track-card.playing .track-wave span{
    background:#d4af37;
}


/* ========================================
   MINIMAL
======================================== */

.artist-theme-minimal{

    --bg:#ffffff;
    --bg-2:#f7f7f7;
    --bg-3:#ececec;

    --hero-text:#ffffff;
    --text:#111111;
    --text-soft:#707070;

    --title:#111111;

    --border:rgba(0,0,0,.06);

    --wave-color:rgba(0,0,0,.18);

    --shadow:
        0 10px 30px rgba(0,0,0,.04);

    --radius:8px;

    --hero-overlay:
        linear-gradient(
            rgba(0,0,0,.20),
            rgba(0,0,0,.25)
        );

}

.artist-theme-minimal .track-card:hover{
    transform:translateY(-1px);
}

.artist-theme-minimal .track-card.playing{
    border-color:var(--primary);
}


/* ========================================
   RETRO / SYNTHWAVE
======================================== */

.artist-theme-synthwave{

    --bg:#12091f;
    --bg-2:#1d1030;
    --bg-3:#2a1644;

    --hero-text:#ffffff;
    --text:#ffffff;
    --text-soft:#d1b8ff;

    --title:#ffffff;

    --border:rgba(255,0,180,.18);

    --wave-color:rgba(255,0,180,.30);

    --shadow:
        0 25px 70px rgba(255,0,180,.18);

    --radius:22px;

    --hero-overlay:
        linear-gradient(
            rgba(10,0,20,.45),
            rgba(20,0,40,.65)
        );

}

.artist-theme-synthwave .track-card.playing .track-wave span{
    background:var(--primary);

    box-shadow:
        0 0 6px var(--primary),
        0 0 12px var(--primary),
        0 0 24px var(--primary);
}


/* ========================================
   CLASSICAL
======================================== */

.artist-theme-classical{

    --bg:#f6f1e8;
    --bg-2:#ffffff;
    --bg-3:#ebe3d6;

    --hero-text:#ffffff;
    --text:#2f2a24;
    --text-soft:#7b7063;

    --title:#1f1a15;

    --border:rgba(120,100,70,.12);

    --wave-color:rgba(160,130,80,.24);

    --shadow:
        0 20px 40px rgba(80,60,30,.08);

    --radius:14px;

    --hero-overlay:
        linear-gradient(
            rgba(40,30,20,.25),
            rgba(40,30,20,.35)
        );

}

.artist-theme-classical .track-card.playing .track-wave span{
    background:#b89a62;
}


/* ========================================
   HIP HOP / URBAN
======================================== */

.artist-theme-urban{

    --bg:#101010;
    --bg-2:#1a1a1a;
    --bg-3:#252525;

    --hero-text:#ffffff;
    --text:#f5f5f5;
    --text-soft:#9c9c9c;

    --title:#ffffff;

    --border:rgba(255,255,255,.08);

    --wave-color:rgba(255,140,0,.25);

    --shadow:
        0 25px 60px rgba(0,0,0,.45);

    --radius:14px;

    --hero-overlay:
        linear-gradient(
            rgba(0,0,0,.60),
            rgba(0,0,0,.70)
        );

}

.artist-theme-urban .track-card.playing .track-wave span{
    background:var(--primary);
}

.artist-theme-urban .track-card:hover{
    transform:translateY(-3px);
}


/* ========================================
   LOFI
======================================== */

.artist-theme-lofi{

    --bg:#202534;
    --bg-2:#2a3042;
    --bg-3:#343b50;

    --hero-text:#ffffff;
    --text:#f1f1f1;
    --text-soft:#b0b8ca;

    --title:#ffffff;

    --border:rgba(255,255,255,.08);

    --wave-color:rgba(120,160,255,.22);

    --shadow:
        0 20px 50px rgba(0,0,0,.28);

    --radius:24px;

    --hero-overlay:
        linear-gradient(
            rgba(20,20,35,.40),
            rgba(20,20,35,.55)
        );

}

.artist-theme-lofi .track-card{
    backdrop-filter:blur(6px);
}

.artist-theme-lofi .track-card.playing .track-wave span{
    background:rgba(160,190,255,.8);
}
