/* Global Styles */
:root {
    --light:#f1e8e3;
    --gold:#d4af37;
    --dark:#003030;
}
@font-face {
    font-family: CormorantUnicase;
    src: url(/fonts/CormorantUnicase-SemiBold.ttf);
}
@font-face {
    font-family: Cormorant;
    src: url(/fonts/Cormorant-Medium.ttf);
    font-weight: 300;
}
@font-face {
    font-family: Cormorant;
    src: url(/fonts/Cormorant-Light.ttf);
    font-weight: 100;
}
@font-face {
    font-family: Cormorant;
    src: url(/fonts/Cormorant-Bold.ttf);
    font-weight: 700;
}
@font-face {
    font-family: Cormorant;
    src: url(/fonts/Cormorant-MediumItalic.ttf);
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-Light.ttf);
    font-weight: 100;
}
@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-LightItalic.ttf);
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: montserrat;
    src: url(/fonts/Montserrat-SemiBold.ttf);
    font-weight: 700;
}

a {
    text-decoration: none;
    font-family: Cormorant;
    font-weight: 300;
}

a:hover, #mc-embedded-subscribe:hover {
    filter:invert(30%);
    cursor: pointer;
}

img {
    max-width: 100%;
}

.thumbnail {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    width: 16rem;
    margin-right:1rem;
    margin-bottom: 1rem;
}


/* Header & Footer Styles */

header, footer {
    background-image: url(/images/dark-texture.jpg);
    background-repeat: repeat;
}

header .flex-row {
    justify-content: space-evenly;
    align-items: center;
    min-height: 10rem;
}

header a {
    color: var(--light);
    font-family: CormorantUnicase;
    font-size: 2rem;
    text-transform: uppercase;
}

header img {
    width: 30rem;
}

#copyright-row {
    display: flex;
    justify-content: center;
    padding: 3rem;
}

#copyright-row p {
    font-size: 1.25rem;
    font-family: Cormorant;
    padding: 0 1rem;
}

footer {
    padding-top:1rem;
}

footer a {
    color: var(--gold);
}

footer p {
    color: var(--light);
    font-family: montserrat;
}

footer li a {
    font-family: montserrat;
    color: var(--light);
    font-size: 1.5rem;
}

footer ul {
    column-count: 2;
}

footer h3 {
    color: var(--gold);
    font-family: CormorantUnicase;
    font-size: 2rem;
    padding-bottom:.5rem;
}

#address {
    color: var(--light);
    font-family: montserrat;
    font-size: 1.5rem;
}

#phone {
    font-size: 2.5rem;
    font-weight: 700;
}

#social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#social a {
    display: flex;
    align-items: center;
    padding-right: 3rem;
}

#social p {
    padding-left: 1rem;
}

.divider {
    padding: 1.5rem 0;
}

.footer-button {
    background-color: #b3b3b3;
    color: var(--dark);
    font-family: Cormorant;
    font-size: 1rem;
    padding: 1rem 3rem;
    margin-top: 1rem;
    display: inline-block;
    border: none;
}

#mc_embed_signup_scroll {
    display: flex;
    align-items: flex-end;
}

.mc-field-group {
    flex-grow: 1;
    max-width: 100%;
}

.mc-field-group input {
    background-color: var(--light);
    border-radius: 0;
    border: none;
    padding:1rem;
    margin-right: 1rem;
    font-family: montserrat;
    font-style: italic;
    width: 85%;
}

/* Main Area Styles */

main {
    background-image: url(/images/light-texture.jpg);
    background-repeat: repeat;
    min-height: 80vh;
    padding-top: 1rem
}

p {
    color: var(--dark);
    font-family: Cormorant;
    font-weight: 300;
    font-size: 1.5rem;
}

.gold-button {
    background-color: var(--gold);
    color: var(--dark);
    padding: 1rem 3rem;
    display: block;
    font-size: 1.5rem;
    text-align: center;
    font-family: Cormorant;
    text-decoration: none !important;
}

.hollow-gold-button {
    border: solid 2px var(--gold);
    color: var(--dark);
    padding: 1rem 3rem;
    display: block;
    font-size: 1.5rem;
    text-align: center;
    margin:2rem 0;
    font-family: Cormorant;
    text-decoration: none !important;
}

.hollow-gold-button:hover {
    background-color: var(--gold);
    filter: invert(0);
}

/* Empty Message Styling */
.empty-workshop {
    text-align: center;
    padding: 10rem;
}

.empty-workshop h3 {
    font-size: 2.5rem;
}

.empty-workshop a {
    color: var(--gold);
}





/* Media Queries */

@media screen and (max-width: 680px) {
    header .flex-row{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }
    header {
        text-align: center;
    }
    #workshops-nav { grid-area: 2 / 1 / 3 / 2; }
    #logo { grid-area: 1 / 1 / 2 / 3; }
    #artisans-nav { grid-area: 2 / 2 / 3 / 3; }

    footer h3 {
        font-size: 3rem;
    }

    #social a {
        padding-right: 10rem;
    }

    .mobile-hidden {
        display: none;
    }

    #hero { height: 39rem; }
}