/* Fonts *******************************************************************/

@font-face {
    font-family: Pompiere;
    src: url("../fonts/pompiere.otf");
}

@font-face {
    font-family: "Work Sans";
    src: url("../fonts/work-sans.otf");
}


/* Variables ***************************************************************/

:root {
    --color-ink: #2C3639;
    --color-sand: #A27B5C;
    --color-vanilla: #C4A781;
    --font-family-header: Pompiere, sans-serif;
    --font-family-text: "Work Sans", sans-serif;
}


/* Tags ********************************************************************/

a {
    color: var(--color-vanilla);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h2, h3, h4 {
    font-family: var(--font-family-header);
    letter-spacing: 0.05em;
    margin: 0;
}


/* Containers **************************************************************/

html {
    background-color: var(--color-sand);
    color: var(--color-ink);
    font-family: var(--font-family-text);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

/***** Header ***************************/

header#landing-header {
    margin: 80px auto 100px;
    text-align: center;
    width: 400px;
}

header#landing-header h1,
header#section-header h1 {
    display: none;
}

header#landing-header h2 {
    font-size: 3em;
    font-weight: lighter;
}

header#landing-header img {
    width: 100%;
}

header#section-header {
    align-items: center;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(to right, #A27B5C, #2C3639, #A27B5C) 1;
    display: flex;
    justify-content: space-between;
    margin: 50px auto 50px;
    padding-bottom: 50px;
    width: 60%;
}

header#section-header h2 {
    font-size: 5.5em;
}

header#section-header img {
    width: 250px;
}

/***** Main *****************************/

main#landing-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin: 0 auto 100px;
    width: 60%;
}

main#landing-main article {
    aspect-ratio: 1;
    border: 4px dotted var(--color-ink);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    min-width: 250px;
    padding: 40px;
    text-align: center;
    width: 20%;
}

main#landing-main article h3 {
    font-size: 4em;
}

main#landing-main article p {
    font-size: 1.2em;
    line-height: 1.5;
}

main.section-main {
    margin: 0 auto 100px;
    width: 50%;
}

main.section-main section#section-intro {
    text-align: center;
}

main#zines-section-main section h3 {
    font-size: 3em;
}

main#zines-section-main section img {
    width: 100%;
}

main#zines-section-main section p {
    font-size: 1.2em;
    line-height: 1.5;
}

main#zines-section-main section article h4 {
    font-size: 2em;
    margin-top: 30px;
}

main#zines-section-main section + section::before {
    content: "…";
    display: block;
    font-size: 4.5em;
    margin-bottom: 40px;
    text-align: center;
}

/***** Footer ***************************/

footer {
    align-items: center;
    background: var(--color-ink);
    color: var(--color-vanilla);
    display: flex;
    gap: 30px;
    height: 40px;
    justify-content: center;
    margin-top: auto;
}

footer div.contact-method svg {
    fill: var(--color-vanilla);
    height: 24px;
    vertical-align: middle;
    width: 24px;
}
