/* -----------------------------------------------------------
   GLOBAL TOKENS & BOOTSTRAP OVERRIDES
----------------------------------------------------------- */


:root{
  --cnvs-themecolor:        #002d62;
  --cnvs-themecolor-rgb:    0,45,98;
  --cnvs-body-font:         "Montserrat", sans-serif, #212529;
  --cnvs-body-font-color:   #212529;	
  --cnvs-primary-font:      "Montserrat", sans-serif;
  --cnvs-secondary-font:    "Montserrat", serif;
  --brand:                  #002d62;
  --txt:                    #ffffff;
  --txt-dark:               #002d62;
  --radius:                 4px;

  /* Bootstrap colour map */
  --bs-primary:             #002d62;
  --bs-primary-rgb:         0,45,98;

  /* Sticky-header fallback — JS keeps it updated */
  /*--header-height:          80px;*/
}

/* Utility overrides */
.bg-primary      { background:#002d62 !important; }
.text-primary    { color:#002d62 !important; }
.border-primary  { border-color:#002d62 !important; }

/* -----------------------------------------------
   TYPOGRAPHY – fixed the stray brace here ↓
------------------------------------------------ */
#header.sticky-header{ z-index:1300; }

#headingCity{
  color:#fff !important;
  font-family:'Montserrat',sans-serif;
}

body{font-family:'Montserrat',sans-serif;}

/* -----------------------------------------------------------
   STICKY SECONDARY NAV  (the only copy!)
----------------------------------------------------------- */
.sticky-blue-bar{
  position:sticky;                 /* becomes fixed after header */
/*  top:var(--header-height);   */     /* live offset from JS        */
  left:0; right:0;
  width:100%;
  background:#002d62;
  z-index:1050;
  transition:top .25s ease;
}

/* Mobile: hide bar */
@media (max-width:991.98px){
  .sticky-blue-bar{display:none !important;}
}

/* Spacer div no longer needed (kept for legacy markup) */
.sticky-blue-bar-spacer{display:none !important;}

/* -----------------------------------------------
   FORM FIELDS — use for ALL forms everywhere!
------------------------------------------------ */
.ftx-form {
  max-width: 560px;
  margin: 2rem auto;
  padding: 2.5rem 2rem 2rem;
  background: var(--brand);
  color: var(--txt);
  border-radius: var(--radius);
  box-shadow: 0 3px 8px rgba(0,0,0,.50);
  position: relative;
  overflow: hidden;
}
.ftx-form::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("/images/line-texture-2880w-2880w.png") repeat;
  opacity: .25;
  pointer-events: none;
  border-radius: inherit;
}


.ftx-form-commpage {
  
 color: var(--brand);
}

.ftx-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.5rem;
}
.ftx-thanks { display: none; text-align: center; font-size: 1.2rem; }

.ftx-fields { /* wrapper for stacked fields (optional, for visual grouping) */ }

.ftx-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.ftx-field label {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.ftx-field input,
.ftx-field textarea,
.ftx-field select {
  font: 1rem 'Montserrat', sans-serif;
  color: var(--txt-dark);
  background: #fafafa;
  border: 1px solid #d0d0d0;
  border-radius: var(--radius);
  padding: .55rem .75rem;
  transition: border-color .2s, box-shadow .2s;
}
.ftx-field input:focus,
.ftx-field textarea:focus,
.ftx-field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(0,45,98,.15);
  outline: none;
}
.ftx-field select {
  width: 100%;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3E%3Cpath fill='%23002d62' d='M7 8 0 0h14z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: .55rem .35rem;
  appearance: none;
  line-height: 1.4;
  transition: border .15s ease-in-out;
  border: 1px solid #ced4da;
  border-radius: var(--radius, 4px);
}

.ftx-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ftx-inline .ftx-field { flex: 1 1 0; }

.ftx-submit,
.ftx-learnmore,
.ftx-reset-btn {
  display: block;
  width: 100%;
  margin-top: .75rem;
  padding: .75rem 1rem;
  font: 600 1rem/1 'Montserrat', sans-serif;
  letter-spacing: .5px;
  color: #fff;
  background: #ed1c24;
  border: 0;
  border-radius: var(--radius, 8px);
  cursor: pointer;
  transition: background .2s;
}
.ftx-submit:hover,
.ftx-learnmore:hover,
.ftx-reset-btn:hover {
  background: #c60f1c;
}



.req {
  color: #336dff;
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 480px) {
  .ftx-form { padding: 1.75rem 1rem; }
}


/***********************************************************
  SECTION 1: MAP LAYOUT
************************************************************/
.gmap-fullwrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
  background: #fff;
  padding: 0;
  z-index: 1;
}

.gmap-fullwrap{
  position:relative;
  overflow:hidden;
  width:100%;     /* prevents x-overflow when map expands to 100vw */
}


#map {
  width: 100vw;
  height: 650px;           /* Increased from 480px */
  min-height: 400px;       /* Increased from 320px */
  max-width: 100vw;
  display: block;
  background: #fff;
}
/* Taller map on mobile too */
@media (max-width: 991.98px) {
  #map {
    height: 420px;         /* Was 320px, now taller for mobile */
    min-height: 300px;
    max-width: 100vw;
  }
}


