@import url("photographer.css");

:root{
    --primary-color : #901c1c;
    --secondary-color : #D3573C;
}

body {
    font-family: "DM Sans", sans-serif;
    margin: 0;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

h1 {
    color: var(--primary-color);
    margin-right: 100px;
}

a {
    text-decoration: none;
    color: inherit;
}

.logo {
    height: 50px;
    margin-left: 100px;
}

.photographer_section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 70px;
    margin-top: 100px;
}

.photographer_section article {
    justify-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.photographer_section article h2,
.photographer__name {
    color: var(--secondary-color);
    font-size: 36px;
    margin-bottom: 0;
}

.photographer_section article .localisation,
.photographer__localisation {
    color: var(--primary-color);
    font-size: 18px;
}

.photographer_section article .slogan,
.photographer__slogan {
    font-size: 16px;
}

.photographer_section article .price {
    color: #525252;
    font-size: 12px;
}

.photographer_section article img,
.photographer__image {
    height: 200px;
    width: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    box-shadow: 1px 1px 7px rgb(100 100 100 / 60%);
}

.photographer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

/* FILTER CLASS */
.section-filter {
    margin: 10px 100px 20px;
}

/* GALLERY CLASS */
.section-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 100px;
    padding-bottom: 50px;
}

.gallery-item {
    width: 32%;
    margin-bottom: 15px;
    padding: 5px;
}

.gallery-item > button {
    width: 100%;
}

.gallery-item > button > img,
.gallery-item > button > video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.gallery-item-informations {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gallery-item-informations h5 {
    color: #901d1d;
    margin: 3px 0;
    font-weight: 500;
    font-size: 16px;
}

.gallery-item-likes {
    display: flex;
    align-items: center;
    color: #901d1d;
}
.gallery-item-likes > img {
    width: 20px;
    margin-left: 7px;
}

/* GLOBAL INFORMATION */
#global-information {
    position: fixed;
    bottom: 0;
    right: 40px;
    width: 200px;
    background: #db8876;
    border-radius: 10px 10px 0 0;
    padding: 14px 25px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

#global-information img {
    width: 15px;
}

/* GENERALE CLASS */
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.ms-2 {
    margin-left: 0.5rem;
}
