* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}
a {
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
/* Ensure H1 styling does not alter appearance */
header h1 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 1.5rem;
}
.nav-links a {
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #007BFF;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.mobile-menu span {
  height: 3px;
  width: 25px;
  background: #333;
  margin-bottom: 4px;
  border-radius: 3px;
}
.nav-links.active {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 60px;
  right: 0;
  width: 200px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-links.active li {
  margin: 1rem 0;
  text-align: right;
  margin-right: 1rem;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero-logo {
  max-width: 90%;
  height: auto;
  margin-bottom: 1rem;
  -webkit-user-drag: none;
  user-select: none;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  display: inline-block;
  background: #007BFF;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #0056b3;
}
section {
  padding: 4rem 0;
}
section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.about p {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.properties .property-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.properties .card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  width: calc(50% - 2rem);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.properties .card:hover {
  transform: translateY(-5px);
}
.properties .card h3 a {
  color: #007BFF;
  font-weight: 600;
}
.properties .card p {
  margin-top: 1rem;
}
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
.contact button {
  background: #007BFF;
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact button:hover {
  background: #0056b3;
}
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
}
footer p {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }
  .properties .card {
    width: 100%;
  }
  .hero-content {
    padding-top: 80px;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
