
/* Fade on load */
.is-loaded .fade-in-on-load {
  opacity: 1;
  transform: none;
}

/* Scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(10px);          /* move visually without affecting layout */
  transition: opacity .2s ease, transform .9s ease;
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Optional: gentle stagger for list items */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .7s ease;
}
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .10s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .22s; }
/* add more nth-childs if needed */

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in-on-load,
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Reset & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
  
html, body {
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}


.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.info-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

  
/* Header container */
.main-header {
  top: 0;
  z-index: 1000;
 
}
  
/* Top nav bar */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 1rem 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
  
.logo img {
  height: 50px;
}
  
.nav-links a.active,
.mobile-nav-links a.active {
  color: #9B876C; /* <-- change to your highlight color */
  font-weight: bold;
}


/* Info/contact bar */
.info-bar {
  background-color: #9B876C;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .7rem;
  color: white;
  position: fixed;
  top: 85px;
  left: 0;
  z-index: 999;
  width: 100%;
}
  
.info-link {
  text-decoration: none;
}

.info-link:nth-child(2) {
  margin-left: 55px;
  margin-right: 55px;
}

.icon {
  font-size: 1.5rem;
  
}

.label {
  display: none;
}

/* Mobile hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
  
/* Fullscreen mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  /* Animation start state */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active {
  pointer-events: auto;
}

  
.mobile-menu.active {
  display: flex;
}
  
.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
  
.mobile-nav-links ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
  
.mobile-nav-links li {
  margin: 1rem 0;
}
  
.mobile-nav-links a {
  color: white;
  font-size: 1.85rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: "Alumni Sans SC", sans-serif;
}
  
.mobile-nav-links a:hover {
  text-decoration: underline;
}



/*HOME HERO IMAGE*/
.hero {
  position: relative;
  background-image: url('images/Northwest_View_Building.png'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 78px;
}
  
.hero-overlay {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7); /* semi-transparent black */
  padding: 30px 50px;
  text-align: center;
  color: white;
  width: 80%;
  max-width: 450px;
}
  
.hero-overlay h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  font-family: "Alumni Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
  
.hero-overlay p {
  margin-top: 10px;
  font-size: 18px;
  color: #9B876C; 
  font-family: "Alumni Sans SC", sans-serif; 
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/*END HOME HERO IMAGE*/

/*HOME INTRO*/
.home-intro-container {
  display: grid;
  grid-template-columns: 1fr; /* mobile: one column */
  gap: 30px;
  max-width: 1280px; /* stop growing past 1400px */
  margin: 0 auto; /* center horizontally */
  padding: 40px 20px; /* spacing on mobile and edges */
  align-items: center;
  margin-top: 65px;

}


.home-intro-text h2 {
  font-family: "Alumni Sans SC", sans-serif; 
  font-weight: 600;
  font-size: 27px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.home-intro-text p {
  font-family: "Inter", sans-serif;
  color: rgb(117, 116, 116);
  font-size: 18px;
  margin-left: 17px;
  margin-right: 20px;
}

.intro-btns {
  display: flex;
  flex-direction: column;
  gap: 10px; /* space between buttons */
  padding: 0 10px;
  margin-top: 25px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px;
  font-size: 23px;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  font-family: "Alumni Sans SC", sans-serif;
  transition: 0.3s ease;
}

/* Primary (filled) button */
.btn-primary {
  background-color: #9B876C;
  color: white;
  border: 2px solid #9B876C;
}

.btn-primary:hover {
  background-color: #555;
}

/* Outline (secondary) button */
.btn-outline {
  background-color: transparent;
  color: #000;
  border: 1.5px solid #151515;
}

.btn-outline:hover {
  background-color: #555;
  color: white;
  border: 2px solid #9B876C;
}

home-intro-image-stack {
  display: grid;
  position: relative;
}

 .image-top {
  width: 50%;
  top: 30px;
  left: 10px;
  z-index: 1;
  position: relative; 
  box-shadow: 10px 10px #9b876cc0 ;

}

.image-bottom {
  width: 80%;
  margin-left: 70px;
  position: relative;
}

/* HOME SLIDESHOW*/

#homeslide-section {
  background-color: #F3F0ED;
  padding: 20px 10px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

#homeslide-text {
  margin-top: 15px;
  max-width: 1280px;
}

#homeslide-text h2 {
  font-family: "Alumni Sans SC", sans-serif; 
  font-weight: 600;
  font-size: 27px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

#homeslide-text h3 {
  font-family: "Alumni Sans SC", sans-serif; 
  font-size: 20px;
  letter-spacing: 1px;
  font-style: italic;
  color: #817460;
  font-weight: 500;
  text-transform: uppercase;
}



