/* RESET & GLOBAL */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #111111; /* Couleur de fond crème légère (bg-couleur-3-claire) */
    color: #2b2b2b;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTAINER PRINCIPAL */
.linktree-container {
    width: 100%;
    max-width: 680px; /* Largeur type mobile/tablette */
    padding: 40px 20px;
    margin: 0 auto;
    text-align: center;
}

/* HEADER PROFIL */
.profile-header {
    margin-bottom: 35px;
}

.profile-image img {
    max-width: 400px;
    height: auto;
    margin-bottom: 15px auto;
}

.profile-header h1 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.profile-header p {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff; /* Couleur secondaire dorée foncé */
}

/* LISTE DES LIENS (BOUTONS) */
.links-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espace entre les boutons */
    margin-bottom: 40px;
}



.link-btn {
    display: flex;
   justify-content: space-around;
    width: 100%;
    padding: 16px 20px;
    background-color: #ffffff;
    color: #2b2b2b;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid #e0e0e0;
    border-radius: 50px; /* Bords très arrondis style Linktree */
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.link-btn:hover {
    background-color: #d3b492; /* Ta couleur principale */
    color: #ffffff;
    border-color: #d3b492;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(211, 180, 146, 0.4);
}

/* Style spécifique pour le bouton important (ex: Prendre RDV) */
.link-btn.highlight {
    background-color: #2b2b2b;
    color: #d3b492;
    border: 1px solid #2b2b2b;
    animation: pulse 2s infinite;
}

.link-btn.highlight:hover {
    background-color: #000000;
    color: #ffffff;
}

/* FOOTER & SOCIAL */
.social-footer {
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-item {
    width: 50px;
    height: 50px;
    background-color: #2b2b2b; /* Fond noir/gris foncé */
    border-radius: 50%; /* Cercle parfait */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.social-item img {
    width: 24px;
    height: auto;
    
}

.link-btn img{
    filter: brightness(0) saturate(100%) invert(79%) sepia(47%) saturate(233%) hue-rotate(346deg) brightness(87%) contrast(88%);
}

.link-btn:hover img{
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(299deg) brightness(106%) contrast(101%);
}

.social-item:hover {
    background-color: #d3b492;
}

/* Correction spécifique pour ton icône mail qui a un padding inline */
.icon-fix-padding {
    padding-top: 0 !important; /* J'ai reset ton style inline pour centrer via flexbox */
}

/* COPYRIGHT TEXT */
.copyright-text p {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 300;
}

.credits a {
    color: #d3b492;
    text-decoration: none;
    font-weight: 500;
}

.credits a:hover {
    text-decoration: underline;
}

/* Animation douce pour le bouton principal */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(43, 43, 43, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(43, 43, 43, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(43, 43, 43, 0);
    }
}

.link-btn {
    display: flex;              
    align-items: center;        
    justify-content: center;    
    
}

.btn-icon {
       
    height: auto;
    margin-right: 10px; 
}

.link-btn.highlight:hover .btn-icon {
    filter: invert(1);
}