/* *{
  outline: 1px solid red;
  } */

/* Navigation */
.navbar {
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed; /* Non-sticky initially */
  top: 4px; /* Keep the 14px gap */
  left:50%;
  transform:translateX(-50%);
  width: calc(100% - 9px);
  border-radius:7px;
  margin:0 auto !important;
  background-color: #17181D; /* Initially transparent */
  padding: 4px 24px;
  transition: background-color 0.4s ease-in-out; /* Add background-color transition */
  box-sizing: border-box;
}

.navbar-logo {
  display:flex;
  flex-direction:column;
  justify-content:center;
  flex-shrink: 0;
}

.navbar-logo img{
  flex-shrink: 0;
}

.navbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-menu {
  display: flex;
  gap:1.25rem;
}

.navbar-menu-item {
  list-style-type: none;
  cursor: pointer;
}

.navbar-menu-item a {
  display: block; /* Make the anchor a block element */
  padding: 1.25rem 0; /* Add padding for clickable area */
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #FAFAFA; /* White text initially */
  text-decoration: none;
  transition: color 0.3s ease-out; /* Transition for color change */
}

.navbar-menu-item a:hover {
  color: #F8CF3E; /* Change color on hover */
}

.menu-item--active a{
  color:#F8CF3E;
  text-decoration:underline;
}

.navbar-right {
  display: flex;
  align-items: center;
  flex-shrink: 0;

}

.navbar-right-list {
  display: flex;
  align-items: center;
  gap:1.25rem;
}

.navbar-right-item {
  list-style-type: none;
}

.navbar-right-item a {
  display: block; /* Make the anchor a block element */
  padding: 20px 0; /* Add padding for clickable area */
  font-size: 1em;
  font-weight: 600;
  color: #FAFAFA; /* White text initially */
  text-decoration: none;
  transition: color 0.3s ease-out; /* Transition for color change */
}

.navbar-right-item a:hover {
  color: #F8CF3E; /* Change color on hover */
}

.navbar-right-item .button--begin {
  padding:15px 50px;
  border-radius:60px;
  border:none;
  cursor:pointer;
  font-size:1em;
  font-weight:600;
  color:#fff;
  background:#7851E8;
  transition: all 0.3s ease-out;
  transform: translateY(0);
}

.navbar-right-item .button--begin:hover{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  transform: translateY(-1px);
  color:#fff;
}

/* Footer */
footer{
  margin:0px 30px 30px 30px;
  border-top:2.5px solid #F7F6FA;
  border-bottom:2.5px solid #F7F6FA;
  padding:0;
}
footer .vp-container{
  margin:0 auto;
  padding:60px 0;
}

.vp-footer-logos{
  text-align:center;
}