#homeslide-section p {
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  margin-left: 17px;
  margin-bottom: 30px;
  margin-right: 20px;
  color: rgb(117, 116, 116);
}

.slideshowContainer {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  margin-top: 20px;
}

.slideshowContainer img {
  width: 100%;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2d2d2cb9;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 1.5rem;
  border-radius: 70%;
  z-index: 999; /* ensures buttons are always above fading images */
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 5px;
}

.next {
  right: 5px;
}

.round {
  border-radius: 70%;
}

#home-floorplan {
 display: grid;
  grid-template-columns: 1fr; /* mobile: one column */
  gap: 30px;
  max-width: 1400px; /* stop growing past 1400px */
  margin: 0 auto; /* center horizontally */
  padding: 40px 30px; /* spacing on mobile and edges */
  align-items: center;
}

#home-floorplan img {
  width: 100%;
}

.homeFpImage {
  position: relative;
}

.homeFpImage a {
  position: absolute;
  top: 5px;
}

.homeFpText h2 {
  margin-bottom: 20px;
  font-family: "Alumni Sans SC", sans-serif; 
  font-weight: 600;
  font-size: 27px;
  text-transform: uppercase;
}

.homeFpText p {
  font-size: 18px; 
  color: rgb(117, 116, 116);
  font-family: "Inter", sans-serif;
  margin-left: 10px;
}

.floorplanbtn {
  background-color: #9B876C;
  color: white;
  margin-top: 20px;
  position: relative;
}

.floorplanbtn:hover {
  background-color: #555;;
}

.fpbtn-primary {
  background-color: transparent;
  color:black;
  border: 2px solid #9B876C;
  margin-top: 20px;
}

.fpbtn-primary:hover {
  background-color: #555;
  color: white;
}

.sectionBackground {
  background-color: #F3F0ED;
}

.community-section {
  position: relative;
  align-items: center;
  justify-content: center;
  display:grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  padding: 20px 30px;
  max-width: 1400px;
  padding-top: 35px;
}

.comSectionImg img {
  width:150px;
  height: auto;
}

.comSectionImg {
  display:flex;
  flex-wrap: wrap;
  gap:15px;
  justify-content: center;
  margin-bottom: 20px;
  max-width: 650px;
}


.comSectionText {
  background-color: white;
  box-shadow: -1px 6px 20px #595959a7;
  padding: 20px;
  max-width: 670px;
  margin-bottom: 25px;
}

.comSectionText h3 {
  font-family: "Alumni Sans SC", sans-serif; 
  font-size: 20px;
  letter-spacing: 1px;
  font-style: italic;
  color: #817460;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.comSectionText h2 {
  font-family: "Alumni Sans SC", sans-serif; 
  font-weight: 600;
  font-size: 27px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.comSectionText p {
  font-size: 18px; 
  color: rgb(117, 116, 116);
  font-family: "Inter", sans-serif;
  margin-left: 10px;
}

.comSectionBtn {
  background-color: #9B876C;
  color: white;
  margin-top: 20px;
}

.comSectionBtn:hover {
  background-color: #555;
}


/*FLOORPLANS HERO IMAGE*/
.fp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}

