/*
Theme Name: BlankSlate
Theme URI: https://opencollective.com/blankslate
Author: Bryan Hadaway
Author URI: https://opencollective.com/blankslate#section-contributors
Description: Donate: https://opencollective.com/blankslate. Learn: https://blankslate.me/. BlankSlate is the definitive WordPress boilerplate starter theme. I've carefully constructed the most clean and minimalist theme possible for designers and developers to use as a base to build websites for clients or to build completely custom themes from scratch. Clean, simple, unstyled, semi-minified, unformatted, and valid code, SEO-friendly, jQuery-enabled, no programmer comments, standardized and as white label as possible, and most importantly, the CSS is reset for cross-browser-compatability, with no intrusive visual CSS styles added whatsoever. A perfect skeleton theme. For support and suggestions, go to: https://github.com/bhadaway/blankslate/issues. Thank you.
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2024.2
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme 2011-2024
BlankSlate is distributed under the terms of the GNU GPL
*/


:root {
    --primary-color: #e7dac0;
    --secondary-color: #3c3c3c;
    --text-color: #3c3c3c;
    --white-text: #fff;
    --button-hover-shadow: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
    --parallax-speed: 0.1s;
    --overlay-color: rgba(0, 0, 0, 0.6);
}

/* Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Landing Section */
.landing-container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.diagonal-section {
    position: absolute;
    width: 60%;
    height: 100%;
    background-color: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 83.4% 100%, 0 100%);
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.parallax-section {
    position: absolute;
    width: 80%;
    height: 100%;
    right: 0;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.parallax-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--parallax-speed) ease-out;
}

/* Grid Items */
.grid-item {
    position: relative;
    height: 50vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.grid-item::before {
    content: '';
    position: absolute;
    inset: 0; /* Shorthand for top, right, bottom, left */
    background-color: var(--overlay-color);
    z-index: 1;
}

.grid-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-speed) ease;
}

.grid-item:hover .grid-background {
    transform: scale(1.05);
}

/* Content Sections */
.content, .grid-content {
    position: relative;
    z-index: 2;
    max-width: 80%;
    line-height: 1.6;
}

.content {
    color: var(--text-color);
    padding: 2em;
}

.grid-content {
    color: var(--white-text);
}

.content-section {
    padding: 5rem 0;
    background:white;
}

#footer{
    padding: 5rem 0;
    border-top:3px solid black;
    background: var(--primary-color);
}
#footertop{
    position: relative;
    margin-top:-71px;
    z-index: 100;
}

.wpgmza_map{
    filter: saturate(0);
    transition:all 0.6s ease;
}
.wpgmza_map:hover{
    filter: saturate(1);
}


/* Typography */
.logo {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    color: var(--white-text);
}

.section-heading {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Images */
.content-image {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    background-color: var(--primary-color);
}

/* Buttons */
.learn-more-btn {
    color: var(--text-color);
    padding: 0.75rem 2rem;
    margin-top: 1.5rem;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid var(--text-color);
    transition: all var(--transition-speed) ease;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--button-hover-shadow);
}

#services{ 
    .learn-more-btn{
    color: var(--white-text);
    border: 2px solid var(--white-text);
    transition: all var(--transition-speed) ease;
    }
}

#slider{ 
    .learn-more-btn{
    color: var(--white-text);
    border: 2px solid var(--white-text);
    transition: all var(--transition-speed) ease;
    }
}

/*effects*/
       .underline-on-scroll {
        display: inline-block;
        position: relative;
        }

        .underline-on-scroll::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--text-color);
            transition: width 0.6s ease-out;
        }

        .underline-on-scroll.active::after {
            width: 100%;
        }
        .swiper {
            width: 100%;
            height: auto;
            aspect-ratio: 16/9;
            position: relative;
            overflow: hidden;
        }
        
        
/* Media Queries */
@media (prefers-color-scheme: dark) {
    :root {
        --button-hover-shadow: rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 768px) {
    :root {
        --diagonal-angle: 85%;
    }

    .diagonal-section {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% var(--diagonal-angle), 0 100%);
    }
    
    .parallax-section {
        width: 100%;
        top: var(--diagonal-angle);
        height: calc(100% - var(--diagonal-angle));
    }

    .content, .grid-content {
        max-width: 95%;
    }

    .grid-item {
        min-height: 80vh;
    }

    .content-section {
        padding: 3rem 0;
    }
    .logo{
        font-size:2em;
    }
    .landing-container{
        min-height:140vh;
    }
    .diagonal-section {
        z-index: 2;
        padding: 1rem;
    }
    .swiper {
        width: 100%;
        height: 60vh;
        aspect-ratio:9/16;
        position: relative;
        overflow: hidden;
    }
    

}



/* Additional responsive form styling */
.form-control, .form-select {
    margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
    .col-md-6 {
        margin-bottom: 2rem;
    }
}