* {
  margin: 0; 
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: "Aboreto", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  word-spacing: 1.4px;
  background-color: #365B6D;
  color: #15232a;
}

.main-wrapper {
  overflow-x: hidden;
  width: 100%;
}
/* ________FONT CLASSES________ */

.aboreto {
  font-family: "Aboreto", serif;
  font-weight: 400;
  font-style: normal;
}

.afacad {
  font-family: "Afacad", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.hanken {
  font-family: "Hanken Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/* ___________________________ */


/* ________HERO SECTION________ */

.hero {
  position: relative;
  top: 0;
  width: 100%;
  color: #f2f1ec;
  text-shadow: 3px 3px 3px #15232a;
  text-align: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100vh;
}

.hero video {
  object-fit: cover;
  object-position: center;
  z-index: 0;
  height: 100%;
  width: 100%;
}

.hero-text {
  position: absolute;
  top: 50vh;
  right: 6vw;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3vh;
}

.hero-text h1 {
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 400;
}
.hero-text p {
  margin-top: 5vh;
  font-size: clamp(1rem, 2vw, 3rem);
  font-weight: 400;
}
.hero-text a {
  background-color: rgb(69, 69, 69);
  padding: 10px 20px;
  font-family: "Aboreto", serif;
  text-decoration: none;
  color:#f2f1ec;
  font-size: clamp(1rem, 1.6, 3rem);

  transition: ease-out 0.1s;
}
.hero-text a:hover {
  translate: 0 -3px;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.3);
}

.scroll-icon {
  position: absolute;
  background-image: linear-gradient(rgb(255,255,255) 30%, rgb(0,0,0), rgb(255,255,255) 70%);
  background-size: 100% 400%;
  background-clip: text;
  bottom: 8px;
  width: 100%;
  text-align: center;

  animation-name: slideColor;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.scroll-text {
  margin: 0;
  color: transparent;
  font-size: 22px;
  font-weight: 400;
}

@keyframes slideColor {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 0% 100%;
  }
}

/* ___________________________ */

/* ________BIO SECTION________ */
.bio-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10vh 0;

  background-color: #f2f1ec;
}

.bio-section .left-side {
  width: 40vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.5rem;
}

.bio-section .left-side ul {
  list-style-type: square;
  margin-left: 2rem;
}

.bio-section .bio-button {
  background-color: #BECBD2;
  text-decoration: none;
  color: #000000;
  text-align: center;
  padding: 1rem 0;

  transition: 0.2s ease-out;
}

.bio-section .bio-button:hover {
  translate: 0 -0.2rem;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.3);
}
/* ____________________________ */


/* ______SOLD HOMES SECTION______ */
.soldHomes-section {
  background-color: #BECBD2;
  padding: 1vh 1vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.view-more {
  display: block;
  text-align: center;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #264653;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  width: fit-content;
  transition: background-color 0.3s;
}

.view-more:hover {
  background-color: #2a9d8f;
}
/* ______________________________ */

.blank-space-div {
  height: 80vh;
}
/* _______MEDIA QUEREYS_____*/
@media (max-width: 1024px) {
  .hero-header {
    font-size: 60px;
  }
  .hero-subheader {
    font-size: 20px; 
  }

  .bio-section {
    flex-direction: column-reverse;
    justify-content: flex-end;
    padding: 3vh 0;
  }

  .bio-section .left-side {
    padding: 5vh 3vw;
    width: 90vw;
  }

  .bio-section img {
    width: 90vw;
  }
}

@media(max-width: 940px) {
  .hero-text {
    align-items: center;
    top: 30vh;
    text-align: center;
    width: 100%;
    right: 0;
  }
}

@media(max-width: 768px) {
  .hero-header {
    font-size: 40px;
  }

  .hero-subheader {
    font-size: 15px; 
  }

  .bio-text{
    font-size: 8px;
  }
}

@media(max-width: 480px) {
  .hero-header {
    font-size: 40px;
  }

  .hero-subheader {
    font-size: 15px; 
  }
  
}
/* _________________________*/