@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400&display=swap');

:root {
    --main-white: #ffffff;
    --bg-black: #000000;
    --gray-light: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: var(--main-white);
    line-height: 1.6;
}

/* IMAGE HERO - L'impact visuel */
.hero {
    width: 100%;
    height: 55vh; /* Ajuste la hauteur ici */
    background: url('../images/TEMPO_COVER-ORIGINAL_2.png') center/cover no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

h1 {
    color: #fa5170;
    font-size: 25px;
    font-weight: bold;
    text-transform: lowercase;
    letter-spacing: 10px; /* Ton espacement Canva */
    margin-bottom: 10px;
    
    /* LA SOLUTION ICI */
    padding-left: 10px; /* Doit être identique au letter-spacing */
    text-align: center;
    width: 100%;
    /* hover */
    transition: color 0.4s ease; /* Rend le passage au blanc tout doux */
    cursor: default; /* Garde le curseur normal ou mets 'pointer' si tu veux qu'il soit cliquable */

}

h1:hover {
    color: #ffffff; /* Change en blanc au survol */
}

.subtitle {
    color: white;
    font-family: 'Helvetica', 'Arial', sans-serif; /* Même police que le lien de retour */    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: normal;
    text-transform: uppercase;
    opacity: 0.9;
    font-size: 12px;
    margin-bottom: 40px;
    margin-top: 5px;
}

/* GRILLE DE LIENS */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-item {
    display: block;
    width: 100%;
    padding: 18px;
    border: 1px solid var(--main-white);
    color: var(--main-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.link-item:hover {
    background-color: var(--main-white);
    color: var(--bg-black);
    transform: scale(1.06);
}

/* BOUTON CLIP (MIS EN AVANT) */
.cta {
    background-color: var(--main-white);
    color: var(--bg-black);
    font-weight: bold;
    /* Ajout du cadre rouge */
    border: 3px solid #d20b11; 
}

.cta:hover {
    border-color: #FF0000; /* Garde la bordure rouge au survol */
    background-color: #FF0000; /* Optionnel : le bouton devient rouge au survol */
    color: white; /* Optionnel : le texte devient blanc au survol */
}

.link-back {
    margin-top: 20px;
    color: var(--main-white);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
}

.link-back:hover {
    opacity: 1;
}



.label-logo {
    width: 45px; /* Taille signature, très élégante */
    height: auto;
    margin: 40px auto 10px auto; /* Espace bien le logo des boutons */
    display: block;
    opacity: 0.7; /* Un peu transparent pour ne pas voler la vedette à "enora" */
    transition: opacity 0.2s ease;
}

.label-logo:hover {
    opacity: 1; /* S'illumine au survol */
}

footer {
    margin-top: 50px;
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.3;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
    .hero { height: 45vh; }
    h1 { font-size: 1.4rem; }
}
