.text {
  text-align: center;
  color: white;
  -webkit-text-stroke: 1px black; /* For WebKit browsers */
  text-shadow: 
    -1px -1px 0 black,  
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black; /* Fallback for outline effect */
}

body {
  margin: 0;
  padding-top: 49px;
  font-family: Arial, sans-serif;
  color: white;
  position: relative;
  min-height: 100vh;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://blueprintcapitol.com/images/blueprinthome.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0); /* Transparent background */
  min-height: 200vh;
  position: relative;
  z-index: 1;
}

.estate {
  background: rgba(0, 0, 0, 0);
  color: white;
  border: 2px solid black;
  font-size: 20px;
}


button {
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 20px;
  font-size: 24px;
}

#about, #services {
    margin-top: 50px;
    scroll-margin-top: 70px; /* Adjusts scroll position to account for fixed navbar */
}

.topnav {
    background-color: #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
}

.home-link {
    color: white;
    text-decoration: none;
    padding: 20px 0;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 20px 15px;
}

.nav-links a:hover {
    background-color: #555;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 20px 0;
}

.fa-times {
    display: none;
}

.menu-toggle .fa-times {
    display: none;
}

.menu-toggle.active .fa-bars {
    display: none;
}

.menu-toggle.active .fa-times {
    display: block;
}

@media screen and (max-width: 798px) {
  .background {
    background-size: cover;
  }
  .content {
    padding: 10px;
  }
  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: #333;
    flex-direction: column;
    transition: top 0.3s ease;
    padding: 20px 0;
  }

  .nav-links.active {
    top: 40px;
  }

  .nav-links li {
    text-align: left;
    width: 100%;
    padding-left: 20px;
  }

  .nav-links a {
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid #555;
  }

  .menu-toggle {
    display: block;
  }
}

/* p {
  border: 2px solid black;
  border-radius: 20px;
  display: inline-block;
  margin: 10px auto;
  padding: 10px;
  font-size: 24px;
  text-decoration: none;
} */