/***********************************************************
  SECTION 2: MAP FILTER PANEL (SIDEBAR / OVERLAY)
************************************************************/
.map-filter-panel {
  position: absolute;
  top: 32px;
  right: 40px;
  width: 340px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 2rem 1.25rem 1.25rem 1.25rem;
  z-index: 10;
  min-width: 240px;
  max-width: 96vw;
  transition: top 0.2s, right 0.2s;
}
@media (max-width: 991.98px) {
  .map-filter-panel {
    position: static;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    margin: 0 auto 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 1.15rem 1rem 1rem 1rem;
    top: 0;
    right: 0;
  }
}



/***********************************************************
  SECTION 3: FILTER PANEL FIELDS AND BUTTONS
************************************************************/
.ftx-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.ftx-field label {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.ftx-field select {
  width: 100%;
  padding: .65rem .75rem;
  font: inherit;
  color: #0d1a26;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3E%3Cpath fill='%23002d62' d='M7 8 0 0h14z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: .55rem .35rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  appearance: none;
  line-height: 1.4;
  transition: border .15s ease-in-out;
}
.ftx-field select:focus {
  outline: none;
  border-color: #002d62;
  box-shadow: 0 0 0 2px rgba(0,45,98,.2);
}
.ftx-reset-btn {
  background: #ed1c24 !important;
  color: #fff !important;
  border-radius: 8px;
  border: 0;
  font:600 1rem/1 'Montserrat',sans-serif;
  letter-spacing: .5px;
  cursor:pointer;
  transition:background .2s;
  padding: .75rem 1rem;
  width: 100%;
  margin-top: .75rem;
}
.ftx-reset-btn:hover { background: #c60f1c !important; }


/***********************************************************
  SECTION 4: MAP HINT / TOOLTIP
************************************************************/
.map-hint{
  background:#002d62;
  color:#fff;
  padding:8px 12px;
  font:14px 'Montserrat',sans-serif;
  border-radius: 0 0px 4px 4px;
  box-shadow:0 1px 4px rgba(0,0,0,.25);
}
/***********************************************************
  SECTION 5: INFO WINDOW (GOOGLE MAPS POPUPS)
************************************************************/
.infobox{
  position:relative;
  font:1rem 'Montserrat',sans-serif;
  color:#002b59;
  background:#fff;
  border-radius:12px;
  min-width:240px;            /* a little wider for long names       */
  max-width:360px;
  box-shadow:0 2px 14px rgba(0,0,0,.12);

  /* ⤷ equal padding all sides; no extra room reserved for the ✕      */
  padding:1.5rem 1.5rem 1.25rem;
  overflow:visible;           /* no scrollbars for the normal case   */
}

/* centred navy button inside every infobox */
.infobox .view-btn{
  display:block;
  width:max-content;          /* shrink to text */
  margin:1rem auto 0;         /* centred */
  padding:.55rem 1.25rem;
  font:600 0.95rem/1 'Montserrat',sans-serif;
  color:#fff;
  background:#002d62;
  border-radius:6px;
  text-decoration:none;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
  transition:background .15s;
}
.infobox .view-btn:hover{ background:#ed1c24; }


/* When JS adds class="multiple" (stacked communities) … */
.infobox.multiple{
  max-height:300px;           /* enough for ≈3-4 communities          */
  overflow-y:auto;            /* scrollbar only when really required  */
}
/* hide the grey WebKit scrollbar rail so it feels native */
.infobox.multiple::-webkit-scrollbar{width:0;height:0}

/* thumbnail inside infowindow */
.info-img{
  width:100%; height:auto; border-radius:8px; margin-bottom:12px;
}

/* centred CTA button */
.view-btn{
  display:block; margin:0 auto; width:90%;
  background:#002b59; color:#fff; font:600 15px/42px 'Montserrat',sans-serif;
  text-align:center; border-radius:6px; text-decoration:none;
  box-shadow:0 2px 6px rgba(0,0,0,.12); transition:.15s;
}
.view-btn:hover{background:#003b7d}


/* Custom close button – now sits OUTSIDE the card        */
.close-x{
  position:absolute;
  top:-16px;                   /* pulls it 16 px above the card        */
  right:-16px;                 /* 16 px to the right → outside border  */
  width:34px;height:34px;
  border-radius:50%;
  background:#ed1c24;
  color:#fff;
  border:none;
  font:900 22px/1 'Montserrat',sans-serif;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,.12);
  cursor:pointer;
  z-index:10;
  transition:background .15s;
}
.close-x:hover,
.close-x:focus  { background:#002d62; }

/***********************************************************
  SECTION 6: FORCE-HIDE GOOGLE'S DEFAULT INFO WINDOW X
  (unchanged – keep as-is)
************************************************************/
.gm-ui-hover-effect{display:none!important;}

/***********************************************************
  SECTION 5-bis: OVERRIDE GOOGLE’S INFO-WINDOW WRAPPER
  (add AFTER your existing Section 5 & 6 – no other code changes)
************************************************************/
/* ************************************************************
   SECTION 5-ter · Final cleanup of Google’s wrapper
************************************************************* */
.gm-style-iw-c{
  background:transparent!important;   /* kill 2nd white card   */
  box-shadow:none!important;
  padding:0!important;
  overflow:visible!important;         /* let our red button poke out */
}

/* scroll container: keep content visible, never scroll */
.gm-style-iw-d{
  overflow:visible!important;
  max-height:none!important;
}

/* tiny white corner-pointer Google draws → hide */
.gm-style-iw-t::after,
.gm-style-iw-t::before{ display:none!important; }








 

/* Menu spacing tweaks */
nav.primary-menu ul.menu-container > li.menu-item {
  margin-right: 10px;
}
nav.primary-menu ul.menu-container > li.menu-item > a.menu-link {
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}

nav.primary-menu ul.menu-container > li.menu-item:hover {
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  text-decoration: underline;
}



/* Mega menu: edge-to-edge, horizontal on desktop */
.mega-menu-content .row {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0 24px; /* edge gutters */
}
.mega-menu-content .mega-menu-column.col {
  flex: 1 1 0;
  min-width: 0;
  padding: 8px 18px;
  margin: 0;
  list-style: none;
}

/* Highlight city names in menu */
.mega-menu-title > .menu-link > div {
  color: #002b59 !important;
}

/* Expanded menu tweaks */
.is-expanded-menu .primary-menu,
.is-expanded-menu .menu-container > .menu-item {
  flex: 1 1 auto;
}
.is-expanded-menu .primary-menu.with-arrows .menu-link .sub-menu-indicator {
  font-size: 80%;
}
/* Mega menu: edge-to-edge, horizontal on desktop */
.mega-menu-content .row {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0 24px;
}
.mega-menu-content .mega-menu-column.col {
  flex: 1 1 0;
  min-width: 0;
  padding: 8px 18px;
  margin: 0;
  list-style: none;
}

a.menu-link.city-name {
	
	 font-size:16px !important; color: #002d62
}

a.menu-link.city-name:hover {
	 font-size:16px !important; color: #002d62;
	  text-decoration: underline !important;
}


 

 


/* make .video-wrap a positioning context */
.video-wrap{position:relative; overflow:hidden; height: min(800px, 100vh);

}

/* centre the caption, keep it above the dark overlay */
.video-caption{
  position:absolute;
  inset:0;                          /* stretch full frame */
  display:flex;                     /* centre with flexbox */
  flex-direction:column;
  justify-content:center;
  align-items:center;
  z-index:2;                        /* > .video-overlay (which is z-index:1) */
  color:#fff;
  pointer-events:none;              /* clicks go through to play/pause if needed */
  text-shadow:0 3px 8px rgba(0,0,0,.6); /* keeps it readable */
}

 
.video-wrap::before{
  content:"";
  position:absolute;
  inset:0;               /* top:0; right:0; bottom:0; left:0             */
  width:100vw;           /* full viewport width …                         */
  left:50%;              /* … but anchored from the middle …              */
  transform:translateX(-50%); /* … then shifted another 50 % left → +15 px */
  z-index:-1;            /* sits underneath the <video>                   */
}



/* tweak typography if you like */
@media(max-width:768px){
  .video-caption .display-4{font-size:1.75rem;}
  .video-caption .lead{font-size:1rem;}
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
	color: #002b59;
}

















/* HERO PANEL + SLIDER - UNIVERSAL STYLES */
.communities-panel {
  position: relative;
  overflow: hidden;
  background: #002d62;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  z-index: 2;
  margin: 0;
  display: flex;
  align-items: center;
}

/* Overlay texture - ONLY on the blue panel */
.communities-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("/images/line-texture-2880w-2880w.png") repeat;
  opacity: 0.25;
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}

/* Panel content above texture */
.communities-panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* white → red (#ED1C24) on hover / focus */
.explore-btn:hover,
.explore-btn:focus {
  background: #ED1C24 !important;
  border-color: #ED1C24 !important;
  color: #fff !important;
}



/* Slider wrapper */
#lechefheader_wrapper {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  margin: 0;
  max-width: 100%;
  background: #000;
  padding: 0;
}

/* DESKTOP (≥992px): Floating panel overlays grid-aligned slider */
@media (min-width: 992px) {
  .hero-container { min-height: 440px; }
  .row.position-relative { min-height: 440px; }
  .communities-panel {
    position: absolute;
    top: 50%;
    left: 0;
    width: 570px;
    max-width: 95vw;
    transform: translateY(-50%);
    margin: 0;
    display: flex;
    align-items: center;
  }
  .communities-panel-inner {
    padding: 2.5rem 2.5rem 2rem 2.5rem;
  }
}

/* MOBILE (<992px): Both edge-to-edge, slider first, panel second, NO gap, NO overlay on slider */
@media (max-width: 991.98px) {
  .hero-container { min-height: unset; }
  .row.position-relative {
    display: flex;
    flex-direction: column;
    min-height: unset;
  }
  .col-12,
  .communities-panel,
  #lechefheader_wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .communities-panel {
    position: static !important;
    transform: none !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    z-index: 2;
    display: block;
  }
  .communities-panel-inner {
    padding: 1.75rem 1rem 1.5rem 1rem;
    box-sizing: border-box;
  }
  #lechefheader_wrapper {
    margin-bottom: 0 !important;
    border-radius: 0 !important;
  }
}



 /* Kill the built-in vertical gaps just for this page --------------- */
#slider.slider-element,
#slider .slider-inner,
#rev_slider_k_fullwidth_wrapper,
#rev_slider_k_fullwidth,
#content,
#content .content-wrap,
#content .section:first-child  {

}

