/*
Theme Name: VetHomeBuilder-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;
}

.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 */

/* =====================================================
   VHB BRAND STYLING – CLEAN / SEMI-LUXURY RESET
   Aligned to Logo (Navy + Gold, Minimal Patriotic)
===================================================== */

/* ======================================
   BRAND COLOR IMPLEMENTATION
====================================== */

.brand-primary {
    background-color: #0b2a4a;
    color: #ffffff;
    border: none;
    box-shadow: 0 1px 3px rgb(210, 210, 210);
}

.brand-secondary {
    background-color: #1c1c1c;
    color: #ffffff;
}

.brand-accent {
    color: #c9a24d;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* Neutral variants for layout backgrounds */
.brand-nutural-primary {
    background-color: #f6f7f8;
    color: #2c2c2c;
}

.brand-nutural-seconday {
    background-color: #ebe6df;
    color: #2c2c2c;
}

/* ======================================
   TYPOGRAPHY
====================================== */

h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    color: #1f1f1f;
    letter-spacing: 0.3px;
    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: #1f1f1f;
    letter-spacing: 0.25px;
    margin-bottom: 0.75em;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #3e3e3e;
    margin-bottom: 1em;
}

/* ======================================
   BUTTONS
====================================== */

.heroBtn,
.btn-brand {
    background-color: #0b2a4a;
    border: 1px solid #0b2a4a;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.75rem 1.35rem;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.heroBtn:hover,
.btn-brand:hover {
    background-color: #081f36;
    border-color: #081f36;
    color: #ffffff;
}

/* ======================================
   CARD STYLES (PORTFOLIO / COMMUNITIES)
====================================== */

.communityCard {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 6px 16px rgb(215, 215, 215);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    background-color: #ffffff;
}

.communityCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgb(200, 200, 200);
}

.communityCard img {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* ======================================
   SECTION HELPERS
====================================== */

.section {
    padding: clamp(48px, 6vw, 96px) 0;
}

.section-dark {
    background-color: #0b2a4a;
    color: #ffffff;
}

.section-light {
    background-color: #f6f7f8;
}

/* ======================================
   LINKS & ACCENTS
====================================== */

a.link-accent,
a.brand-accent {
    position: relative;
    color: #1f1f1f;
    text-decoration: none;
    transition: color 0.25s ease;
}

a.link-accent::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c9a24d;
    transform: scaleX(0.15);
    transform-origin: left;
    transition: transform 0.25s ease;
}

a.link-accent:hover::after {
    transform: scaleX(1);
}

/* ======================================
   ACCESSIBILITY
====================================== */

:focus-visible {
    outline: 3px solid #c9a24d;
    outline-offset: 2px;
}

/* =====================================================
   END VHB BRAND STYLING
===================================================== */

/* End Brand Styling */

/* =====================================================
   VHB HEADER + NAV – FINAL TUNED VERSION
   Matches provided markup exactly
===================================================== */

/* Header wrapper */
header.sticky-top {
    background-color: #ffffff;
    border-bottom: 1px solid rgb(235, 235, 235);
    z-index: 1030;
}

/* Navbar spacing */
header .navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

/* Logo */
.navbar-brand img.nav-img {
    height: 46px;
    width: auto;
}

@media (min-width: 768px) {
    .navbar-brand img.nav-img {
        height: 56px;
    }
}

/* ======================================
   TOGGLER (MOBILE)
====================================== */

.navbar-toggler {
    border: 1px solid rgb(220, 220, 220);
    border-radius: 12px;
    padding: 0.55rem 0.7rem;
    background-color: #ffffff;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 3px solid #c9a24d;
    outline-offset: 2px;
}

/* ======================================
   NAV LINKS (DESKTOP + MOBILE)
====================================== */

.navbar-nav .nav-link {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
    color: #1f1f1f;
    padding: 0.75rem 1rem;
    position: relative;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .current-menu-item > a,
.navbar-nav .current_page_item > a,
.navbar-nav .current-menu-ancestor > a {
    color: #0b2a4a;
}

/* Gold underline accent */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.35rem;
    height: 2px;
    background-color: #c9a24d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .current-menu-item > a::after,
.navbar-nav .current_page_item > a::after {
    transform: scaleX(1);
}

/* ======================================
   DROPDOWNS (WP Bootstrap Navwalker)
====================================== */

.dropdown-menu {
    border: 1px solid rgb(235, 235, 235);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgb(230, 230, 230);
    padding: 0.6rem;
    margin-top: 0.75rem;
}

.dropdown-item {
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    color: #1f1f1f;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgb(246, 247, 248);
    color: #0b2a4a;
}

/* ======================================
   MOBILE COLLAPSE – OFFCANVAS FEEL
====================================== */

@media (max-width: 767px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 85%;
        max-width: 360px;
        background-color: #ffffff;
        padding: 5rem 1.5rem 1.5rem;
        box-shadow: -24px 0 48px rgb(220, 220, 220);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1040;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .navbar-nav .nav-link {
        padding: 0.85rem 0;
        font-size: 1rem;
        text-transform: none;
        letter-spacing: 0.02em;
    }

    .navbar-nav .nav-link::after {
        left: 0;
        right: 0;
    }

    /* Mobile toggler icon contrast for light navbar */
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(11, 42, 74)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
}


/* 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 */
