
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:wght@400;700&family=Montserrat:wght@600&display=swap');

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #000000;
  color: #FFFFFF;
}
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}
a {
  color: #1A73E8;
  text-decoration: none;
}
.hero {
  background: #000000;
  padding: 3rem 1rem;
  text-align: center;
}
.cta-button {
  background: #1A73E8;
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
}
.about, .listings, .testimonials, .contact {
  padding: 3rem 1.5rem;
  text-align: center;
}
.headshot {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1A73E8;
  margin-bottom: 1rem;
}
.property img {
  max-width: 100%;
  border: 3px solid #1A73E8;
  margin-bottom: 0.5rem;
}
.property {
  margin-bottom: 2rem;
}
.lead-magnet-tabbed {
  background: #111;
  color: #FFFFFF;
  padding: 3rem 1.5rem;
  margin: 3rem auto;
  max-width: 900px;
  border: 2px solid #1A73E8;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(26, 115, 232, 0.6);
  text-align: center;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.tab-button {
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 2px solid #1A73E8;
  color: #1A73E8;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}
.tab-button.active {
  background: #1A73E8;
  color: #FFFFFF;
}
.tab-content {
  margin-top: 1rem;
}
.hidden {
  display: none;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.lead-form input, .lead-form button {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
}
.lead-form input {
  width: 80%;
  max-width: 400px;
}
.lead-form button {
  background-color: #0056D2;
  color: #FFFFFF;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}
.testimonial .quote {
  font-style: italic;
}
footer {
  background: #000000;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}
