/* Hero Test Simple Styles */
.hero-test-simple {
    position: relative;
    width: 100%;
    min-height: 100vh;
    color: white;
}

/* Masquer le logo de la navbar seulement quand on est au top de la page avec hero */
.hero-test-simple-active .navbar-brand,
.hero-test-simple-active #header .header-container > a,
.hero-test-simple-active #header .header-logo {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* S'assurer que le logo réapparaît par défaut */
.navbar-brand,
#header .header-container > a,
#header .header-logo {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hero-test-simple-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/hero/band-photo.jpg');
    background-position: center -125px !important;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

/*  bouton hamburger soit visible sur desktop par défaut  */
.btn.header-btn-collapse-nav {
    display: none;
}

/* Overlay pour menu mobile */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Navigation responsive - transformation en dropdown pour mobile/tablette */
@media (max-width: 1200px) {
    /* Afficher le bouton hamburger sur mobile/tablette */
    .btn.header-btn-collapse-nav {
        display: block !important;
        background: rgba(2, 131, 93, 0.8);
        border: 2px solid rgba(2, 131, 93, 0.6);
        color: white;
        border-radius: 8px;
        padding: 0.75rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .btn.header-btn-collapse-nav:hover {
        background: rgba(2, 131, 93, 1);
        border-color: rgba(2, 131, 93, 0.8);
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(2, 131, 93, 0.4);
    }

    .btn.header-btn-collapse-nav i {
        font-size: 1.2rem;
    }

    /* Masquer la navigation par défaut sur mobile/tablette */
    #mainNav,
    .ws-responsive-nav {
        display: none !important;
    }

    /* Transformer la navigation en dropdown pour mobile/tablette quand elle est active */
    #mainNav.mobile-menu-active,
    .ws-responsive-nav.mobile-menu-active {
        display: flex !important;
        position: fixed !important;
        top: 130px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: rgba(18, 22, 26, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: 2rem 1rem !important;
        margin: 0 !important;
        border-radius: 0 0 15px 15px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7) !important;
        z-index: 9999 !important;
        max-height: calc(100vh - 130px) !important;
        overflow-y: auto !important;
    }

    /* Style des éléments de navigation en mode dropdown - seulement quand le menu est ouvert */
    #mainNav.mobile-menu-active .nav-item,
    .ws-responsive-nav.mobile-menu-active .nav-item {
        width: 100%;
        margin: 0 0 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }

    #mainNav.mobile-menu-active .nav-item:last-child,
    .ws-responsive-nav.mobile-menu-active .nav-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    /* Style des liens en mode dropdown - seulement quand le menu est ouvert */
    #mainNav.mobile-menu-active .nav-item .nav-link,
    .ws-responsive-nav.mobile-menu-active .nav-item .nav-link {
        color: white !important;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.05);
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        text-decoration: none;
    }

    #mainNav.mobile-menu-active .nav-item .nav-link:hover,
    #mainNav.mobile-menu-active .nav-item .nav-link.active,
    .ws-responsive-nav.mobile-menu-active .nav-item .nav-link:hover,
    .ws-responsive-nav.mobile-menu-active .nav-item .nav-link.active {
        background: rgba(2, 131, 93, 0.8) !important;
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(2, 131, 93, 0.3);
    }

    /* Style pour le dropdown PLUS en mode mobile */
    .dropdown-menu {
        background: rgba(18, 22, 26, 0.9) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        margin-top: 0.5rem !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .dropdown-item {
        color: white !important;
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        border-radius: 6px !important;
        margin: 0.25rem !important;
        transition: all 0.3s ease !important;
    }

    .dropdown-item:hover {
        background: rgba(2, 131, 93, 0.8) !important;
        color: white !important;
        transform: translateX(5px) !important;
    }

    /* Background hero pour mobile/tablette */
    .hero-test-simple-bg {
        background-image: url('/img/hero/band-mobile.jpg') !important;
        background-position: center center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }

    .hero-test-simple {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden !important;
    }

    .hero-test-simple-content {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }

    .hero-test-simple-main {
        padding: 2rem 0 2rem 0;
        min-height: 80vh;
    }

    .hero-test-simple-container {
        gap: 2rem;
        max-width: 95%;
    }

    .hero-logo-img {
        max-width: clamp(250px, 75vw, 400px);
    }

    .hero-test-simple-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        letter-spacing: 3px;
    }

    .hero-test-simple-subtitle::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }

    .hero-test-simple-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        max-width: 90%;
        line-height: 1.6;
    }

    .hero-test-simple-buttons {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-test-simple-btn {
        width: 90%;
        max-width: 250px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: unset;
    }

    .hero-test-simple-btn i {
        font-size: 1.1rem;
    }

    .hero-test-simple-tracks-grid {
        flex-direction: column;
        align-items: center;
    }

    .player {
        max-width: 100%;
        width: 280px;
    }

    .streaming-platforms {
        gap: 1rem;
        margin: 1rem 0 1.5rem 0;
    }

    .streaming-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    /* Disposition des plateformes de streaming en 2 rangées de 3 pour écrans étroits */
    .container-xl-custom .row.custom-borders-divider-style-1 {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 0 !important;
        max-width: 100% !important;
    }

    .container-xl-custom .row.custom-borders-divider-style-1 > div {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Format tablette paysage type Galaxy A50 */
@media (max-width: 900px) and (max-height: 850px) {
    .hero-test-simple-bg {
        background-image: url('/img/hero/band-mobile.jpg') !important;
        background-position: center 25% !important;
        background-size: cover !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }

    /* Menu dropdown plus compact pour tablette paysage */
    #mainNav.mobile-menu-active,
    .ws-responsive-nav.mobile-menu-active {
        top: 110px !important;
        padding: 1.5rem 1rem !important;
    }

    #mainNav.mobile-menu-active .nav-item .nav-link,
    .ws-responsive-nav.mobile-menu-active .nav-item .nav-link {
        font-size: 1rem !important;
        padding: 0.6rem 1rem !important;
    }
}

/* Format mobile portrait */
@media (max-width: 576px) {
    .hero-test-simple-bg {
        background-image: url('/img/hero/band-mobile.jpg') !important;
        background-position: center 35% !important;
        background-size: cover !important;
        background-attachment: scroll !important;
        background-repeat: no-repeat !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }

    .hero-test-simple {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden !important;
    }

    .hero-test-simple-content {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
    }

    .hero-test-simple-main {
        padding: 1rem 0 2rem 0;
        min-height: 75vh;
    }

    .hero-test-simple-container {
        gap: 1.5rem;
    }

    .hero-logo-img {
        max-width: clamp(180px, 30vw, 250px);
    }

    .hero-test-simple-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }

    .hero-test-simple-description {
        font-size: clamp(0.8rem, 1.8vw, 1rem);
    }

    /* Menu dropdown optimisé pour mobile portrait */
    #mainNav.mobile-menu-active,
    .ws-responsive-nav.mobile-menu-active {
        top: 120px !important;
        padding: 1rem 0.5rem !important;
        border-radius: 0 !important;
        max-height: calc(100vh - 120px) !important;
    }

    #mainNav.mobile-menu-active .nav-item,
    .ws-responsive-nav.mobile-menu-active .nav-item {
        margin-bottom: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    #mainNav.mobile-menu-active .nav-item .nav-link,
    .ws-responsive-nav.mobile-menu-active .nav-item .nav-link {
        font-size: 0.95rem !important;
        padding: 0.6rem 0.75rem !important;
        letter-spacing: 0.5px !important;
    }

    .btn.header-btn-collapse-nav {
        padding: 0.6rem !important;
    }

    .btn.header-btn-collapse-nav i {
        font-size: 1.1rem !important;
    }

    /* Disposition des plateformes de streaming en 2 rangées de 3 pour mobile */
    .container-xl-custom .row.custom-borders-divider-style-1 {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: repeat(2, 1fr) !important;
        gap: 0 !important;
        max-width: 100% !important;
    }

    .container-xl-custom .row.custom-borders-divider-style-1 > div {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (min-width: 1200px) {
    .hero-test-simple-bg {
        background-position: center 80%;
    }
}

@media (min-width: 1920px) {
    .hero-test-simple-bg {
        background-position: center 85%;
        background-size: cover;
    }
}

.hero-test-simple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 22, 26, 0.8) 0%, rgba(18, 22, 26, 0.6) 50%, rgba(18, 22, 26, 0.85) 100%);
    z-index: 1;
}

.hero-test-simple-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-test-simple-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 0 2rem 0;
    min-height: 80vh;
}

