/* Styles globaux pour les liens - SharpMotion
-----------------------------------------------------------------*/

/* Styles de base pour tous les liens */
a {
    color: #14cf93 !important;
    text-decoration: underline;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: #caff33 !important;
    text-decoration: underline;
}

/* Exceptions pour les éléments de navigation */
.navbar a, 
.hamenu a, 
.next-project a, 
.all-works-butn, 
.logo a,
.footer a,
.social-text a,
.menu-links a {
    color: inherit !important;
    text-decoration: none !important;
}

/* Styles de hover pour la navigation */
.navbar a:hover, 
.hamenu a:hover {
    color: #14cf93 !important;
    text-decoration: none !important;
}

/* Liens dans le contenu principal - mise en valeur supplémentaire */
.text a,
p a {
    font-weight: 500;
    color: #14cf93 !important;
    text-decoration: underline;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.text a:hover,
p a:hover {
    color: #caff33 !important;
    border-bottom: 1px solid #caff33;
    text-decoration: none;
}

/* Liens dans les titres */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #14cf93 !important;
    text-decoration: none;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: #caff33 !important;
}