/*
Theme Name: Alpine Bowls
Theme URI: https://alpinebowls.com
Author: Your Name
Description: A Vermont-style theme for selling bowls.
Version: 1.0
*/

body {
    margin: 0;
}

.trocchi-regular {
  font-family: "Trocchi", serif;
  font-weight: 400;
  font-style: normal;
}

.swiper {
    width: 100%;
    height: 80vh; /* 80% of the viewport height */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale();
}

.header-container {
    display: flex;
}

.main-navigation {
    margin: 0 auto;
    display: flex;
    ul {
        display: flex;
        li {
            list-style: none;
            padding: 0 12pt;
            font-family: "Roboto", sans-serif;
            font-size: 12px;
            font-optical-sizing: auto;
            font-weight: 400;
            border-right: solid 1px #000000;
            align-content: center;

            a {
                color: #000000;
                text-decoration: none;
            }
            a:hover {
                text-decoration: underline;
            }
        }
        li:last-child {
            border: none;
        }
    }
}

#hero {
    position: relative;
}

#backstory {
    position: absolute;
    z-index: 999;
    top: 0;
}

.main-navigation h2 {
    margin: 0;
    padding: 12pt 22pt;
    font-weight: 800;
    font-style: normal;
    font-size: 18px;
    font-family: "Young Serif", serif;
}

.section {
    margin: 0 auto;
    padding: 12pt 0 24pt 0;
    background-color: #3A4F3111;
    h2 {
        font-family: "Trocchi", serif;
    }
    p {
        font-family: 'Roboto';
    }
    .content {
        max-width: 800px;
        margin: 0 auto;
        h2 {
            font-family: "Young Serif";
        }
    }
}

.colored {
    background-color: #8DBBD1;
}

.swiper-shade {
    background-color: #3A4F3188;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

#collection  {
    ul {
        display: flex;
        list-style: none;
        gap: 12px;
        padding: 0;
        li {
            display: flex;
            flex-grow: 1;
            min-height: 128px;
            border: solid 4px #FFFFFF;
            -webkit-box-shadow: 0px 4px 15px -8px #3A4F31; 
            box-shadow: 0px 4px 15px -8px #3A4F31;
            a {
                width: 100%;
                background-size: cover;
            }
        }
    }
}

.site-footer {
    background-color: #3A4F31;
    p {
        padding: 12pt;
        margin: 0;
        font-family: "Young Serif";
        color: #FFFFFF;
        text-align: center;
    }
}