/* ############### Imports ##################### */
@import url("photographer.css");

/* ############### Variables ##################### */
:root {
    --red-darker: #901C1C;
    --red-lighter: #D3573C;
    --black-point: #000000;
    --white-point: #FFFFFF;
    --medium-gray: #757575;
}

/* ############### Fonts ##################### */
@font-face {
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/DMSans-VariableFont_opsz,wght.ttf");
}

/* ############### Global styles ##################### */
body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    margin: 0;
}


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

h1 {
    color: var(--red-darker);
    margin-right: 100px;
    font-weight: 400;
    font-size: 2.25rem;
}

a {
    text-decoration: none;
}


/* ############### Styles ##################### */
a.home-link {
    margin-left: 100px;
}

.logo {
    height: 50px;
}

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

@media screen and (max-width: 1024px) {
    .photographer_section {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .photographer_section {
        grid-template-columns: 1fr;
    }
}

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

.photographer_section article h2 {
    color: var(--red-lighter);
    font-size: 2.25rem;
    font-weight: 400;
    margin: 0;
}

.photographer_section article img {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.photographer_section .artistHero a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.photographer_section div.artistDetails p {
    text-align: center;
    margin: 0;
}

.photographer_section article p.localisation {
    color: var(--red-darker);
    font-size: 0.8rem;
}

.photographer_section article p.tagline {
    font-size: 0.625rem;
}

.photographer_section article p.pricing {
    color: var(--medium-gray);
    font-size: 0.6rem;
}