html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  background-color: #21201c;
  font-family: Arial, sans-serif;
  -webkit-user-select: none;
  user-select: none;
}

body {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display: none;
}

.bio-container {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.navbar {
  font-size: 15px;
  list-style-type: none;
  padding: 0;
  margin: 8px 0 0 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: calc(100% - 40px);
  height: 45px;
  border-bottom: 2px solid #efe6ad;
  text-transform: uppercase;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-left, .navbar-right, .navbar-center {
  gap: 20px;
  opacity: 0;
  animation: slide-nav-in 1000ms ease-in-out forwards;
  animation-delay: 600ms;
}

.navbar-left li:nth-child(3) a{
  font-weight: bold;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.navbar-center {
  text-transform: capitalize;
  position: absolute;
  left: calc(50% - 72.51px);
}

.navbar-center li {
  font-family: 'VincentFont', serif;
  font-size: 29px;
  padding-bottom: 5px;
}

.navbar li {
  list-style-type: none;
}

.navbar li a {
  display: block;
  color: #efe6ad;
  text-decoration: none;
  text-align: center;
}

.navbar-center li a {
  padding: 14px 20px;
}

.navbar-left li:nth-child(2) a:hover,.navbar-left li:first-child a:hover ,.navbar-left li:nth-child(4) a:hover, .navbar-right li a:hover{
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.title-overlay {
  width: 100vw;
  font-size: 5.5vw;
  opacity: 0;
  animation: slide-title-in 850ms ease-in-out forwards;
  animation-delay: 1350ms;
}

.caixa {
  width: 100vw;
  overflow: hidden;
  padding-top:40px;
  position: relative;
  color: #efe6ad;
  top: 58px;
  display: flex;
  height: 10%;
  align-items: center;
  text-align: center;
  font-family: 'VincentFont', serif;
}


.bio-sections {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
  padding-bottom: 200px;
}


.card {
  padding-left:20px;
  padding-right:20px;
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition:filter 300ms, scale 300ms ease;
  filter: brightness(60%);
  animation: slide-card-in 1200ms ease-in-out forwards;
}

.card[data-section="section1"] {
  animation-delay: 1450ms;
}

.card[data-section="section2"] {
  animation-delay: 1850ms;
}

.card[data-section="section3"] {
  animation-delay: 2350ms;
}

.card[data-section="section4"] {
  animation-delay: 2850ms;
}

.background-image {
  width: 100%; 
  height: auto; 
}

.text-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tab-button {
  font-size: 0.9vw;
  color: #efe6ad;
  padding: 0.7vw 0.8vw; /* Adjust these values to your preference */
  text-decoration: none;
  border: 2px solid #efe6ad;
  border-radius: 50px;
  text-align: center;
  transition: background-color 400ms;
}

.tab-button:hover {
  transition: background-color 400ms;
  background-color: rgba(230, 188, 71, 0.3);
  cursor:pointer;
}

.tab-button.active {
  background-color: #efe6ad;
  color: #21201c;
  transition: background-color 400ms;
}

.tab-content {
  display: none;
  font-size: 16px;
  color: #efe6ad;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 600ms ease-in-out;
}


.text {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  position: absolute; 
  top:72%;
}

.text p:first-child {
  margin-bottom: 0;
  font-size: 2.3vw;
  text-align: center;
}


.card.hover-enabled:hover{
scale: 1.05;
filter: brightness(100%);
transition: filter 300ms, scale 300ms ease; 
cursor:pointer;
}

.bio-section {
  padding: 20px;
  width: 100%;
  box-sizing: border-box;

}

.bio-content {
  display: flex;
  align-items: top;
  gap: 40px;
}

.tab-content p:first-child{
  font-weight: bold;
}

.bio-image {
  width: 52%; 
  height: auto;
}

.bio-text {
  width: 100%;
  font-family: Arial, sans-serif;
  color: #efe6ad;
}

.bio-text h2 {
  font-family: 'VincentFont', serif;
  font-size: 3vw;
  margin: 0 0 10px;
}

.bio-text p {
  font-size: 1.05vw;
  line-height: 1.6;
}

.button-up{
  margin-top:10px;
  font-size: 1.8vw;
  display: flex;
}

.button-up a{
  font-weight: normal;
  color: #efe6ad;
  width: 2.6vw;
  height: 2.6vw;
  text-decoration: none;
  border: 2px solid #efe6ad;
border-radius: 50px;
text-align: center;
transition: background-color 400ms;
animation: hover-bounce-up 0.6s ease-in-out infinite paused;
}

.button-up a:hover{
  transition: background-color 400ms;
  background-color: rgba(230, 188, 71, 0.3);
  animation-play-state: running;
}

.button-up {
  top: 810px;
}


