#navbar {
    z-index: 11; /* Ensure it's above other content */
    background: transparent !important;
    
}

#navbar-placeholder {
  background:transparent;
}
.navbar-toggler {
  background-color: #f3f1df !important; 
  z-index: 12; /* Ensure it's above other content */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}


#logo-image {
    transition: transform 0.5s ease; 
  }

#logo-image:hover {
  transform: scale(1.2); /* Scale the image on hover */
}


.nav-link {
  transition: font-size 0.4s ease;
  color: #f3f1df; 
}

.nav-link:hover {
  font-size: 1.25rem;
}


.svg-icon {
    fill: currentColor;
    transition: transform 0.5s ease; 
}

.svg-icon:hover{
    transform: scale(1.2);
}
/* Styles when the navbar is scrolled */



/* Center the navbar items horizontally on larger screens */
@media (min-width: 992px) {
  .navbar-nav {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      color: #f3f1df; 
  }
  .navbar .nav-link {
    color: #f3f1df !important; 
    transition: font-size 0.4s ease;
  }
  #navSupportedContent {
    background-color: #f3f1df;
    color: rgb(33, 37, 41);
  }
  .navbar-scrolled .nav-link {
    color: rgb(33, 37, 41)!important; /* Color when scrolled */
  }
  
  .navbar-scrolled svg {
    fill: rgb(60, 60, 60); /* Color when scrolled */
  }
}

/* Stack the navbar items vertically under the toggle button on smaller screens */
@media (max-width: 991px) {
  
  

  .navbar-nav {
      position: sticky!important;
      top: 0;
      transform: none;
      margin-top: 1rem;
  }
  .navbar .nav-link {
    color: rgba(var(--bs-dark-rgb)) !important; 
    transition: none;
    font-size: 3rem;
    margin: 1rem;
  }
  .navbar-scrolled svg {
    fill: rgb(60, 60, 60); /* Color when scrolled */
  }

  .letter {
    font-size: 3rem;
  }

    
  
  #navbarSupportedContent{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 10;
  }
  #navbarSupportedContent.show {
    opacity: 1;
    visibility: visible;
}
.nav-card{
  background-color: #f3f1df;
  border-radius: 10px;
  z-index: 11;
  padding: 3rem;
  border: 2px solid white; /* Regular border */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5)

}
#logo-image {
  visibility: hidden;
}
#social-media {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  margin-left: 0;
}
}