.hero-test-simple-container {
    display: grid;
    grid-template-rows: auto auto auto auto;
    gap: 3rem;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 900px;
}

.hero-test-simple-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.hero-logo-img {
    max-width: clamp(280px, 45vw, 450px);
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.6));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-img:hover {
    transform: scale(1.06) translateY(-8px);
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.8));
}

.hero-test-simple-subtitle {
    font-family: 'Karla', Arial, sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    position: relative;
}

.hero-test-simple-subtitle::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
    border-radius: 2px;
}

.hero-test-simple-description {
    font-family: 'Karla', Arial, sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.8;
    font-weight: 400;
}

.hero-test-simple-buttons {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 0;
    flex-wrap: wrap;
}

.hero-test-simple-btn {
    font-family: 'Karla', Arial, sans-serif;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 180px;
    justify-content: center;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
}

.hero-test-simple-btn:hover,
.hero-test-simple-btn:focus,
.hero-test-simple-btn:active,
.hero-test-simple-btn:visited {
    text-decoration: none !important;
}

.hero-test-simple-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.hero-test-simple-btn:hover::before {
    left: 100%;
}

.hero-test-simple-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-test-simple-btn:hover i {
    transform: scale(1.1);
}

.hero-test-simple-btn-primary {
    
    --button-background: rgba(20, 60, 45, 0.7);
    --text-base: rgba(255, 255, 255, 0.95);
    --text-hover: rgba(255, 255, 255, 1);
    --shadow-start: rgba(0, 212, 170, 0.8);
    --shadow-end: rgba(2, 131, 93, 1);

    background-color: var(--button-background);
    color: var(--text-base);
    border: 3px solid rgba(2, 131, 93, 1);
    border-radius: 2em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4),
                 0 1px 2px rgba(0, 0, 0, 0.3);

    transition: 0.25s ease-out;
}