/* If you prefer the Canvas utility syntax ------------------------- */
/* <section id="slider" class="slider-element slider-parallax revslider-wrap min-vh-0 mb-0 pb-0"> */
/* <section id="content" class="mb-0 pb-0">                         */



  .inventory-card img          { border-top-left-radius: .75rem; border-top-right-radius: .75rem; }
  .inventory-card .card        { border-radius: .75rem; }
  .inventory-card .badge{
      background:#002d62; font-size:.75rem; padding:7.5px;
  }


/* ——— compact card for the map infowindow ——— */
.map-card{width:260px;font-size:.9rem;position:relative;background:#fff;border-radius:.25rem;box-shadow:0 2px 6px rgba(0,0,0,.15);padding-bottom:2px;}
.map-card img{width:100%;height:120px;object-fit:cover;border-top-left-radius:.25rem;border-top-right-radius:.25rem;}
.map-card .title{font-weight:600;font-size:1rem;margin:.4rem .6rem .25rem;color:#002b59;}
.map-card .city{color:#666;font-size:.85rem;margin:0 .6rem .25rem;}
.map-card .price{font-weight:500;margin:0 .6rem .4rem;}
.map-card a.btn{display:inline-block;margin:.25rem .6rem .4rem;font-size:.8rem;padding:.15rem .5rem;}
/* ▼ our white speech‑bubble pointer */
.map-card::after{content:"";position:absolute;left:50%;bottom:-12px;transform:translateX(-50%);width:0;height:0;border:12px solid transparent;border-top-color:#fff;filter:drop-shadow(0 -2px 4px rgba(0,0,0,.1));}
/* hide Google default pointer / frame */
.gm-style-iw-c,.gm-style-iw-d,.gm-style-iw-tc,.gm-style-iw-s{background:transparent!important;box-shadow:none!important;}
/* remove Google close "x" */
.gm-ui-hover-effect{display:none!important;}
/* close button inside our click‑info card */
.close-x{position:absolute;top:6px;right:8px;width:22px;height:22px;border-radius:50%;background:#ED1C24;color:#fff;font-weight:bold;border:none;line-height:20px;text-align:center;cursor:pointer;}

/* --- existing overrides (keep) --- */
.gm-style-iw-c,
.gm-style-iw-d,
.gm-style-iw-tc,
.gm-style-iw-s {background:transparent!important;box-shadow:none!important;}


@media (max-width: 991px) {
  .mega-menu-content .row {
    flex-direction: column !important;
  }
  .mega-menu-content .mega-menu-column.col {
    width: 100% !important;
    flex: unset !important;
    max-width: 100% !important;
    display: block !important;
  }
}

		.hotspot-link span {
			--cnvs-hotspot-dot-size: 26px;
			position: absolute;
			top: auto;
			left: auto;
			width: var(--cnvs-hotspot-dot-size);
			height: var(--cnvs-hotspot-dot-size);
			text-align: center;
			line-height: calc(var(--cnvs-hotspot-dot-size) - 6px);
			background: #000;
			border-radius: 50%;
			border: 2px solid white;
			color:white;
			font-size: 1rem;
			cursor: pointer;
		}

.badge-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-image-wrapper .sale-flash {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  /* Optional: add shadow for contrast */
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.badge-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  /* Prevents badge from pushing image down */
}


.error404-wrap .error404 {
    line-height: 0.9;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 19vw;
    color: #fff !important;
    opacity: 0.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}



/*Community Detail Styles */
@media (max-width: 991.98px) {
  .nav {
    gap: 12px !important;
    flex-wrap: wrap;
  }
  h1.fw-medium {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }
}

.red-pill-btn {
  background: #ED1C24;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 0 5px 22px;
  transition: all 0.18s cubic-bezier(.4,0,.2,1);
  box-shadow: none;
  display: inline-block;
  text-align: center;
  outline: none;
  line-height: 1.25;
  margin: 0 0 0 0px;
  vertical-align: middle;
 
}
.red-pill-btn:hover,
.red-pill-btn:focus {
  background: #fff;
  color: #002d62;
  border: 0px solid #002d62;
  text-decoration: none;
}

ul.nav {
  gap: 24px;
}

#header, 
#header .primary-menu,
#header .mega-menu-content,
#header .sub-menu-container,
#header .menu-container,
#header .menu-link {
  z-index: 1200 !important;
 
}

  /* Prevent global img rules from affecting Google Maps tiles/markers */
  .gm-style img { max-width: none !important; }

 
.breadcrumb a:hover {
  text-decoration: underline;
}

#map {
  width: 100%;
  height: 560px; /* or whatever height you want */
}

strong {
	
	color:#002d62;
}


div.widget strong {
	
	color:#fff;
}

.fw-bold {
		color:#002d62;
}


 /* =========================================================
   Unified hero overlay + slider sizing (spec & plan)
   ========================================================= */

/* Overlay block (identical on both pages) */
.headline-spec-overlay2,
.headline-plan-overlay2{
  position: absolute;
  z-index: 5;

  /* same Y position */
  bottom: 60px;

  /* anchor flush-left; use padding for the inset */
  left: 0;
  right: auto;
  margin: 0;

  /* background + depth */
  background: rgba(0,45,98,.80);
  box-shadow: 0 1px 6px rgba(0,45,98,.9);

  /* internal spacing — 100px = your desired left inset */
  padding: 12px 18px 16px 100px;

  /* let content determine width (no artificial max) */
  max-width: none;
}

/* Headline (shared) */
h1.headline{
  color:#fff;
  font-weight:800;
  letter-spacing:.5px;
  margin:0;
  padding:0 0 6px 0;
  font-size: clamp(20px, 3.2vw, 28px);
}

/* Secondary line (community/address) — both class names supported */
p.addessoverlay,
.plan-addressoverlay{
  margin:0 0 4px 0;
  padding:0;
  font-size: clamp(16px, 2.4vw, 22px);
  line-height:1.2;
  color:#fff;
}

/* Small spacing under headline to status/price line */
.headline-spec-overlay2 .spec-status,
.headline-plan-overlay2 .display-7{
  margin-top: 2px;
}

/* Tablet/phone tweaks (if you do show the overlay there) */
@media (max-width: 767.98px){
  .headline-spec-overlay2,
  .headline-plan-overlay2{
    bottom: 40px;
    padding: 10px 14px 12px 24px;   /* shallower left inset on small screens */
  }
}

/* =========================================================
   Slider stack: same height; no grey wrapper gap
   ========================================================= */

/* Constrain the entire hero stack to 90vh and hide overflow */
#slider .rev_slider_wrapper,
#slider .rev_slider,
#slider .fullscreenbanner{
  height: 90vh !important;
  max-height: 90vh !important;
  overflow: hidden !important;
}

/* Wrapper should not show its own background or padding */
#slider .rev_slider_wrapper{
  background: transparent !important;
  padding: 0 !important;
}

/*SPEC STATUS OVERLAY */

.spec-overlay .ready { color:#fff; font-weight:800;  letter-spacing:.5px; font-size: clamp(22px, 3.2vw, 44px); padding:0px 0px 0px 0px; margin:0; 
position:absolute; 
color:#fff;   z-index:10;
}	
	
/* Status label with colored dot */
.spec-status{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-weight:700;
  line-height:1.2;
  padding: 0 0 0 5px;
}
.spec-status::before{
  content:"";
  display:inline-block; 
  width:.7rem;
  height:.7rem;
  border-radius:50%;
  background:#94a3b8;            /* default gray */
  box-shadow:0 0 0 2px #fff;     /* white ring so it reads on dark bg */
  flex:0 0 .7rem;
}

/* Map data-status → dot color */
:root{
  --status-green:#22c55e;
  --status-yellow:#f59e0b;
  --status-red:#ED1C24;
}
.spec-status[data-status*="now available" i]::before { background: var(--status-green); }
.spec-status[data-status*="coming soon"  i]::before { background: var(--status-yellow); }
.spec-status[data-status*="under contract" i]::before,
.spec-status[data-status*="sold" i]::before { background: var(--status-red); }
.spec-status.status-sold::before { background: var(--status-red); }

/* Attribute-based (text) */
.spec-status[data-status*="under construction" i]::before { background: var(--status-yellow); }
.spec-status[data-status*="move-in ready" i]::before      { background: var(--status-green); }

/* Class-based (extra safety) */
.spec-status.status-build::before { background: var(--status-yellow); }
.spec-status.status-ready::before { background: var(--status-green); }


/* ===== Mobile floorplan lightbox (shared) ===== */
.fp-close-btn{
  position:absolute; top:12px; right:12px; z-index:1057;
  background:#002d62; color:#fff; border:0; border-radius:999px;
  padding:6px 16px; font-weight:700; line-height:1;
  box-shadow:0 2px 10px rgba(0,0,0,.25);
}
.fp-close-btn:hover{ background:#003c84; }

.fp-lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:999px; border:0;
  background:#002d62; color:#fff; box-shadow:0 2px 10px rgba(0,0,0,.3);
  display:flex; align-items:center; justify-content:center; z-index:1056;
}
.fp-lightbox-prev{ left:12px; } .fp-lightbox-next{ right:12px; }
.fp-lightbox-nav:hover{ background:#003c84; }


/* ===== specdetail Photo Gallery parity with plandetail ===== */

/* Zoom modal: blue "Close" pill pinned top-right */
#pgZoomModal .pg-close-btn{
  position:absolute;
  top:12px; right:12px; left:auto;
  z-index:1057;
  background:#002d62; color:#fff;
  font-weight:700; border:0; border-radius:999px;
  padding:6px 16px; line-height:1;
  box-shadow:0 2px 10px rgba(0,0,0,.25);
}
#pgZoomModal .pg-close-btn:hover{ background:#003c84; }

/* Blue side nav arrows; keep them centered vertically */
#pgZoomModal.lb-modal .lightbox-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:999px;
  background:#002d62; color:#fff; border:0;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 2px 10px rgba(0,0,0,.30); z-index:1056; cursor:pointer;
}
#pgZoomModal .lightbox-prev{ left:12px; }
#pgZoomModal .lightbox-next{ right:12px; }
#pgZoomModal .lightbox-nav:hover{ background:#003c84; }

