
.navbar .text-container{

  text {
    /*! cursor: pointer; */
    
    &:hover  {
/*       text-decoration: underline !important; */
    }
  }

}

g.btn {
    cursor: pointer !important;;
}
body{
  background:rgb(10,10,10);
}
.main_ui_viewer_thumbnails__thumbnail-preview {
  text-align: center;
}

.btn {
  cursor: pointer;
  
  path, text{
    transition: 0.3s;
  }
  &:hover {
    
    path{
      fill:#fff !important;
    }
    text{
      fill:rgb(220, 62, 31) !important;
    }
  }
}

#page2 {
    display: none;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.overlay.active {
  display: flex;
}

.overlay img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}


.card-container {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
}

.card {
  flex: 1;
  opacity: 0;
  transition: all 0.8s ease-out;
}

.card-left {
  transform: translateX(-100px);
}

.card-right {
  transform: translateX(100px);
}

.card.visible {
  opacity: 1;
  transform: translateX(0);
}

.box-grid {
  /*! display: grid; */
  /*! grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
  /*! gap: 20px; */
  /*! padding: 40px 20px; */
  /*! transform-box: border-box; */
  /*! transform-origin: center; */
  font-family: "Berlin Sans FB", sans-serif;
  position: relative;
}

.box {
  opacity: 0;
  transform-origin: center center;
/*   transform: scale(0.5); */
  transition: all 0.6s ease-out;
}

.box.visible {
  opacity: 1;
/*   transform: scale(1); */
}

/* Navigation buttons */
.page-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 12px;
  z-index: 1000;
}

.nav-btn {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: 'Berlin Sans FB', sans-serif;
}

.nav-btn:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-btn--active {
  border-color: rgb(220, 62, 31);
  color: rgb(220, 62, 31);
  background-color: rgba(220, 62, 31, 0.1);
}





@keyframes rock{
  0%{
    transform:rotate(0.5deg);
  }
  50%{
    transform:rotate(-0.5deg);
  }
  100%{
    transform:rotate(0.5deg);
  }
}


#hero-crab {
  animation: rock 10s ease-in-out infinite;
  transform-origin: center top;
  width: 120% !important;
}



.shore1 {
  animation: wave1 7s ease-in-out infinite;
  z-index: 1;
}

.shore2 {
  animation: wave2 7s ease-in-out infinite;
  animation-delay: 1.5s; /* Offset for natural wave rhythm */
  z-index: 2;
}

@keyframes wave1 {
  0%, 100% {
    transform: translateX(0) scale(1);
/*     opacity: 0.7; */
  }
  50% {
    transform: translateX(-14px) scale(1.006);
/*     opacity: 1; */
  }
}

@keyframes wave2 {
  0%, 100% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateX(0px) scale(1.01);
    opacity:1  
  }
}


.fixed-svg {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 300px; /* or whatever you need */
  pointer-events: none; /* Allow clicks to pass through */
  z-index: 100;
  text-align: center;
  display: block;
  border-top: 5px solid #000;
}



  .box {
    /*! background: white; */
    /*! border: 2px solid var(--color-accent-tertiary, #dc3e1f); */
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    cursor: pointer;
  
    align-items: center;
    position: relative;
    
      .word{
      color: #fff;
      font-size: 30px;
    }
    
    &:hover{
      
      .box-content {
        opacity:1;
      }
    }
    
}
  
  .box-title {
    font-family: "Berlin Sans FB", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #dc3e1f;
    text-align: center;
  }
  
  .box-content {
    position: absolute;
    inset: 0;
    padding: 20px 40px;
    background: #fff;
    font-size: 14px;
    color: #0f0f0f;
    line-height: 1.5;
    transition:0.3s;
    opacity: 0;
  }
