@font-face {
    font-family: 'Shrimp';
    src: url('shrimp-webfont.woff2') format('woff2'),
         url('shrimp-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Varela';
    src: url('varelaround-regular-webfont.woff2') format('woff2'),
         url('varelaround-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: Varela;
    margin: 0; 
    padding: 0;
    font-size: 0.9rem;
    line-height: 1.3rem;
}

h1, h2, h3, h4, h5 {
    font-family: Shrimp;
    text-transform: uppercase;
    margin: 0;
    line-height: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

p {
    margin: 0;
}

.btn {
    display: inline-block;
    background-color: #000;
    color: #FFF;
    padding: 12px 15px;
    text-align: center;
    border-radius: 8px;
}

.btn.pink {
    background-color: rgb(182, 56, 71);
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px 10px 30px 10px;
}

.full_width, .footer_icons, .footer_links {
    padding: 30px 0 20px 0;
}

header {
    padding: 0;
}

header .container {
    padding: 20px 10px;
}

.contact h3 {
    margin-top: 15px;
}

#map {
    height: 300px;
    min-width: 400px;
}

.about {
    padding: 30px 0;
}

.about p, .escape p {
    margin-bottom: 12px;
}

.about img {
    border-radius: 10px;
}

.pink-zone {
    background-color: rgb(182, 56, 71);
    color: #FFF;
}

.black-zone {
    background-color: #000;
    color: #FFF;
    display: block;
}

.two-cols {
    display: flex;
    flex-direction: column;
}

.two-cols img {
    display: block;
    width: 100%;
}

.main_logo img, .footer_logo img {
    display: block;
    width: 93px;
}

header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

header nav {
    display: flex;
    flex-direction: column;
}

header nav a {
    display: block;
    padding: 5px 10px;
}

.under_header {
    position: relative;
    min-height: 140px;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #FFF;
}

.pic_overlay {
    background-color: #811b27;
    opacity: 0.7;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0; 
    z-index: 1;
}

.under_header .container {
    z-index: 2;
    padding: 40px 10px;
}

.home_under_header {
    max-width: 500px;
}

.home_under_header h2 {
    margin-bottom: 18px;
    font-size: 1.1rem;
}

.home_under_header h2 > img {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: 5px;
}

.home_under_header p {
    text-align: center;
    margin: 30px 0;
}


main h1 {
    margin-bottom: 10px;
}

main h2 {
    font-size: 1.6rem;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
}


.grid-sizer,
.grid-item { width: 50%; }

.grid-item {
    display: block;
}

.gallery-item {
    max-width: 100%;
    display: block;
    box-sizing: border-box;
    border: 1px solid #000;
}

.products_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(max(150px,calc(25% - .9375em)),1fr));
    column-gap: 1rem;
    row-gap: 1rem;
    margin: 10px 0 30px 0;
}

.products_grid img {
    max-width: 100%;
}

.products_grid h3 {
    text-align: center;
}

.ariane {
    margin: 0 0 20px 0;
    font-size: 0.9rem;
}

.product_detail {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.footer_icons {
    background-color: #000;
    color: #FFF;

}

.footer_icons .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_icon {
    max-width: 200px;
    display: block;
    text-align: center;
    font-size: 1rem;
    padding: 10px;
}

.footer_icon img {
    width: 100px;
}

.footer_links {
    background-color: rgb(182, 56, 71);
    color: #FFF;
}

.footer_links .container {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.footer_links a {
    padding: 5px 10px;
    display: block;
}

.social-link {
    border-radius: 4px;
    padding: 8px 15px 8px 8px;
    font-size: 1.2rem;
    text-align: center;
    display: inline-block;
    margin: 3px 10px 5px 0;
    color: #FFF;
}

.social-link.fb {
    background-color: rgb(8, 102, 255);
}

.social-link.insta {
    background-color: rgb(240, 0, 117);
}

@media only screen and (min-width: 500px) {

    header nav {
        flex-direction: row;
    }

    
    .footer_links .container {
        flex-direction: row;
        align-items: start;
        text-align: left;
    }
}

@media only screen and (min-width: 700px) {

    .home_under_header h2 {
        font-size: 1.5rem;
    }

    .product_detail {
        flex-direction: row;
    }

    .product_detail img {
        margin-right: 20px;
    }

    .footer_icons .container {
        flex-direction: row;
        justify-content: space-around;
    }

    .grid-sizer,
    .grid-item { width: 25%; }

    .two-cols {
        flex-direction: row;
    }

    .img-col-left {
        margin-right: 20px;
    }

    .img-col-right {
        margin-left: 20px;
    }

    .map-col {
        padding-left: 20px;
    }
}