/* Desktop masonry grid already defined on specdetail; keep it. */
/* Ensure the cards look consistent */
#photogallery-border .photogallery-item img{
  width:100%; height:auto; display:block;
  border-radius:8px; box-shadow:0 6px 16px rgba(0,0,0,.12);
}

/* Mobile carousels: blue circular arrows + dots (match plandetail) */
#photogallery-border .pg-mobile .carousel-control-prev,
#photogallery-border .pg-mobile .carousel-control-next{
  width:auto; top:50%; transform:translateY(-50%);
  opacity:1;
}
#photogallery-border .pg-mobile .carousel-control-prev-icon,
#photogallery-border .pg-mobile .carousel-control-next-icon{
  width:2.25rem; height:2.25rem; border-radius:9999px;
  background-color:#002d62; background-size:60% 60%;
  box-shadow:0 2px 10px rgba(0,0,0,.15);
  filter: invert(1);
}
#photogallery-border .pg-mobile .carousel-indicators{
  position:static; margin:.5rem 0 0;
}
#photogallery-border .pg-mobile .carousel-indicators [data-bs-target]{
  width:8px; height:8px; border-radius:50%;
  background:#002d62; opacity:.35;
  border-top:0; border-bottom:0; padding:0; margin:0 6px;
}
#photogallery-border .pg-mobile .carousel-indicators .active{ opacity:1; }

