/*[fmt]1A40-1A0A-1*/
/*
Theme Name: wpmb_new

Changes: Gallery changed to SEO friendly URLs and session_start moved

Theme URI: http://tidythemes.com/blankslate/
Description: Based on blankslate 3.0
Author: Geoff Dawson and TidyThemes
License: GNU General Public License | This theme is completely free and open source to use as you like for both personal and commercial projects without any limitations.

Default CSS
*/
*
{
    box-sizing: border-box;
}
BODY 
{
    line-height: 1.2;
    padding: 0;
    border: 0;
    margin: 0;
    /*Prevent IPhone from automatically scaling up the content font*/
    -webkit-text-size-adjust: 100%; 
}
TABLE 
{
    border-collapse: collapse;
    border-spacing: 0;
}
.clear 
{
    clear: both;
}
.hidden
{
    display: none;
}
/* Theme specific CSS */
/* inter-tight-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-tight-v8-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-tight-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/inter-tight-v8-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/manrope-v19-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/manrope-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/manrope-v19-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/manrope-v19-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}:root
{
    --default-text: #000000;
    --link: #5D5C5C;
    --heading: #000000;
    --header-bg: #ffffff;
    --header-border: #625E5E;
    --menu-text: #707070;
    --current-menu-text: #dddddd;
    --mob-top-border: #393939;
    --mob-bottom-border: #636363;
    --mob-text: #838383;
    --main-bg: #ffffff;
    --input-bg: #FFFFFF;
    --input-border: #8c8f94;
    --button-bg: #555555;
    --button-border: #305448;
    --button-text: #FFFFFF;
    --footer-border: #B1B1B1;

    --speed: 0.5s;
}
BODY
{
    background-color: var(--main-bg);
}
*
{
    font-family: Manrope, Verdana, Helvetica, sans-serif;
    color: var(--default-text);
}
#wrapper
{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
#container
{
    flex-grow: 1;
}
P
{
    font-weight: 300;
    line-height: 1.6em;
    letter-spacing: 0em;
}
UL
{
    list-style: none;
    margin: 0;
    padding: 0;
}
A
{
    color: var(--link);
}
IMG
{
    max-width: 100%;
    height: auto;
}
H1, H2, H3, H4, h5
{
    font-weight: 700;
    color: var(--heading);
    letter-spacing: 0.1em;
}
HEADER
{
    background-color: var(--header-bg);
}
#header
{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /*border-bottom: 1px solid var(--header-border);*/
    align-items: flex-end;
    padding-bottom: 40px;
    padding-top: 40px;
}
.site-title a
{
    text-decoration: none;
}
.site-title SPAN
{
    font-weight: 700;
    font-size: 30px;
    color: var(--heading);
    letter-spacing: 0.1em;
}
@media only screen and (max-width: 600px)
{
    .site-title SPAN
    {
        font-size: 20px;
    }
}

/* 
    Menu entries 
*/
#navigation.hidenav
{
    position: absolute;
    left: -2000px;
}
#navigation NAV
{
    display: flex;
    
}
.menu UL
{
    margin: 0;
    padding: 0;
}
.menu LI.current_page_item A
{
    /*color: var(--current-menu-text);*/
}
.menu li
{
    /* Needs to be relative so that sub-menu can be absolute*/
    position: relative;
}
.menu A
{
    text-decoration: none;
    color: var(--menu-text);
    padding: 5px 10px;
    display: block;
    line-height: 20px;
    text-transform: lowercase;
    font-weight: 700;
}
.menu A:hover
{
    color: var(--current-menu-text);
}
#menutoggle
{
    background-image: url(images/menu-black.png);
    height: 24px;
    width: 24px;
    cursor: pointer;
    display: none;
}
#full-menu-content
{
    display: flex;
    flex-wrap: wrap;
}
.sub-menu
{
    text-align: left;
    position: absolute;
    top: 24px;
    left: 0;
    white-space: nowrap;
    background-color: var(--header-bg);
    padding-top: 6px;
    z-index: 999;
    height: 0;
    overflow: hidden;
    transition: all var(--speed) ease;
}
.open .sub-menu
{
    display: block;
}
.menu SPAN.menuarrow
{
    position: relative;
    top: -1px;
    border-style: solid dashed dashed;
    border-color: transparent;
    border-top-color: var(--menu-text);
    display: inline-block;
    border-width: 7px 5px 0;
    padding-top: 1px;
    left: 4px;
}
#mob-menu
{
    height: 0;
    overflow: hidden;
    background-color: var(--main-bg);
    transition: all var(--speed) ease;
}
#mob-menu.rm-mobexpand
{
    overflow: unset;
}
#mob-menu LI
{
    border-top: 1px solid var(--mob-top-border);
    border-bottom: 1px solid var(--mob-bottom-border);
}
#mob-menu A
{
    color: var(--mob-text);
}
#mob-menu SPAN.menuarrow
{
    border-top-color: var(--mob-text);
}
#mob-menu .sub-menu
{
    background-color: var(--main-bg);
}
#mob-menu .sub-menu
{
    padding-top: 0;
    position: relative;
    top: 0;
    margin-top: 0;
}
#mob-menu .sub-menu A
{
    margin-left: 25px;
}

