/*
Theme Name: Engexe
Theme URI: https://engexe.com.au/
Author: Springwood Systems
Author URI: https://www.ssys.com.au
Description: Engexe
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: engexe
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
    text-decoration-thickness: 1px !important;
    text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
    outline-width: 2px;
    outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
    margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
    outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
caption,
figcaption,
p {
    text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
    display: block;
}

/****/
/****/

html {
    scroll-behavior: smooth;
}

header.wp-block-template-part {
    position: fixed;
    top: var(--wp-admin--admin-bar--height, 0);
    left: 0;
    width: 100%;
    z-index: 99;

}

.wpcf7-form input:not(input[type="submit"]),
.wpcf7-form textarea {
    font-size: 1em;
    padding: .5em;
    border-radius: 5px;
    width: 100%;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-family: var(--wp--preset--font-family--manrope);
    box-sizing: border-box;
}

.wpcf7-form input[type="submit"] {
    background: white;
    color: #d03435;
    border: 2px solid white;
    font-size: 1em;
    padding: .5em 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .3s ease-out;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #fffa;
}

.wpcf7-not-valid-tip {
    color: white;
    font-size: smaller;
}

.wpcf7-response-output {
    border: 0 !important;
    border-radius: 5px;
    opacity: 0.7;
    background: white !important;
    color: #d03435 !important;
    margin: 0 !important;
    font-size: smaller;
    padding: .75em 1em !important;
}

@media all and (max-width: 600px) {
    body .is-layout-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media all and (max-width: 780px) {
    body .is-layout-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .responsive-3-img {
        padding: 0 !important;
    }

    .responsive-3-img>.wp-block-group {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2vw;
    }

    .responsive-3-img>.wp-block-group>figure img {
        height: 100% !important;
        object-fit: cover;
    }


    .responsive-3-img>.wp-block-group>.wp-block-group {
        margin: 0 !important;
        gap: 2vw;
    }
}