/* Use the existing filter classes on the container to show/hide sets */
#photogallery-border.filter-elev .photogallery-masonry .photogallery-item[data-type="int"]  { display:none !important; }
#photogallery-border.filter-int  .photogallery-masonry .photogallery-item[data-type="elev"] { display:none !important; }

/* Mobile: your existing CSS expects .pg-mobile-elev / .pg-mobile-int */
@media (max-width: 575.98px){
  #photogallery-border .photogallery-masonry{ display:none !important; }
  #photogallery-border .pg-mobile{ display:none !important; }
  #photogallery-border.filter-elev .pg-mobile-elev { display:block !important; }
  #photogallery-border.filter-int  .pg-mobile-int  { display:block !important; }
}
@media (min-width: 576px){
  #photogallery-border .pg-mobile{ display:none !important; }
}


/* ===== SPECDETAIL Photo Gallery (mobile) — force blue arrows & round dots ===== */

/* Kill Bootstrap's beige sprite + draw our own navy circular buttons */
#photogallery-border .pg-mobile .carousel-control-prev-icon,
#photogallery-border .pg-mobile .carousel-control-next-icon{
  background-image: none !important;  /* remove default tan sprite */
  display: none !important;           /* we'll render with ::after */
}

#photogallery-border .pg-mobile .carousel-control-prev::after,
#photogallery-border .pg-mobile .carousel-control-next::after{
  content: '';                        /* replaced below per side */
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  background: #002d62; color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  font: 900 1rem "Font Awesome 6 Free";  /* FA 6 is already loaded */
  z-index: 2;
}
#photogallery-border .pg-mobile .carousel-control-prev::after { content: '\f053'; } /* fa-chevron-left */
#photogallery-border .pg-mobile .carousel-control-next::after { content: '\f054'; } /* fa-chevron-right */