.fp-hero > * {
  position: relative;
  z-index: 2; /* So your text stays above the overlay */
}

.fp-hero {
  position: relative;
  background-image: url('images/fp_hero.jpeg'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  top: 80px;
  align-items: center;
  justify-content: center;
}

.fp-hero-container {
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 35px;
  font-family: "Alumni Sans", sans-serif;
}

/*END FLOORPLAN HERO IMAGE*/

/*FLOORPLAN INTRO */
#introFpSection {
   display: grid;
  grid-template-columns: 1fr; /* mobile: one column */
  max-width: 1280px; /* stop growing past 1400px */
  margin: 0 auto; /* center horizontally */
  padding: 40px 20px; /* spacing on mobile and edges */
  align-items: center;
  margin-top: 65px;
}

.introFpText h2 {
  font-family: "Alumni Sans SC", sans-serif; 
  font-weight: 600;
  font-size: 27px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.introFpText h3 {
  font-family: "Alumni Sans SC", sans-serif; 
  font-size: 21px;
  letter-spacing: 1px;
  font-style: italic;
  color: #6d6251;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.introFpText p {
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  color: rgb(117, 116, 116);
  font-size: 18px;
  margin-left: 17px;
  margin-right: 20px;
}

.introFpimg {
  width: 85%;
  margin-top: 30px;
  margin-left: 25px;
  position: relative; 
  box-shadow: 10px 10px #9b876cc0 ;
}

.layouts {
  display: grid;
  grid-template-columns:  1fr;
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
  padding: 20px;
}

.availabilityBtn {
  background-color: #9B876C;
  color: white;
  margin-top: 20px;
}
.layouts  h2{
  font-family: "Alumni Sans SC", sans-serif; 
  font-weight: 600;
  font-size: 27px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.layout-Desc {
  font-size: 18px; 
  color: rgb(117, 116, 116);
  font-family: "Inter", sans-serif;
  margin-left: 10px;
  margin-bottom: 20px;
}


.floorplan-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;              /* controls space between table, image, button */
  align-items: start;     /* prevent stretching */
  margin-top: 40px;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}

/* Keep images sane */
.layoutImg img {
  width: 100%;
  height: auto;
  display: block;
}

.floorplan-options h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.floorplan-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.floorplan-table th {
  font-weight: 500;
  padding: 12px 0;

  font-size: 15px;
  border-bottom: 1px solid #d6d4d2;
}

.floorplan-table td {
  padding: 12px 0;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #d6d4d2;
}

.layoutImg img{
  width: 100%;
  margin-top: 20px;
}
/*END FlOORPLAN INTRO DIV*/

/*LIFESTYLE HERO IMAGE*/
.lifestyle-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}

.lifestyle-hero > * {
  position: relative;
  z-index: 2; /* So your text stays above the overlay */
}

.lifestyle-hero {
  position: relative;
  background-image: url('images/Courtyard_1.png'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.lifestyle-hero-container {
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 35px;
  font-family: "Alumni Sans", sans-serif;
}
/*END LIFESTYLE HERO IMAGE*/



/*COMMUNITY HERO IMAGE*/
.community-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}

.community-hero > * {
  position: relative;
  z-index: 2; /* So your text stays above the overlay */
}

.community-hero {
  position: relative;
  background-image: url('images/downtown-op.jpg'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  margin-top: 100px;
  justify-content: center;
}

.community-hero-container {
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 35px;
  font-family: "Alumni Sans", sans-serif;
}
/*END COMMUNITY HERO IMAGE*/



/*COMMUNITY CONTENT*/
.com-photogrid {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.community-intro {
  display: grid;
  grid-template-columns: 1fr; /* mobile: one column */
  max-width: 1280px; /* stop growing past 1400px */
  margin: 0 auto; /* center horizontally */
  padding: 25px 20px; /* spacing on mobile and edges */
  align-items: center;
  margin-left: 10px;
}

.community-intro h3{
  color: #8f7c63;
  font-family: "Alumni Sans", sans-serif;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
}

.community-intro h2 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Alumni Sans", sans-serif;
  margin-top: 5px;
}

.community-intro p {
  font-size: 18px; 
  color: rgb(117, 116, 116);
  font-family: "Inter", sans-serif;
  margin-left: 10px;
  margin-top: 10px;
  margin-right: 30px;
  margin-bottom: 30px;
}

.community-intro a {
  color: #725f46;
  text-decoration: none;
  font-weight: 600;
}

.com-eats h3 {
  margin-top: 30px;
}

.com-background {
  background-color: #9c876c55;
  width: 100%;
}

.com-list {
  margin-top: 10px;
  margin-bottom: 20px;
}

#community-locations h3 {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  margin-bottom: 10px;
}



#community-locations h2 {
  font-family: "Alumni Sans", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 auto;
}

