/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --main-color: #242120;
}
body {
    font-family: "Raleway", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}
h2 {
    padding-bottom: 2em;
    font-size: 24px;
}
.serif {
    font-family: "Bodoni Moda", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    padding-bottom: 3em;
}
.bold{
    font-weight: 700;
}
/* =========================
   CONTAINER (mobile first)
========================= */
.container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

/* =========================
   HEADER & NAVIGATION
========================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    color: #fff;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo-svg {
    width: 80px;       /* largeur du logo */
    height: auto;      /* conserve les proportions */
    fill: var(--main-color);        /* couleur du logo */
    transition: all 0.3s ease; /* pour animation au hover si besoin */
}

.header .logo-svg:hover {
    transform: scale(1.1);        /* couleur au survol */
    animation: rainbow-fill 0.6s linear 1 forwards;
}
@keyframes rainbow-fill {
    0%   { fill: #400000; }  /* rouge foncé */
    25%  { fill: #550000; }  /* bordeaux profond */
    50%  { fill: #220000; }  /* presque noir */
    75%  { fill: #660000; }  /* rouge sombre */
    100% { fill: #400000; }  /* retour rouge foncé */
}
/* Nav desktop */
.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    padding: .1em .5em;
    transition: all .2s;
}

.nav a:hover {
    background-color: var(--main-color);
    color: #fff;
}
.nav-pack-pro {
    margin-left: 1.5rem;
    padding: 0.1rem .5rem !important;
    border: 1px solid currentColor;
    background-color: var(--main-color);
    color: #fff !important;
}

.nav-pack-pro:hover {
    background-color: #fff !important;
    color: var(--main-color) !important;
}
.nav-pack-pro {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* BURGER */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; /* au-dessus de la nav */
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--main-color);
    transition: all 0.3s ease;
    transform-origin: center;
}
/* Etat "croix" quand la nav est active */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0; /* disparition du trait du milieu */
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile view */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }
}
/* =========================
   SECTIONS
========================= */
.section {
    scroll-margin-top: 64px; /* offset header sticky */
    padding: 6rem 0;
}

/* HERO SECTION */
.section-hero {
    min-height: calc(80vh - 70px); /* on retire la hauteur du header */
    background: url('../img/hero-desktop-nadi.jpg') center center / cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-logo {
    display: flex;               /* centre horizontalement */
    justify-content: center;
    align-items: center;         /* centre verticalement si nécessaire */
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;             /* espace autour */
    fill: #fff;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px; /* distance par rapport au bas du hero */
    left: 50%;
    transform: translateX(-50%);
}

/* Réduction sur mobile */
@media (max-width: 768px) {
    .hero-logo {
        font-size: 2rem; /* taille plus petite pour mobile */
    }
}



/* AUTRES SECTIONS */
.section-tour {
    background-color: #fff;
    
}

.section h2 {
    margin-bottom: 1rem;
    text-align: center;
}

/* =========================
   MOBILE NAVIGATION
========================= */
@media (max-width: 768px) {
    .burger { display: flex; }

    .nav {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: #fff;

        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;

        transform: translateY(-110%);
        transition: transform 0.3s ease;
        z-index: 900;
    }

    .nav.active {
        transform: translateY(0);
    }

    .nav a {
        width: 100%;
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid #e6e6e6;
        font-size: 1rem;
    }

    .nav-pack-pro {
        margin-left: 0;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #e6e6e6;
        width: 100%;
        padding: 1.2rem 1.5rem !important;
    }
}
/* =========================
   TOUR
========================= */


.tour-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: #fff;
    border-bottom: solid 1px #e6e6e6;
}

/* LEFT */
.tour-left {
    display: flex;
    flex-direction: column;
}

.tour-date {
    font-weight: bold;
    text-transform: uppercase;
}

.tour-venue {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* RIGHT */
.tour-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tour-city {
    font-weight: 500;
}

.tour-link {
    padding: 0.6rem 4rem;
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s ease, color 0.2s ease;
    font-weight: 500;
}

.tour-link:hover {
    background: #fff;
    color: var(--main-color);
}
/* Dates passées */
.tour-past .tour-item {
    opacity: 0.5;
    text-decoration: line-through;
}

.tour-past-title {
    margin: 4rem 0 2rem;
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.7;
}
/* =========================
   TOUR – MOBILE (stack complet)
========================= */
@media (max-width: 768px) {

    .tour-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .tour-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tour-city {
        font-size: 0.9rem;
        opacity: 0.85;
    }

    .tour-link {
        width: 100%;
        padding: 0.6rem 0;
        text-align: center;
        font-size: 0.85rem;
    }
}


/* =========================
   STREAMING
   ========================= */

.section-streaming {
    background-color: var(--main-color);
    color: #fefefe;
}

/* --- TOP BLOCK --- */

.streaming-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Cover */

.streaming-cover img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* Tracklist */

.streaming-tracklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.track {
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

/* --- BOTTOM BLOCK --- */

.streaming-bottom {
    text-align: center;
}

.buy-button {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.75rem 7rem;
    border: 1px solid #fff;
    background-color: #fff;
    text-decoration: none;
    color: var(--main-color);
    letter-spacing: 0.15em;
    transition: background 0.3s ease, color 0.3s ease;
    font-weight: 700;
}

.buy-button:hover {
    background: var(--main-color);
    color: #fff;
}

.streaming-label {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    opacity: 0.7;
}

.streaming-logos {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.streaming-logos a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.streaming-logos a:hover {
    opacity: 1;
}

/* =========================
   DESKTOP
   ========================= */

@media (min-width: 992px) {
    .streaming-top {
        flex-direction: row;
        align-items: stretch;
    }

    .streaming-cover {
        flex: 0 0 40%;
    }

    .streaming-tracklist {
        flex: 1;
        padding-left: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* répartit les tracks */
    }
    .streaming-bottom {
        text-align: left;
    }

    .buy-button {
        width: 40%;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
    .streaming-logos  {
        text-align: left;
        display: inline-block;
    }
}
/* =========================
  MEDIA
   ========================= */
   .section-media .youtube-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 2em;
}

.section-media .youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* =========================
  BIO
   ========================= */
.section-bio {
    background-color: #f5f5f5;
}
.section-bio .container {
    max-width: 700px; /* largeur maximale confortable pour la lecture */
    margin: 0 auto;   /* centre le container horizontalement */
    line-height: 1.6; /* espace entre les lignes pour améliorer la lisibilité */
    font-size: 1rem;  /* taille de police standard */
}

.section-bio p {
    margin-bottom: 1.5em; /* espace entre les paragraphes */
}
/* =========================
 CONTACT
   ========================= */
.section-contact {
    text-align: center;
}   
.bloc-contact {
    padding-bottom: 1em;
}
/* =========================
FOOTER
   ========================= */
.footer-site {
    padding: 6em 0em;
    text-align: center;
    background-color: var(--main-color);
    color: #fff;
}
.picto-footer {
    padding: 2em 0;
}
.icon-social {
    width: 24px;
    height: 24px;
    fill: #fff;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.icon-social:hover {
    transform: scale(1.1);
    fill: #ccc; /* couleur au hover, optionnel */
}

.picto-footer a {
    margin-right: 1rem; /* espace entre les icônes */
}