/* Dots: make them true circles (Bootstrap pills -> circles) */
#photogallery-border .pg-mobile .carousel-indicators{
  position: static !important;
  margin: .5rem 0 0 !important;
}
#photogallery-border .pg-mobile .carousel-indicators [data-bs-target]{
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #002d62 !important;
  opacity: .35 !important;

  /* kill pill styling */
  border: 0 !important;
  padding: 0 !important;
  margin: 0 6px !important;
  flex: 0 0 auto !important;
  box-sizing: content-box !important;
}
#photogallery-border .pg-mobile .carousel-indicators .active{
  opacity: 1 !important;
}


/* ===== ABOUT TAB (both pages) – unify tile icon sizes/overlay look ===== */
.media-tile.is-video::before,
.media-tile.is-lotmap::before,
.media-tile.is-more::before{
  content:""; position:absolute; inset:0;
  background:#002d62; opacity:.75; z-index:1; pointer-events:none;
}
.media-tile .tile-center-icon,
.media-tile .tile-play-icon{
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:center;
  color:#fff; text-shadow:none;
  /* same size everywhere */
  font-size: clamp(30px, 12vw, 90px) !important;
}

/* ===== ABOUT mobile carousel (spec & plan) – navy circular arrows + round dots ===== */
#aboutMobileCarousel .carousel-control-prev-icon,
#aboutMobileCarousel .carousel-control-next-icon{
  background-image:none !important;   /* kill Bootstrap sprite */
  display:none !important;            /* we render with ::after */
}
#aboutMobileCarousel .carousel-control-prev::after,
#aboutMobileCarousel .carousel-control-next::after{
  content:''; display:flex; align-items:center; justify-content:center;
  width:2.25rem; height:2.25rem; border-radius:9999px;
  background:#002d62; color:#fff; box-shadow:0 2px 10px rgba(0,0,0,.15);
  font:900 1rem "Font Awesome 6 Free";  /* FA 6 already loaded */
}
#aboutMobileCarousel .carousel-control-prev::after{ content:'\f053'; }  /* fa-chevron-left  */
#aboutMobileCarousel .carousel-control-next::after{ content:'\f054'; }  /* fa-chevron-right */

