/* ________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: var(--font-size-title);
  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 {
  padding: 10vh 5vw;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  font-size: var(--font-size-m);

  background-color: #f2f1ec;
}

.bio-section .left-side {
  display: flex;
  flex-direction: column;
  max-width: 550px;
  gap: 2rem;
}

.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;
  font-size: var(--font-size-l);

  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);
}

@media(max-width: 768px)
{
  .bio-section figure {
    display: none;
  };
}
/* ____________________________ */


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

@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; 
  }
}

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

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