@import url("photographer.css");
:root {
    --primary-color: #901C1C; /* Couleur primaire */
    --secondary-color: #DB8876; /* Couleur secondaire */
    --title-color: #D3573C;
  }
body {
    font-family: "DM Sans", sans-serif;
    margin: 1em auto;
}


header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

h1 {
    color: var(--primary-color);
    margin-right: 100px;
}

.logo {
    height: 50px;
    margin-left: 100px;
}

.photographer_section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px;
    margin-top: 100px;
}
.heart {
    color: inherit; /* Utilise la couleur du texte parent */
    text-decoration: none; /* Supprime la soulignement par défaut des liens */
}
.photographer_section article {
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
 .linkArticle{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.photographer_section article h2 {
    color: var(--title-color);
    font-size: 36px;
    margin-bottom: 0;
    font-weight: 100;
}

.photographer_section article img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 50%;
}
.photographer_section article p
{
    font-size: 0.7em;
    margin-bottom: 0;
    margin-top: 0;
}
.tagline{
    color: #545454;
}
.photographer_section article p:last-child
{
    color: #757575;
    font-size: 0.7em;
    margin-bottom: 0;
    margin-top: 0;
}
.row{
    display: flex;
    gap: 1.5em;
    align-items: baseline;
}
.flexListbox{
    display: flex;
    gap: 1.5em;
    align-items: baseline;
    justify-content: space-between;
}
 .red{
    color: var(--primary-color);
    font-weight: bold;
    display: contents;
    margin-bottom: 0;
    margin-top: 0;
}
.likes{
  
    display: flex;
    gap: 0.5em;
    cursor: pointer;
}
.primary{
    color: var(--primary-color);
}
.secondary{
    color: var(--secondary-color);
}
.heartDiv{
    display: flex;
    align-items: center;
}
.somme{
    padding-right: 0.3em;
}