#aboutMobileCarousel .carousel-indicators{
  position:static !important; margin:.5rem 0 0 !important;
}
#aboutMobileCarousel .carousel-indicators [data-bs-target]{
  width:8px !important; height:8px !important; border-radius:50% !important;
  background:#002d62 !important; opacity:.35 !important;
  border:0 !important; padding:0 !important; margin:0 6px !important; flex:0 0 auto !important;
}
#aboutMobileCarousel .carousel-indicators .active{ opacity:1 !important; }

/* ===== ABOUT modals (spec) – use the same blue pill close button ===== */
#aboutVideoModal .btn-close.btn-close-white{ display:none !important; }  /* hide default X */
#lotMapModal    .btn-close.btn-close-white{ display:none !important; }

.pg-close-btn, .lb-close-btn, .fp-close-btn{
  position:absolute !important; top:12px !important; right:12px !important; left:auto !important;
  z-index:1057 !important; background:#002d62 !important; color:#fff !important;
  font-weight:700 !important; border:0 !important; border-radius:999px !important;
  padding:6px 16px !important; line-height:1 !important; box-shadow:0 2px 10px rgba(0,0,0,.25) !important;
}
.pg-close-btn:hover, .lb-close-btn:hover, .fp-close-btn:hover{ background:#003c84 !important; }

/* Force ALL generic lightboxes (About grid) to brand blue */
.lb-modal .lightbox-nav{
  background:#002d62 !important;
  color:#fff !important;
  box-shadow:0 2px 10px rgba(0,0,0,.30) !important;
}
.lb-modal .lightbox-nav:hover{ background:#003c84 !important; }
.lb-modal .lightbox-prev{ left:12px !important; }
.lb-modal .lightbox-next{ right:12px !important; }

/* SPECDETAIL About lightbox – force brand arrows (desktop + mobile) */
.lb-modal .lightbox-nav{
  background: #002d62 !important;  /* solid navy */
  color: #fff !important;
  opacity: 1 !important;           /* kill any incidental transparency */
  box-shadow: 0 2px 10px rgba(0,0,0,.30) !important;
}
.lb-modal .lightbox-nav:hover{
  background: #003c84 !important;
}

/* If you want to be ultra-specific to the About modal only: */
#aboutmediagridModal .lightbox-nav{
  background: #002d62 !important;
  color: #fff !important;
  opacity: 1 !important;
}
#aboutmediagridModal .lightbox-nav:hover{ background:#003c84 !important; }

























	
	
	/* ===== Testimonials Slider ===== */
#t-slider { position: relative; }
#t-slider .t-track{
  display: grid; grid-auto-flow: column; gap: 16px;
  grid-auto-columns: 88%;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 2.75rem;  /* room for arrows */
  scroll-behavior: smooth;
}
#t-slider .t-track::-webkit-scrollbar { display: none; }
.t-card{
  scroll-snap-align: start;
  background:#fff; border:1px solid #e6e6e6; border-radius:16px;
  padding:18px 18px 16px; height:100%;
  display:flex; flex-direction:column;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
.t-stars i{ color:#FFC107; margin-right:2px; }
.t-quote{ font-size:1rem; line-height:1.55; color:#333; }
.t-byline{ margin-top:auto; font-weight:700; color:#002d62; font-size:.95rem; }

#t-slider .t-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%;
  background:#002d62; color:#fff; border:0;
  display:none; align-items:center; justify-content:center;
  box-shadow:0 6px 16px rgba(0,0,0,.15); cursor:pointer;
}
#t-slider .t-prev{ left:0.25rem; }
#t-slider .t-next{ right:0.25rem; }
#t-slider .t-nav.disabled{ opacity:.35; pointer-events:none; }

/* responsive columns in the scroller */
@media (min-width: 576px){ #t-slider .t-track{ grid-auto-columns: 62%; } }
@media (min-width: 768px){ #t-slider .t-track{ grid-auto-columns: 48%; } }
@media (min-width: 992px){
  #t-slider .t-track{ grid-auto-columns: 32%; }
  #t-slider .t-nav{ display:flex; }
}
@media (min-width: 1400px){ #t-slider .t-track{ grid-auto-columns: 25%; } }

	 
 


 

/* ===== COMMUNITIES — DESKTOP ONLY (>=992px) ===== */
@media (min-width: 992px){

  /* Open on hover + layer above hero */
  #mm-communities{ position:static !important;}
  #mm-communities > .mega-menu-content{
    position:absolute !important; top:100% !important; left:0 !important; right:0 !important;
    width:100% !important; margin:0 !important; border:0; border-top:2px solid #333 !important;
    padding:5px 0 5px 35px !important;           /* minimal top/bottom; no side inset */
    background-image: linear-gradient(to bottom, #f3f4f4 25%, #ffffff 90%); box-shadow:0 20px 40px rgba(0,0,0,.05) !important;
    display:none !important; opacity:0 !important; visibility:hidden !important; pointer-events:none !important;
    z-index:6000 !important;
  }
	
	
 
	
  #mm-communities:hover > .mega-menu-content,
  #mm-communities.active > .mega-menu-content{
    display:block !important; opacity:1 !important; visibility:visible !important; pointer-events:auto !important;
  }

  /* Full-width grid layout */
  #mm-communities > .mega-menu-content > .row{
    display:grid !important;
    grid-template-columns:repeat(4, minmax(100px,1fr)) !important;
    column-gap:40px !important;
    row-gap:0 !important;
    margin:0 !important; padding:0 !important; width:100% !important;
  }
  /* First column breathing room (your “40”) */
  #mm-communities > .mega-menu-content > .row > .mega-menu-column:first-child{
    padding-left:10px !important;
  }
	
	


  /* City headings — no underline rule, tight spacing */
  #mm-communities .mega-menu-title{ margin:0 0 0px 0 !important; padding:0 !important; }
  #mm-communities .mega-menu-title > a.menu-link{ padding:0 !important; }
  #mm-communities .mega-menu-title > a.menu-link div{
    font-weight:800 !important; color:#002d62 !important; letter-spacing:.2px !important;
    line-height:1.0 !important; margin:0 0 0px 0 !important; position:relative !important;
  }
  #mm-communities .mega-menu-title > a.menu-link div::after{ display:none !important; }   /* kill theme line */

  /* Community list — compact rhythm */
  #mm-communities .mega-menu-title > .sub-menu-container{ margin:0 !important; padding:0 !important; list-style:none !important; }
  #mm-communities .mega-menu-title > .sub-menu-container > .menu-item{ margin:0 !important; padding:0 !important; }
  #mm-communities .mega-menu-title > .sub-menu-container > .menu-item + .menu-item{ margin-top:3px !important; }
  #mm-communities .mega-menu-title > .sub-menu-container a.menu-link{
    padding:4px 0 !important; border:0 !important; min-height:0 !important;
    line-height:1 !important; font-weight:500 !important; color:#1f2937 !important; font-size:.85rem !important;
  }
	
  #mm-communities .mega-menu-title > .sub-menu-container a.menu-link:hover{
    padding:4px 0 4px 10px !important; border:0 !important; min-height:0 !important;
    line-height:1 !important; font-weight:600 !important; color:#002d62 !important; font-size:.85rem !important;
  }	
	
 

  /* Extra space after the LAST community in each city */
  #mm-communities > .mega-menu-content > .row
  > .mega-menu-column
  > .mega-menu-title
  > .sub-menu-container
  > .menu-item:last-child{
    margin-bottom:25px !important;
  }

  /* Pills — compact & baseline */
  #mm-communities .city-status{
    display:inline-block !important; vertical-align:baseline !important; margin-left: 5px !important;
    padding:2px 8px !important; border-radius:999px !important; font-size:.70rem !important; font-weight:700 !important; line-height:1 !important; color:#fff !important;
  }

  /* Safety: no stray column rules from theme */
  #mm-communities .mega-menu-column::before,
  #mm-communities .line-left::after{ display:none !important; }
}

	
	
  /* 4-up on mid desktops (avoid squeeze) */
  @media (min-width:992px) and (max-width:1366px){
    #mm-communities > .mega-menu-content > .row{
      grid-template-columns:repeat(4, minmax(250px,1fr)) !important;
      column-gap:0px !important;
    }
	  
   #mm-communities > .mega-menu-content{
    position:absolute !important; top:100% !important; left:0 !important; right:0 !important;
    width:100% !important; margin:0 !important; border:0; border-top:2px solid #333 !important;
    padding:5px 0 5px 5px !important;           /* minimal top/bottom; no side inset */
    background-image: linear-gradient(to bottom, #f3f4f4 50%, #ffffff 90%); box-shadow:0 20px 40px rgba(0,0,0,.05) !important;
    display:none !important; opacity:0 !important; visibility:hidden !important; pointer-events:none !important;
    z-index:6000 !important;
  }

 
	  
 #mm-communities .mega-menu-title > .sub-menu-container a.menu-link{
    padding:1px 0 !important; border:0 !important; min-height:0 !important;
    line-height:1 !important; font-weight:500 !important; color:#1f2937 !important; font-size:.85rem !important;
  }
	
 #mm-communities .mega-menu-title > .sub-menu-container a.menu-link:hover{
    padding:1px 3px !important; border:0 !important; min-height:0 !important;
    line-height:1 !important; font-weight:600 !important; color:#002d62 !important; font-size:.85rem !important;
  }	
	  
  }



