/* CSS */
  :root {
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
  }
  @supports (font-variation-settings: normal) {
    :root { font-family: InterVariable, sans-serif; }
  }
    body, html {
      height: 100%;
      margin: 0;
      /* font-family: 'Segoe UI', sans-serif; */
      font-family: 'Playfair Display', serif !important;
      scroll-behavior: smooth;
    }

    /* Fixed Top Navbar */
.navbar {
  transition: background-color 0.4s ease;
  background-color: rgba(18, 96, 118, 1);
}
.legend-color {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(112, 112, 112);
  border-radius: 4px;
  margin-right: 30px;

}
.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

/* Add a pipe after each nav-item except the last */
.navbar-nav .nav-item:not(:last-child)::after {
  content: "|";
  color: white;
  margin: 0 12px;
  font-weight: 300;
  font-size: 12px;
}


.navbar.scrolled {
  background-color: rgba(18, 96, 118, 1);
}

.navbar-brand, .nav-link {
  color: white !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.logo-img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;
}
    /* Hero Section */
.hero {
  background: url('../images/background/cover_background.jpg') no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Center Logo */
.center-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
  z-index: 5;
}

/* Mobile: Resize logo for smaller screens */
@media (max-width: 768px) {
  .center-logo {
    width: 80%;
    max-width: none;
    margin-left: 10%;
    margin-right: 10%;
  }
}


    /* Contact Section */
    #contact {
      padding: 60px 15px;
      background-color: #f8f9fa;
    }

    .agent-card {
      margin-bottom: 30px;
    }

    footer {
      border-top: 1px solid #ddd;
      font-size: 0.9rem;
      color: #555;
      max-height: 50px;
    }
    .about-section {
        color: white;
    padding: 100px 20px;
    /* background-color: #0559d8; */
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    /* background-image: url('../images/background/black-thread-light.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: top left; */
    font-family: 'Playfair Display', serif;
    background-color: rgba(18, 96, 118);
    }

.about-section h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1a364d;
}

.about-section p {
  font-size: 1.125rem;
  line-height: 1.85;
  color: white;
  max-width: 1140px;
  margin: 0 auto 25px auto;
}

.about-section em {
  font-style: italic;
  color: #162cc0;
}

.about-section .btn-primary {
  background-color: white;
  color: rgba(18, 96, 118);;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.about-section .btn-primary:hover {
  background-color: rgba(18, 96, 118);
  color: #fff;
}


.vision-bar {
  background-color: rgba(18, 96, 118);
  color: white;
  padding: 15px;
  text-align: center;
}
.vision-bar-map {
  background-color: rgba(18, 96, 118);
  color: white;
  padding: 15px;
  padding-bottom: 20px;
  text-align: center;
}

.vision-bar h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}

/* Hover effect for Interactive Lot Map section */
.vision-bar h2 a {
  display: inline-block;
  padding: 8px 16px;
  color: white;
  background-color: transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.vision-bar h2 a:hover {
  color: rgba(18, 96, 118);        /* Blue text */
  background-color: white; /* White background */
  text-decoration: none;
}
/* Typewriter caret for vision-bar headers */
.vision-typing::after {
  content: "│";
  display: inline-block;
  margin-left: 2px;
  animation: vision-caret 1s step-end infinite;
}
@keyframes vision-caret {
  50% { opacity: 0; }
}


.community-plan-image {
  background: url('../images/background/community plan.jpg') no-repeat center center;
  background-size: contain;
  height: 100vh;
  width: 100%;
}

/* Typewriter caret for the Palisades line */
.palisades-typing::after {
  content: "│";
  display: inline-block;
  margin-left: 2px;
  animation: palisades-caret 1s step-end infinite;
}
@keyframes palisades-caret {
  50% { opacity: 0; }
}

.btn-primary {
  background-color: white;
  color: rgba(18, 96, 118);;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: rgba(18, 96, 118);
  color: #fff;
}