/*
Theme Name: Senziente Wines Custom Theme
Theme URI: 
Author: Tim Mitra
Author URI: 
Description: A custom block theme
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 0.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sw-custom-theme
Tags: 
*/

/* Navigation */
.navLg { display: none;}
.navSmWrap { margin-right: 2rem !important; }
.navSm rect { height: 3px; }
/* Style for the hamburger menu icon */
.navSmWrap .wp-block-navigation__responsive-container-open svg {
    background-color: #90b2c4;
    height: 28px;
    padding: 0 3px;
    border-radius: 3px;
    margin-top: -8px;
}
.navSm ul {
    width: 100%;
    text-align: center;
}
.navSm ul li {
    /*border-bottom: solid 1px #ccc;*/
    display: block !important; /* Ensure list items stack vertically */
    width: 100%;
    padding: 5px 5px 5px 15px;
}
.navSm button.wp-wp.block-search__button {
    background-color: #10416f !important;
}
.navSm :where(.wp-block-search__inside-wrapper) {
border: none !important;
text-align: center !important;
}
.navSm form {
   margin: auto;
}

/* QR code stack - two images */
.qr-stack {
    position: relative;
    display: inline-block; /* shrinkwrap to image size */
}

.qr-stack .under-qr-code {
    position: relative; /* base image in normal flow */
    z-index: 1;
    display: block;
}

.qr-stack .qr-code {
    position: absolute; /* overlay the top image */
    bottom: 0; /* align to bottom of the under image */
    left: 0;   /* align to left of the under image */
    z-index: 20;
}

/* Recipe details */
 .recipeDetails .ingredients {
    border-bottom: solid 1px var(--wp--preset--color--custom-i-tg-blue);
    border-right: none;
    padding-bottom: 2rem;
 }

@media (min-width: 780px) {
    .navSmWrap { display: none; }
    .navLg { 
        display: flex; /* Show large nav on wider screens */
        padding-right: 2rem; 
    } 
    .menuWrapInner {
        max-width: 1200px;
        margin: auto !important;
    }

    /* Recipe details */
    .recipeDetails .ingredients {
        border-bottom: none;
        border-right: solid 1px var(--wp--preset--color--custom-i-tg-blue);
    }
 
    /* Footer */
    .footColWrap div {
         border-bottom: none !important;
    }
    .footColWrap div:first-of-type > * ,
    .footColWrap div:last-of-type > * {
        text-align: left !important; 
        justify-content: flex-start;
    }
} /* end of media query */

.menuWrap {
    position: relative; 
    z-index: 20;
} 

/* Hero image */ 
.heroWrap {
    position: absolute;
    top: 0;
    z-index: 0; 
    width: 100%;
    padding-top: 200px !important; 
    padding-bottom: 4rem !important;
    } 

.wp-block-seperator {
border-width: 1px;
}
/* contact form  styles */ 
.sw-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem; 
    max-width: 600px;
}
.sw-contact-form input,
.sw-contact-form textarea {
    padding: .5rem;
    font-size: 1rem;
    font-family: var(--wp--preset--font-family--roboto ); 
}  
.sw-contact-form textarea {
    height: 6rem; 
}
.sw-contact-form button {
    background: var(--wp--preset--color--custom-i-tg-blue);
    color: var(--wp--preset--color--custom-sw-really-lt-blue);;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    cursor: pointer;
} 

/*
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
    margin-bottom: 0px;
}
    */

