/* Website designed by Lucas Catchlove (@lcatchlove) */

:root {
    /* --text-color: #2A371D; */
    --text-color: #131313;
    --bg-color: rgb(232, 223, 203); /* Lancaster Whitewash HC-174 */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: "Arial", sans-serif;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

header {
    text-align: center;
    padding: 1rem;
    overflow: hidden;
}

h1 {
    font-weight: 500;
    line-height: 1;
    margin: 0;
    font-size: 3rem;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

h1::after {
    content: "*";
    position: absolute;
    left: 100%;
    bottom: 0;
    padding-left: 0.2em;
}

a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--text-color);
}

a:hover {
    opacity: 0.7;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.hero-image {
    width: 100%;
    height: auto;
}

.art-credit {
    text-align: center;
    font-size: 0.6rem;
    font-style: italic;
    margin-top: -3.5rem;
    margin-bottom: 3rem;
}

.info-container {
    text-align: center;
    padding: 0 1rem 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.info-container section {
    margin-bottom: 2.5rem;
}

.desktop-only {
    display: none;
}

.business-enquiries {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) and (max-width: 1024px) {
    header {
        padding-top: 4rem;
    }
}

@media (min-width: 768px) {
    .hero-image-container {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-image {
        max-width: 450px;
    }

    .art-credit {
        margin-top: -2rem;
        margin-bottom: 3rem;
    }

    .info-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        max-width: 900px;
        margin: 0 auto;
        padding-bottom: 1rem;
        column-gap: 4rem;
        row-gap: 1rem;
    }

    .info-container section {
        flex: 0 1 auto;
        margin-bottom: 0;
    }

    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }

    .hours {
        text-align: right;
    }

    .contact {
        text-align: left;
    }

    .info-container .business-enquiries {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1025px) {
    h1 {
        font-size: 3.5rem;
    }

    .hero-image-container {
        margin-top: 1rem;
    }
}
