/*
Theme Name: cedarandsage-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: 96.7vh;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

.fillUp {
    flex-grow: 1;
}

.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;
    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);
}

/* Begin Brand Styling */

/* ======================================
    BRAND COLOR + TYPOGRAPHY IMPLEMENTATION
    (keeping your exact class names)
====================================== */

.brand-primary {
    background-color: #9BBBA5;
    color: #fff;
    border: none;
}

.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;
}

/* ======================================
    TYPOGRAPHY
====================================== */

h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    color: #2c2c2c;
    letter-spacing: 0.5px;
    margin-bottom: 0.5em;
}

h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1.3;
    color: #2c2c2c;
    letter-spacing: 0.3px;
    margin-bottom: 0.75em;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3e3e3e;
    margin-bottom: 1em;
}

/* ======================================
ADDITIONAL SUPPORTING ELEMENTS
====================================== */

/* Buttons using brand tones */
.heroBtn,
.btn-brand {
    background-color: #006837;
    border-color: #006837;
    color: #fff;
    border-radius: 6px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.heroBtn:hover,
.btn-brand:hover {
    background-color: #004b2e;
    border-color: #004b2e;
}

/* Card styles to reflect quality/craftsmanship */
.communityCard {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.communityCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Section helpers */
.section {
    padding: clamp(48px, 6vw, 96px) 0;
}

.section-dark {
    background-color: #004b2e;
    color: #fff;
}

.section-light {
    background-color: #f5f5f2;
}

/* Links and hover underlines */
a.link-accent,
a.brand-accent {
    position: relative;
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.25s ease;
}

a.link-accent::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f28c28;
    transform: scaleX(0.15);
    transform-origin: left;
    transition: transform 0.25s ease;
}

a.link-accent:hover::after {
    transform: scaleX(1);
}

/* Accessibility focus outline */
:focus-visible {
    outline: 3px solid #f28c28;
    outline-offset: 2px;
}

/* End Brand Styling */
/* Start Footer Styling */
.footer-menu a {
    color: #f8f9fa;
    text-decoration: none;
  }
  
  .footer-menu a:hover {
    color: #ffffff;
    text-decoration: underline;
  }
/* End Footer Styling */
