@import url("./general.css");


.text {
  color: rgb(0, 0, 0); 
  font-size: var(--font-size); 
  transition: opacity 0.3s ease; 
  opacity: 1; 
  z-index: 200;
  position: fixed;
}

.texttitlesolo {
  color: rgb(0, 0, 0); 
  font-size: calc(var(--font-size) * 0.7); 
  transition: opacity 0.3s ease; 
  opacity: 1; 
  z-index: 200;
  position: fixed;
}

.text:hover {
  opacity: 0.3; 
}

.texttitle {
  color: rgb(0, 0, 0); 
  font-size: var(--font-size); 
  transition: opacity 0.3s ease; 
  opacity: 1; 
  z-index: 200;
  position: fixed;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7vh;
  background-color: rgba(255, 255, 255, 0);
  z-index: 100;
  transition: backdrop-filter 0.3s ease;
}

.top-left-text {
  position: absolute;
  left: 1vw; 
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  display: inline-block;
}

.top-left-text img {
  height: 7vh;
}

.top-left-text-about {
  position: absolute;
  left: 1vw; 
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  display: inline-block;
}

.top-left-text-about img {
  height: 4vh;
}

.top-right-text {
  position: absolute;
  right: 0.5vw; 
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  display: inline-block;
}

.top-right-text img {
  height: 6vh;
}

.logo-animated {
  display: none;
}

.logo-static {
  display: block;
}

.top-left-text:hover .logo-static,
.top-right-text:hover .logo-static,
.top-left-text-about:hover .logo-static {
  display: none;
}

.top-left-text:hover .logo-animated,
.top-right-text:hover .logo-animated {
  display: block;
}

.top-left-text-about:hover .logo-animated,
.top-right-text-about:hover .logo-animated {
  display: block;
}

.top-left-text-date {
  position: absolute;
  left: 20vw; 
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  display: inline-block;
}

.bottom-bar {
  position: fixed;
  width: 100%;
  height: 7vh;
  background-color: rgb(255, 255, 255);
  bottom: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  
}

.scrolling-wrapper {
  display: flex;
  width: max-content;
  animation: scrollText 50s linear infinite;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.scrolling-text p {
  font-size: calc(var(--font-size) * 0.7);
  margin: 0 2vw;
  display: inline;
  opacity: 1;
}

.scrolling-text a {
  transition: opacity 0.3s ease;
}

.scrolling-text a:hover {
  opacity: 0.3;
}


@keyframes scrollText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.custom-link {
  color: inherit; 
  text-decoration: none; 
}

.top-bar-project {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7vh;
  background-color: rgba(255, 255, 255, 0);
  z-index: 150;
}

.menu-about-group {
  position: absolute;
  right: 0.5vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 1vw;
}

.about-inline-link {
  display: none;
  text-decoration: none;
  margin-right: 100px;
}

.menu-about-group:hover .about-inline-link {
  display: inline-block;
}

.about-inline-link img {
  height: 4vh; 
}

.about-inline-link:hover .logo-static {
  display: none;
}
.about-inline-link:hover .logo-animated {
  display: block;
}

@media (orientation: portrait) {
  .scrolling-text p {
    font-size: calc(var(--font-size) * 1.2);
    margin: 0 2vw;
    display: inline;
    opacity: 1;
  }

  .bottom-bar{
    display: none;
  }


  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7vh;
    background-color: rgba(255, 255, 255);
    z-index: 100;
    transition: backdrop-filter 0.3s ease;
  }

  .texttitle {
    font-size: calc(var(--font-size) * 2);
    text-transform: uppercase;
  }

  .top-left-text{
    left: 5%;
  }
  

  .about-inline-link {
    display: inline-block;
    margin-right: 0;
  }

  .menu-about-group:hover .about-inline-link {
    display: inline-block;
  }

 
  .top-right-text-about {
    display: none;
  }
}

@media (max-width: 900px) {
  .about-inline-link {
    display: inline-block;
    margin-right: 0;
  }
  .menu-about-group:hover .about-inline-link {
    display: inline-block;
  }
  .top-right-text-about {
    display: none;
  }
}