@media (min-width: 991px){
  #mm-communities .is-first-col { padding-left: 0px !important; }
	#mm-communities > .mega-menu-content{padding:5px 0 5px 35px !important;   }
}

/* Right-aligned pill inside standard sub-menus (About dropdown, etc.) */
#primary-menu .menu-link.has-right-pill{
  position: relative;
  padding-right: 8rem;              /* room for the pill */
  z-index: 1;
}
#primary-menu .menu-link.has-right-pill .nav-new-pill{
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  white-space: nowrap;

  /* match mega-menu .city-status look */
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .80rem;
  font-weight: 700;
  line-height: 1;

  /* force brand red + white text so no theme rule can override */
  background: #ED1C24 !important;
  color: #fff !important;

  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  pointer-events: none; /* clicks still hit the link */
}

/* Make first-level dropdowns wider (so long labels don’t wrap) */
@media (min-width: 992px){
  #primary-menu > .menu-container > .menu-item > .sub-menu-container{
    min-width: 380px !important;    /* tweak 420–520px to taste */
  }
}

/* Mobile tweaks for the pill */
@media (max-width: 991.98px){
  #primary-menu .menu-link.has-right-pill { padding-right: 6rem; }
  #primary-menu .menu-link.has-right-pill .nav-new-pill{
    right: .75rem; font-size: .62rem; padding: 2px 7px;
  }
}

 
 