#community-locations li {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  min-width: 250px;
  margin-left: 10px;
}

#community-locations ul li span {
  font-weight: 600;
}

#community-locations ul {
  margin-bottom: 30px;
}

/* Base list spacing */
.com-list { margin: 0; padding-left: 1.25rem; }
.com-list li { margin: .4rem 0; }

/* OPTION A: gold star bullets */
.com-list.stars li::marker {
  content: "✦  ";
  color: #9B876C;           /* your gold */
  font-size: 1.1em;
}

#community-locations {
  padding: 35px 35px;
  display: grid;
  grid-template-columns: 1fr;

}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
}

.column img {
  margin-top: 12px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/*CONTACT US HERO IMAGE*/
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}

.contact-hero > * {
  position: relative;
  z-index: 2; /* So your text stays above the overlay */
}

.contact-hero {
  position: relative;
  background-image: url('images/Courtyard_2.png'); /* Replace with actual image path */
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.contact-hero-container {
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 35px;
  font-family: "Alumni Sans", sans-serif;
}
/*END CONTACT US HERO IMAGE*/

/*CONTACT PAGE FORM AND CONTENT*/
/* Screen-reader only helper used by the legend */
/* Screen-reader only helper */
.form-content {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1280px;
  margin: 0 auto;
  margin-top: 20px;
  margin-left: 20px;
}

.contact-text {
  margin: 10px;
}



.contact-text h3{
  font-family: "Alumni Sans SC", sans-serif; 
  font-size: 20px;
  letter-spacing: 1px;
  font-style: italic;
  color: #817460;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-text h2 {
  font-family: "Alumni Sans SC", sans-serif; 
  font-weight: 600;
  font-size: 27px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-text p {
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  color: rgb(117, 116, 116);
  font-size: 17px;
  margin-left: 17px;
  margin-right: 20px;
}

.sr-only {
  position: absolute;
  left: -9999px;
}

.ue-form-wrap {
  margin: 0 auto;
  width: 85%;
  margin-bottom: 30px;
  margin-top: 20px;
 
}

.ue-form-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 1.25;
  margin: 0 0 16px;
  font-family: "Alumni Sans SC", sans-serif; 
  text-transform: uppercase;
}

.ue-form-wrap label,
.ue-form-wrap input,
.ue-form-wrap button,
.ue-form-wrap .err,
.ue-form-wrap .toast {
  font-family: 'Inter', sans-serif;
}

/* Checkbox list */
.ue-checks {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.ue-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #4a4a4a;
  font-size: 18px;
}

.ue-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ue-check .box {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e5e5;
  border-radius: 3px;
  background: #ffffff;
}

.ue-check input:checked + .box {
  border-color: #000000;
  background: linear-gradient(#817460, #817460) center/70% 70% no-repeat #ffffff;
}

/* Fields */
.ue-field {
  margin: 20px 0;

}

.ue-field label {
  display: block;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  margin: 6px 0 8px;
  font-family: "Alumni Sans SC", sans-serif; 
  text-transform: uppercase;
}

.ue-field .req {
  color: #b00000;
}

.ue-field input {
  width: 100%;
  height: 52px;
  border: 3px solid #e5e5e5;
  border-radius: 3px;
  background: #ffffff;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}

.ue-field input:focus {
  border-color: #000000;
  box-shadow: 0 0 0 2px #00000015;
}

.ue-field .err {
  display: none;
  margin-top: 6px;
  color: #c62828;
  font-weight: 600;
  font-size: 13px;
}

.ue-field.is-error input {
  border-color: #c62828;
  background: #fff7f7;
}

.ue-field.is-error .err {
  display: block;
}

/* Button */
.ue-actions {
  margin-top: 8px;
}

.ue-btn {
  appearance: none;
  border: 0;
  border-radius: 3px;
  background: #817460;
  color: #ffffff;
  cursor: pointer;
  padding: 14px 24px;
  font-weight: 800;
  letter-spacing: .6px;
  font-size: 18px;
}

.ue-btn:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}

/* Toast (notification) */
.toast {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
  display: none;
  transition: opacity .25s ease;
}

.toast.ok {
  display: block;
  background: #e8f7ed;
  color: #1a7f3b;
  border: 1px solid #bfe6cc;
}

.toast.err {
  display: block;
  background: #ffefef;
  color: #a11b1b;
  border: 1px solid #f2c5c5;
}

.contact-text a {
  color:#71634f;
}

/*FOOTER STYLES*/

.footer-bg {
  background-color: #000;
  width: 100%;
}

.site-footer {       
  color: #969595;             /* light text */
  padding: 80px;
  text-align: left;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  position: relative;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 25px;
}

.footer-section {
  margin-bottom: 30px;
}

.footer-section p {
  font-family: "Inter", sans-serif;
  line-height: 25px;
}
.footer-section h3 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: "Alumni Sans", sans-serif;
}

.contact-block {
  font-style: normal; /* removes default italics */
  line-height: 1.5;
  
}

.contact-block a {
  color: white;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
}

.footer-section a {
  color: inherit;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

  
@keyframes menuFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
  

/* Responsive behavior */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
    .menu-toggle {
    display: block;
  }
}


@media (min-width: 768px) {
   .nav-links {
    display: none;
  }
  
    .menu-toggle {
    display: block;
  }

  .label {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 26px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-style: normal;
    font-family: "Alumni Sans SC", sans-serif;
  }

  .label:hover {
    text-decoration: underline;
  }
  .icon {
    font-size: 1.5rem;
    margin-right: 13px;
  }

  .home-intro-container {
      grid-template-columns: 1fr 1fr; /* text left, images right */
  }

  /* Intro text section */
  .home-intro-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 310px;
    margin-left: 30px;
  }

  .home-intro-text h2 {
    font-size: 28px;
    margin-top: 20px;
  }

  /* Buttons container */
  .intro-btns {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start; 
    margin-left: -20px;/* left align */
  }



  #homeslide-text {
    margin-left: 15px;
  }

  #homeslide-text h2 {
    font-size: 28px;

  }

  #homeslide-text p {
    margin-top: 25px;
  }




  #home-floorplan {
    grid-template-columns:  1fr 1fr;
    gap: 40px;
  }

  .homeFpText {
    display: grid;
    gap: 20px;
    margin-top: 10px;
    width: 300px;
  }

  .homeFpText h2 {
   font-size: 28px;
  }

  .homeFpImage {
    grid-column: 2/4;
    position: relative;
    display:inline-block;
  }

  .homeFpImage img {
    display: block;
    width: 100%;
    height: auto;
  }

  .homeFpImage a {
    position: absolute;
    top: 20px; /* distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
  } 


  #home-floorplan p {
    grid-column: 1/2;
    grid-row: 2/3;
    font-family: "Inter", sans-serif;
    color: rgb(117, 116, 116);
    font-size: 18px;
  }

  .fpbtn-primary {
    width: 70%; 
  }

  .introFpText {
    margin-top: 25px;
    margin-left: 25px;
  }

  .introFpImg img {
    width: 50%;
    margin-left: 200px;
  }

    .floorplan-options {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    row-gap: 12px;
    margin-left: 100px;
    max-width: 1280px;
  }

  .floorplan-text {        /* table + heading */
    margin-top: 70px;
  }

  .layoutImg {             /* image on the right */
    grid-column: 2/3;
    width: 80%;

  }

  .availabilityBtn {       /* button under the table, same left column */
    grid-column: 1;
    grid-row: 2;
    justify-self: start;   /* left-align the button */
     /* tweak if you want tighter spacing */
  }

  .contact-text {
    margin-left: 40px;
  }

 .site-footer {
    flex-direction: row;
    gap: 50px;
  }

  .footer-logo {
    display: none;
  }

   #community-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  #community-locations h2 {
    grid-column: 1/3;
    margin: 0 auto;
    margin-bottom: 30px;
  }

}
  

  
@media (min-width:1024px) {
    .nav-links {
    display: flex !important;
    flex-direction: row;
    gap: 2rem;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .info-link {
    font-size: 20px;
  }  

  .nav-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    left: 100px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "Alumni Sans SC", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    letter-spacing: 1px;
  }
  
  .nav-links a:hover {
    color: rgb(151, 150, 150);
  }

  .nav-links a {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .label {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .home-intro-text {
    width: 450px;
    gap: 25px;
  }

  .home-intro-text h2 {
    font-size: 32px;
  }

  .home-intro-text p {
    font-size: 17px;
  }

  #homeslide-text h2 {
    font-size: 32px;
  }

  #homeslide-text h3 {
    font-size: 23px;
  }

  .amenitiesbtn {
    left: 130px;
  }

  .homeFpText {
    width: 480px;
  }

  .homeFpText h2 {
    font-size: 30px;
  }


  .intro-btns a {
    font-size: 25px;
  }

  .community-section {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .comSectionImg img{
    width: 40%;
  }

  .community-intro {
    margin: 0 auto;
  }
  
  #community-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;

  }

  #community-locations ul li {
    width: 450px;
  }

  #community-locations h2 {
    grid-column: 1/3;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .homeFpText a {
    font-size: 25px;
  }

  .homeFpText p {
    font-size: 16px;
  }

  #introFpSection {
    grid-template-columns: 1fr 1fr;
  }

  .introFpText h2 {
    font-size: 32px;
  }

  .layouts h2 {
    margin-top: 25px;
    margin-left: 30px;
    font-size: 33px;
  }

  .layout-Desc {
    margin-left: 30px;
  }

  .introFpText h3 {
    font-size: 26px;
}

  .floorplan-table th {
    font-size: 18px;
  }

   .floorplan-table td {
    font-size: 17px;
  }

  .floorplan-text a {
    font-size: 25px;
    letter-spacing: 1px;
    }

  .introFpImg img {
    width: 80%;
    margin-left: 60px;
  }

  .floorplan-options {
    grid-template-columns: 1fr 1fr;
  }

  .form-content {
    margin: 0 auto;
    margin-top: 30px;
  }

  .contact-text {
    margin-left: 50px;
  }

  .footer-logo {
    display: inline-block;
  }
}


@media (min-width: 1400px) {
  .home-intro-text h2 {
    font-size: 35px;
  }

  #homeslide-text h2 {
    font-size: 35px;
  }

   .home-intro-text p {
    font-size: 20px;
  }

  #homeslide-text h3 {
    font-size: 25px;
  }
  
  #homeslide-text p {
    font-size: 20px;
  }


  .homeFpText {
    width: 600px;

  }
  .amenitiesbtn {
    left: 300px;
  }

  .form-content {
    max-width: 1280px;
  }

  .site-footer {
    justify-content: center;
    margin: 0 auto;
  }
}