/*
Theme Name: NorthernConstruction-VillaForge
Theme URI: visualwebb.com/villaforge
Description: VillaForge is a modern Bootstrap 5 WordPress theme designed specifically for luxury real estate agents, home builders, and land developers. With its clean layout, elegant typography, and high-end aesthetic, it helps professionals showcase properties, developments, and services with sophistication and impact. Perfect for marketers, developers, and real estate businesses looking to make a strong impression.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Author: VisualWebb
Author URI: visualwebb.com
Tags: real estate, builder, land developer, bootstrap 5, luxury, business, responsive, custom logo, one-column, two-columns
*/
html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

.fillUp {
    flex-grow: 1;
    /* overflow: hidden; */
}

.high-z {
    z-index: 99;
}

.menu li {
    list-style: none;
}

.small-img{
    min-height: 55vh;
    max-height: 55vh;
    object-fit: cover;
    overflow: hidden;
}
 /* on hover overlay */
.image-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05); /* optional zoom effect */
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:black; /* white with transparency */
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    outline: 1px solid #C3BD8C;
    outline-offset: -15px;
}

.image-container:hover .hover-overlay {
    opacity: 1;
}

.hover-text {
    color: #C3BD8C; /* or #333 for softer look */
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7); /* optional for readability */
}

/* Begin Brand Styling */

/* ======================================
    BRAND COLOR + TYPOGRAPHY IMPLEMENTATION
    (keeping your exact class names)
====================================== */

.brand-primary {
    background-color: #006837;
    color: #fff;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.brand-secondary {
    background-color: #004B2E;
    color: #fff;
}

.brand-accent {
    color: #f28c28;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* Neutral variants for layout backgrounds */
.brand-nutural-primary {
    background-color: #f5f5f2;
    color: #3e3e3e;
}

.brand-nutural-seconday {
    background-color: #d8cdc1;
    color: #3e3e3e;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-paragraph {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
}

/* Start Footer Styling */
.footer-menu a {
    color: #f8f9fa; /* Light text on dark bg */
    text-decoration: none;
  }
  
  .footer-menu a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
/* End Footer Styling */

.wpcf7-form .wpcf7-spinner {
    display: none !important;
  }
  
