header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.grand-prenom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.nom {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 20px;
    color: #aaaaaa;
    margin-bottom: -5px;
    margin-left: 20px;
    animation: fadeInDown 1s ease-out;
}

.prenom {
    font-size: 9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -4px;
    line-height: 0.9;
    background: linear-gradient(90deg, #666666 0%, #ffffff 50%, #666666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.4s ease, transform 0.4s ease;
}

.prenom:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transform: scale(1.02);
}

.prenom-wrapper {
    position: relative;
    display: inline-block;
}

.cv-hint {
    position: absolute;
    right: -230px;
    bottom: 110px;
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    white-space: nowrap;
    transform: rotate(-15deg);
    animation: fadeInRotate 1s ease-out 0.6s backwards;
    pointer-events: none;
}

.description {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 30px;
}

.header-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .nom {
        font-size: 2rem;
        letter-spacing: 15px;
    }
    .prenom {
        font-size: 7rem;
    }
    .cv-hint {
        right: -150px;
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    .nom {
        font-size: 1.5rem;
        letter-spacing: 10px;
        margin-left: 10px;
    }
    .prenom {
        font-size: 5rem;
        letter-spacing: -2px;
    }
    .cv-hint {
        display: none;
    }
    .description {
        font-size: 1.2rem;
        padding: 0 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nom {
        font-size: 1.2rem;
        letter-spacing: 5px;
        margin-left: 5px;
    }
    .prenom {
        font-size: 3.5rem;
    }
    .header-buttons {
        flex-direction: column;
        gap: 15px;
        width: 80%;
    }
}
