:root {
    --gray: #2e2e2e;
    --gold: #e3a215;
    --font: "Roboto Condensed", sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: var(--font), sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1rem;

    padding: 5px;
}

header {
    display: flex;
    flex-direction: column;
    background-color: var(--gray);
    align-items: center;
    padding: 1rem 0;

    img {
        width: 14rem;
    }

    .subtitle {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--gold);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    border-radius: 0 0 5px 5px;
    max-width: 50rem;
    margin: 0 auto 1rem;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;

    a {
        color: black;
        text-decoration: none;
        font-weight: bold;

        &.active {
            text-decoration: underline;
        }

        &:hover {
            color: darkgrey;
        }
    }
}

main {
    text-align: center;
    max-width: 60rem;
    margin: 0 auto;
    padding: 1rem;

    h1 {
        display: none;
    }

    p {
        margin: 1rem 0;
    }

    .statement {
        color: var(--gold);
        font-weight: bold;
        font-size: 1.5rem;
        line-height: 1.5;

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

        &.uppercase {
            text-transform: uppercase;
        }
    }

    .image-cards {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: space-around;
        margin: 3rem 0;

        .image-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;

            img {
                max-height: 12rem;
                border-radius: 5px;
            }
        }
    }

    .button {
        border: 2px solid black;
        border-radius: 5px;
        padding: 1rem 2rem;
        width: fit-content;
        color: black;
        text-decoration: none;

        &:hover {
            background-color: var(--gray);
            color: white;
        }
    }

    figure {
        margin: 2rem auto 3rem;
        max-width: 700px;
    }

    blockquote {
        margin: 0;
        padding: 30px;
        border-left: 4px solid var(--gold);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        font-size: 1.05rem;
        line-height: 1.6;
        color: var(--gray);
        font-style: italic;
    }

    blockquote p {
        margin: 0;
    }

    figcaption {
        margin-top: 1rem;
        font-weight: 600;
        color: var(--gray);
    }

    figcaption::before {
        content: "— ";
    }

    .divider {
        display: flex;
        align-items: center;
        margin: 2rem 0;
    }

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 2px;
        background: lightgray;
    }

    .divider img {
        width: 3rem;
        height: auto;
        margin: 0 0.8rem 0 1.5rem;
        transform: rotate(-45deg);
    }

    hr {
        border: 1px solid lightgray;
        margin-top: 2rem;
    }

    .big-button {
        margin: 2rem auto;
        display: block;
        text-transform: uppercase;
        font-weight: 600;
    }
}

footer {
    display: flex;
    justify-content: center;
    gap: 1rem;

    img {
        height: 2rem;
    }
}

.service-section {
    display: grid;
    grid-template-columns: 15rem 1fr;
    margin-bottom: 3rem;
    padding-top: 3rem;
    gap: 1rem;
    border-top: 1px solid lightgray;

    text-align: left;

    .service-content {
        ul {
            margin-left: 1rem;

            li::marker {
                color: var(--gold);
            }

            .sub-item {
                color: var(--gray);
            }
        }

        .extra-services {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            justify-content: center;
            margin-top: 1rem;
            gap: 1rem;

            li {
                padding: 0.5rem 1rem;
                display: flex;
                justify-content: center;
                align-items: center;
                border-top: 2px solid var(--gold);
                border-bottom: 2px solid var(--gold);
                white-space: nowrap;

            }
        }
    }
}

.contact-methods {
    margin-bottom: 5rem;

    a {
        text-decoration: none;
        color: black;
        font-weight: bold;

        &:hover {
            color: darkgrey;
        }
    }

    div:first-of-type {
        margin-top: 0;
    }

    .contact-method {
        margin: 3rem 0;

        .sub-item {
            display: block;
            color: gray;
            max-width: 30rem;
            margin: 1rem auto 0;
        }
    }
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 0 auto;
    padding: 1rem 2rem 2rem 0;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.visible-mobile {
    display: none;
}

/* Seasonal notice - remove when seasonal content is removed */
.seasonal-notice {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin: 0 auto 1rem auto;
    text-align: center;
    max-width: 80ch;
    display: flex;
    flex-direction: column;
}

.seasonal-notice h2 {
    margin-top: 0;
    color: #fff;
}

.seasonal-notice .button {
    margin-top: 1rem;
    background-color: white;
}

@media (max-width: 768px) {
    .service-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .hidden-mobile {
        display: none;
    }

    .visible-mobile {
        display: block;
    }
}