* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: helvetica;
  font-style: normal;
  font-weight: lighter;
}


.logoHeader {
  width: 80px;
  height: 80px;
  padding: 20px;
}


/* ============================= */
/* NAVBAR                        */
/* ============================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 15px 15px;
  position: relative;
  z-index: 100;
}


.logo a {
  color: rgb(255, 255, 255);
  font-size: 20px;
  text-decoration: none;
  font-weight: bold;
}


.nav-links {
  display: flex;
  gap: 20px;
}


.nav-links a {
  padding: 5px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  transition: 0.6s;
}


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


/* Hamburger */

.hamburger {
  display: none;
  font-size: 28px;
  color: rgb(4, 4, 4);
  cursor: pointer;
  position: relative;
  z-index: 300;
}


#menu-toggle {
  display: none;
}


/* ============================= */
/* VIDEO BACKGROUND              */
/* ============================= */

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}


.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.169);
  z-index: 1;
}


body {
  background: transparent;
}


.page-content {
  position: relative;
  z-index: 5;
}


/* ============================= */
/* OTHER PAGES / SECTIONS        */
/* ============================= */

.image-container {
  position: relative;
  display: inline-block;
  padding: 20px;
}


.image-container img {
  display: block;
}


.overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(44, 44, 44, 0.7);
  color: white;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}


.image-container:hover .overlay {
  background: rgba(0, 0, 0, 0.85);
}


.brokerPhoto {
  padding: 30px;
  border-radius: 500px;
}


.brokerBio {
  text-align: center;
  padding: 30px;
  max-width: 60%;
}


/* ============================= */
/* HERO                          */
/* ============================= */

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}


.mainText {
  font-weight: bold;
  font-family: Helvetica;
  font-size: 60px;
  color: white;
}


.mainTextToo {
  width: 60%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 18px;
  color: white;
  margin-top: 10px;
}


.button {
  display: inline-block;
  background: none;
  border-color: #ffffff;
  padding: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  color: white;
  margin: 20px;
  border-radius: 90px;
}


/* ============================= */
/* PROPERTY CARD                 */
/* ============================= */

.property-card {
  margin: 50px;
  position: relative;
  width: 90%;
  max-width: 500px;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(1, 1, 1, 0.4);
}


.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}


.listing-status {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  color: #333;
  padding: 8px 15px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  z-index: 2;
  border-radius: 30px;
}


.property-details {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.714);
  width: 240px;
  height: 160px;
  padding: 10px;
  z-index: 2;
  border-radius: 20px;
}


.property-details h3 {
  margin: 0 0 10px;
  font-family: "Times New Roman", serif;
  font-size: 40px;
  color: rgb(73, 73, 73);
}


.property-meta {
  display: flex;
  gap: 20px;
  font-family: Arial, sans-serif;
  font-size: 20px;
}


.property-details p {
  padding: 1px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bolder;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* ============================= */
/* OTHER SECTIONS                */
/* ============================= */

.listWithUs {
  margin: 20px;
  background-color: rgba(255, 255, 255, 0.731);
  padding: 40px;
  border-radius: 10px;
}


.messageBox {
  padding: 10px;
}


a {
  text-decoration: none;
}


.perfectNeighborhood {
  padding: 10px;
  font-weight: lighter;
  font-family: Helvetica;
  font-size: 30px;
  color: white;
}


/* ============================= */
/* MOBILE RESPONSIVE             */
/* ============================= */

@media (max-width:768px) {


  /* NAV */

  .navbar img {
    width: 60px;
    height: 60px;
  }


  .hamburger {
    display: block;
  }


  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    display: none;
    padding: 5px 0;
    z-index: 200;
  }


  .nav-links a {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #222;
  }


  #menu-toggle:checked+.hamburger+.nav-links {
    display: flex;
  }



  /* HERO */

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 40px 20px;
  }


  .mainText {
    font-size: 36px;
    line-height: 1.2;
  }


  .mainTextToo {
    width: 90%;
    font-size: 16px;
    line-height: 1.5;
  }


  .hero br {
    display: none;
  }



  /* PROPERTY */

  .property-card {
    margin: 40px;
    width: 100%;
    height: 260px;
  }


  .property-details {
    width: 200px;
    height: auto;
    right: 10px;
    bottom: 10px;
  }


  .property-details h3 {
    font-size: 30px;
  }


  .property-meta {
    font-size: 14px;
    gap: 10px;
    flex-wrap: wrap;
  }


  .property-details p {
    font-size: 11px;
  }


}