/*
Theme Name: ToddCampbell-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;
    /* overflow: hidden; */
}

.menu li {
    list-style: none;
}

.navbar
{
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

.colorChange .navbar
{
    background-color: white;
}

.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 h2 {
    text-transform: none;
}

.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:#15283E; /* 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 rgb(216, 165, 45);
    outline-offset: -15px;
}

.image-container:hover .hover-overlay {
    opacity: 1;
}

.hover-text {
    color: rgb(216, 165, 45);
    font-size: 1.5rem;
}

/* Begin Brand Styling */

/* ======================================
    BRAND COLOR + TYPOGRAPHY IMPLEMENTATION
    (keeping your exact class names)
====================================== */

.brand-primary {
    background-color: rgb(216, 165, 45);
    color: #fff;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.brand-secondary {
    background-color: rgb(216, 165, 45);
    color: #fff;
}

.brand-accent {
    color: rgb(216, 165, 45);
    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,h2 {
    font-family: 'Cinzel', serif;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1.1;
    color: #2b2b2b;
    letter-spacing: -0.01em;
    margin-bottom: 0.5em;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    line-height: 1.25;
    color: #2b2b2b;
    letter-spacing: -0.005em;
    margin-bottom: 0.75em;
}

h5 {
    font-family: 'Cinzel', serif;
    font-weight: 100;
    text-transform: uppercase;
    line-height: 1.1;
    color: #2b2b2b;
    letter-spacing: -0.01em;
    margin-bottom: 0.5em;
}

p  span{
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 2.4vw, 1.1625rem) !important;
    font-weight: 200;
    line-height: 1.75;
    color: #3a3a3a;
    margin-bottom: 1.25em;
}


/* ======================================
ADDITIONAL SUPPORTING ELEMENTS
====================================== */

/* Buttons using brand tones */
.btn-brand {
    background-color: rgb(216, 165, 45);
    border-color: rgb(216, 165, 45);
    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;
}

.btn-brand:hover {
    background-color: rgb(216, 165, 45);
    border-color: rgb(216, 165, 45);
}

/* 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: rgb(216, 165, 45);
    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: rgb(216, 165, 45);
    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 rgb(216, 165, 45);
    outline-offset: 2px;
}

/* End Brand Styling */
/* Start Footer Styling */
.footer-menu a {
    color: #000000; /* Light text on dark bg */
    text-decoration: none;
  }
  
  .footer-menu a:hover {
    color: #000000;
    text-decoration: underline;
  }
/* End Footer Styling */