.hero-test-simple-btn-primary::before,
.hero-test-simple-btn-primary::after {
    content: "";
    border-radius: inherit;
    transition: inherit;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-test-simple-btn-primary::before {
    
    inset: -0.2em;
    z-index: -1;

    background: linear-gradient(var(--shadow-start), var(--shadow-end));
    filter: blur(1.2em) saturate(1.2);

    transform-origin: bottom;
    transform: scaleY(0.5);
    opacity: 0;
}

.hero-test-simple-btn-primary::after {
    
    box-shadow: inset 0 0 0 1px #fff,
        0 0 0 4px hsla(0deg, 0%, 100%, 0.5),
        1px 1px 0 4px #fff;
    mix-blend-mode: overlay;

    opacity: 0;
}

.hero-test-simple-btn-primary:hover,
.hero-test-simple-btn-primary:focus {
    color: var(--text-hover) !important;
    text-decoration: none !important;

    transform: translateY(-2px) scale(1.02);

    border-color: transparent;

    text-shadow: 0 0 15px rgba(255, 255, 255, 1),
                 0 2px 4px rgba(0, 0, 0, 0.5);

    box-shadow:
        inset 0 1.4em 0 rgba(2, 131, 93, 0.1),
        inset 0 0 1.4em rgba(2, 131, 93, 0.32),
        0 1px 1px rgba(2, 131, 93, 0.32);
}

.hero-test-simple-btn-primary:hover::before,
.hero-test-simple-btn-primary:hover::after,
.hero-test-simple-btn-primary:focus::before,
.hero-test-simple-btn-primary:focus::after {
    transform: none;
    opacity: 1;
}

.hero-test-simple-btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

.hero-test-simple-btn-secondary {
    
    --button-background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 100%);
    --text-base: white;
    --text-hover: rgba(255, 255, 255, 0.95);
    --shadow-start: rgba(255, 255, 255, 0.6);
    --shadow-end: rgba(255, 255, 255, 0.3);

    background: var(--button-background);
    color: var(--text-base);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);

    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4),
                 0 1px 2px rgba(0, 0, 0, 0.3);

    transition: 0.25s ease-out;
}

.hero-test-simple-btn-secondary::before,
.hero-test-simple-btn-secondary::after {
    content: "";
    border-radius: inherit;
    transition: inherit;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-test-simple-btn-secondary::before {
    
    inset: -0.2em;
    z-index: -1;

    background: linear-gradient(var(--shadow-start), var(--shadow-end));
    filter: blur(1.2em) saturate(1.2);

    transform-origin: bottom;
    transform: scaleY(0.5);
    opacity: 0;
}

.hero-test-simple-btn-secondary::after {
    
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8),
        0 0 0 4px hsla(0deg, 0%, 100%, 0.3),
        1px 1px 0 4px rgba(255, 255, 255, 0.6);
    mix-blend-mode: overlay;

    opacity: 0;
}

.hero-test-simple-btn-secondary:hover,
.hero-test-simple-btn-secondary:focus {
    color: var(--text-hover) !important;
    text-decoration: none !important;

    transform: translateY(-2px) scale(1.02);

    border-color: transparent;

    box-shadow:
        inset 0 1.4em 0 rgba(255, 255, 255, 0.1),
        inset 0 0 1.4em rgba(255, 255, 255, 0.25),
        0 1px 1px rgba(255, 255, 255, 0.3);
}

.hero-test-simple-btn-secondary:hover::before,
.hero-test-simple-btn-secondary:hover::after,
.hero-test-simple-btn-secondary:focus::before,
.hero-test-simple-btn-secondary:focus::after {
    transform: none;
    opacity: 1;
}

.hero-test-simple-btn-secondary:active {
    transform: translateY(-1px) scale(0.99);
}

.hero-test-simple-tracks {
    padding: 0.5rem 0;
}

.hero-test-simple-tracks-title {
    font-family: 'The Fudge Chonk', 'Karla', Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

.streaming-platforms {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
}

.streaming-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.streaming-link:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.streaming-link .fab {
    transition: all 0.3s ease;
}

.streaming-link:hover .fab {
    transform: scale(1.1);
}

.streaming-link:nth-child(1):hover {
    background: rgba(29, 185, 84, 0.2);
    color: #1db954;
    border-color: rgba(29, 185, 84, 0.4);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.2);
}

.streaming-link:nth-child(2):hover {
    background: rgba(169, 169, 169, 0.2);
    color: #a9a9a9;
    border-color: rgba(169, 169, 169, 0.4);
    box-shadow: 0 8px 25px rgba(169, 169, 169, 0.2);
}

.streaming-link:nth-child(3):hover {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.hero-test-simple-tracks-subtitle {
    font-family: 'Karla', Arial, sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-test-simple-tracks-grid {
    display: flex;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
}

