body {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
.site-nav {
display: flex;
top: 0;
left: 0;
right: 0;
align-items: center;
justify-content: space-between;
background: #111;
color: #fff;
padding: 15px 40px;
position: fixed;
z-index: 1000;
box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.logo { 
font-size: 1.6rem; 
font-weight: bold; 
color: #fff; 
}
.nav-links {
list-style: none;
display: flex;
    gap: 25px; 
    margin: 0; 
    padding: 0;
}
.nav-links a 
{ 
    color: #fff;
    text-decoration: none;
    padding: 6px 12px; 
    transition: color 0.3s ease; 
}
.nav-links a:hover 
{
    color: gray; 
}
.menu-toggle 
{ 
    display: none; 
    background: none; 
    border: none;
    color: #fff; 
    font-size: 1.6rem;
    cursor: pointer; 
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid #222;
    transition: all 0.4s ease;
    box-sizing: border-box;
  }

  .nav-links li {
    width: 100%;
    padding: 12px 20px;
  }

  .nav-links a {
    display: block;
    width: 100%;
  }

  /* When toggled open */
  .nav-links.show {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
  }
}

/* Extra tuning for very small phones */
@media (max-width: 480px) {
  .site-nav {
    padding: 12px 20px;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-links li {
    padding: 15px 20px;
  }

  .menu-toggle {
    font-size: 1.6rem;
  }
}
.property-header {
  text-align: center;
  padding: 40px 20px 20px;
  background: linear-gradient(135deg, #1776d6, #1e40af);
  color: white;
  margin-top: 30px;
  
}

.property-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.property-header .location {
  font-size: 1.1rem;
  opacity: 0.9;
  color: #ffffff;
}

#demoTitle {
    text-align: center;
    align-items: center;
    justify-content: center;
}
.interactive-demo p {
    text-align: center;
    align-items: center;
    justify-content: center;
}
.rent {
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.description {
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
#roads {
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
#contact {
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.property-footer {
  text-align: center;
  padding: 20px;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: black;
  border-top: 1px solid #e2e8f0;
  margin-top: 60px;
}