/* xl - DESKTOP STYLES */ 
   .section-navigator {
            top: 20px;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: center;
        }
        
        .nav-container {
            display: flex;
            gap: 5px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            overflow-x: auto;
            padding: 5px calc(50% - 45px); /* Centers first/last items */
        }
        
        .nav-container::-webkit-scrollbar {
            display: none;
        }
        
        /* Navigation items */
        .nav-item {
            scroll-snap-align: center;
            padding: 8px 10px;
            min-width: 90px;
            border-radius: 15px;
			font-family: "TheWaveSans", Sans-serif!important;
            color: white;
            text-align: center;
            font-size: 14px;
            white-space: nowrap;
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.9);
            flex-shrink: 0;
        }
        
        .nav-item.prev,
        .nav-item.next {
            opacity: 0.3;
        }
        
        .nav-item.current {
            opacity: 1;
            transform: scale(1);
            font-family: "TheWaveSans-Bold", Sans-serif!important;
			background-color:#0000002b;
        }
        
        /* Pseudo-elements to center first/last items */
        .nav-container::before,
        .nav-container::after {
            content: "";
            flex: 0 0 calc(50% - 45px);
        }


.mouse-1-header{
	position: absolute;
    left: 50%;
    top: 7%;
}
    
/* 01. BASE BUTTON STYLES */
.btn-container-header button {
  border: none !important;
  background: transparent !important;
  appearance: none !important;
  width: 30px;
  height: 30px;
  cursor: default !important;
}

.scroll-text-header {
  color: white;
  font-size:10px;
	    margin: 0px;
}

.btn-container-header button:focus {
  outline: none !important;
}

/* 03. ANIMATIONS */
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 1;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* 04. BUTTON SCROLL STYLE */
.btn--scroll-header {
  position: relative;
  width: 40px;
  height: 40px;
}

.btn--scroll-header::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid #50E69B;
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}

/* Create multiple ripples with delays */
.btn--scroll-header::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid #50E69B;
  border-radius: 50%;
  animation: ripple 2s ease-out infinite 0.5s;
}

/* 05. ARROW ICON */
.icon-arrow-header {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  margin-top: -2px;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 06. CONTAINER ALIGNMENT */
.btn-container-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* xs - SMARTPHONE PORTRAIT STYLES */ 
@media (max-width: 479px) {
     .section-navigator {
              top: 20px;
              left: 0;
              right: 0;
              z-index: 1000;
              display: flex;
              justify-content: center;
          }
          
          .nav-container {
              display: flex;
              gap: 5px;
              scroll-snap-type: x mandatory;
              scrollbar-width: none;
              overflow-x: auto;
              padding: 5px calc(50% - 45px); /* Centers first/last items */
          }
          
          .nav-container::-webkit-scrollbar {
              display: none;
          }
          
          /* Navigation items */
          .nav-item {
              scroll-snap-align: center;
              padding: 0px 10px;
              min-width: 65px;
              border-radius: 15px;
  			font-family: "TheWaveSans", Sans-serif!important;
              color: white;
              text-align: center;
              font-size: 10px;
              white-space: nowrap;
              transition: all 0.3s ease;
              opacity: 0;
              transform: scale(0.9);
              flex-shrink: 0;
          }
          
          .nav-item.prev,
          .nav-item.next {
              opacity: 0!important;
          }
          
          .nav-item.current {
              opacity: 1;
              transform: scale(1);
              font-family: "TheWaveSans-Bold", Sans-serif!important;
  			background-color:#0000002b;
          }
          
          /* Pseudo-elements to center first/last items */
          .nav-container::before,
          .nav-container::after {
              content: "";
              flex: 0 0 calc(50% - 45px);
          }
  
  
  .mouse-1-header{
  	position: absolute;
      left: 50%;
      top: 7%;
  }
      
  /* 01. BASE BUTTON STYLES */
  .btn-container-header button {
    border: none !important;
    background: transparent !important;
    appearance: none !important;
    width: 30px;
    height: 30px;
    cursor: default !important;
  }
  
  .scroll-text-header {
    color: white;
    font-size:10px;
  	    margin: 0px;
  }
  
  .btn-container-header button:focus {
    outline: none !important;
  }
  
  /* 03. ANIMATIONS */
  @keyframes ripple {
    0% {
      transform: translate(-50%, -50%) scale(0.3);
      opacity: 1;
    }
    70% {
      opacity: 0.7;
    }
    100% {
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0;
    }
  }
  
  /* 04. BUTTON SCROLL STYLE */
  .btn--scroll-header {
    position: relative;
    width: 40px;
    height: 40px;
  }
  
  .btn--scroll-header::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #50E69B;
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
  }
  
  /* Create multiple ripples with delays */
  .btn--scroll-header::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #50E69B;
    border-radius: 50%;
    animation: ripple 2s ease-out infinite 0.5s;
  }
  
  /* 05. ARROW ICON */
  .icon-arrow-header {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    margin-top: -2px;
    width: 8px;
    height: 8px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  /* 06. CONTAINER ALIGNMENT */
  .btn-container-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