#navigation.rm-mob #menutoggle
{
    display: block;
}
#navigation.rm-mob #full-menu
{
    display: none;
}

#container
{
    width: 90%;
    margin: 3vw auto;
    max-width: 960px;
}
body.home #container
{
    width: auto;
    margin: 0;
    max-width: none;
}
#footer-wrapper
{
    background-color: var(--main-bg);
    border-top: 1px solid var(--footer-border);
}
#footer
{
    width: 90%;
    margin: 0 auto;
    min-height: 60px;
}
#footer-widget
{
    float: left;
    margin-top: 5px;
    font-size: 0.9em;
}
#footer-widget LI
{
    list-style: none;
}
#footer-widget P
{
    margin: 2px 0 0;
    padding: 0;
}
#footer-content
{
    float: right;
    margin-top: 7px;
    font-size: 0.8em;
}
@media only screen and (max-width: 670px)
{
    #footer
    {
        text-align: center;
    }
    #footer-widget
    {
        float: none;
    }
    #footer-content
    {
        float: none;
        font-size: 0.7em;
    }
}
body.home #background
{
    background-image: url('images/back2.jpg');
    background-size: cover;
    position: absolute;
    width: 100vw;
    min-width: 800px;
    height: 100%;
    z-index: -1;
    transform: translateZ(-10px) scale(2);
    
}
body.home #wrapper
{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
}
div.home-header
{
/*    margin-top: 130px;
    margin-bottom: 130px;
    padding: 30px 60px;
*/    
}
div.home-header h1
{
    color: var(--main-bg);
}
div.home-panel
{
    margin-top: 130px;
    margin-bottom: 130px;
    padding: 30px 60px;
    background-color: var(--main-bg);
    text-align: center;
}
@media only screen and (max-width: 600px)
{
    div.home-panel
    {
        padding: 20px 20px;
    }
}

div.home-panel-instagram
{
    margin-top: 30px;
    margin-bottom: 0;
    padding: 30px 60px;
    background-color: var(--main-bg);
    text-align: center;
}
@media only screen and (max-width: 600px)
{
    div.home-panel-instagram
    {
        padding: 20px 20px;
    }
}

div.home-gallery-links
{
    justify-content: space-evenly;
}
div.home-gallery-links .wp-block-column
{
    max-width: 400px;
}
div.home-gallery-links .link-href
{
    text-decoration: none;
}

div.home-gallery-links .link-button
{
    display: inline-block;
    padding: 5px 20px;
    border: 2px solid #fff;
}
/* Override Instagram grid settings */
.home-panel-instagram .gedainstagrid .gi-block
{
    max-width: none;
    margin: 0;
}
.home-panel-instagram .gedainstagrid .gi-items
{
    grid-template-columns: repeat(6, 1fr);
}
@media only screen and (max-width: 800px)
{
	.home-panel-instagram .gedainstagrid .gi-items
	{
		grid-template-columns: repeat(4, 1fr);
	}
}

@media only screen and (max-width: 480px)
{
	.home-panel-instagram .gedainstagrid .gi-items
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

.instagallery
{
    max-width: 600px;
    margin: 0 auto;
}
#mc_embed_signup
{
    margin: 0 auto;
    max-width: 400px;
}
#mc_embed_signup .mc-field-group label
{
    display: block;
    font-size: 0.8em;
    padding-bottom: 5px;
    padding-top: 5px;
}
#mc_embed_signup .mc-field-group input
{   
    display: block;
    background-color: var(--input-bg);
    height: 28px;
    width: 100%;
    padding: 5px;
    border: 1px solid var(--input-border);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.04);
    
}
#mc_embed_signup #mc-embedded-subscribe
{
    min-height: 32px;
    background-color: var(--button-bg);
    border-color: var(--button-border);
    color: var(--button-text);
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    margin-left: 0;
    margin-top: 10px;
}
#mc_embed_signup #mce-success-response,
#mc_embed_signup #mce-error-response
{
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 12px;
    width: 100%;
}
/* Force About screen image to be centered */
@media only screen and (max-width: 550px)
{
    DIV.about-image FIGURE
    {
        float: none !important;
        display: block !important;
        margin: 0 !important;
    }
    DIV.about-image img
    {
        display: block !important;
        margin: 0 auto !important;
        height: auto !important;
    }
}

