.navbar-container {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  background-color: var(--dl-color-header);
  /*height: var(--dl-space-space-sixunits);*/
}
.navbar-navbar-interactive {
  width: 100%;
  display: flex;
  max-width: var(--dl-size-size-maxwidth);
  align-items: center;
  padding-top: var(--dl-space-space-oneandhalfunits);
  padding-left: var(--dl-space-space-threeunits);
  padding-right: var(--dl-space-space-threeunits);
  padding-bottom: var(--dl-space-space-oneandhalfunits);
  justify-content: space-between;
}
.navbar-image1 {
  height: 3rem;
}
.navbar-desktop-menu {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
.navbar-links1 {
  gap: var(--dl-space-space-twounits);
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: var(--dl-space-space-twounits);
  flex-direction: row;
  justify-content: flex-start;
}
.navbar-links1 span {
  color: var(--dl-text-color-static);
  -webkit-text-fill-color: var(--dl-text-color-static);
}
.footer-social-icon {
  filter: invert(var(--dl-invert-percentage))
}
.navbar-buttons1 {
  gap: var(--dl-space-space-twounits);
  display: flex;
  align-items: center;
  margin-left: var(--dl-space-space-twounits);
}
.navbar-action11 {
  display: flex;
  flex-direction: row;
}
.navbar-action21 {
  display: flex;
  flex-direction: row;
}
.navbar-burger-menu {
  display: none;
  fill: var(--dl-text-color-static);
}
.navbar-icon1 {
  width: var(--dl-size-size-xsmall);
  height: var(--dl-size-size-xsmall);
}
.navbar-nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.navbar-top {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: var(--dl-space-space-threeunits);
  justify-content: space-between;
}
.navbar-logo {
  height: 3rem;
}
.navbar-close-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-icon3 {
  width: 24px;
  height: 24px;
}
.navbar-links2 {
  gap: var(--dl-space-space-unit);
  flex: 0 0 auto;
  display: flex;
  align-self: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.navbar-links2 span {
  -webkit-text-fill-color: var(--dl-text-color);
}
.navbar-buttons2 {
  gap: var(--dl-space-space-twounits);
  display: flex;
  margin-top: var(--dl-space-space-twounits);
  align-items: center;
}

.bottom-nav {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  /* background: #fff; */
  background: var(--dl-background-color);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  padding: 0;
  /* border-top: 1px solid #ddd; */
  border-top: 1px solid var(--dl-background-color2);
}

.nav-item {
  text-decoration: none;
  color: var(--dl-text-color-contrast);
  text-align: center;
  flex: 1;
  font-size: 12px;
  transition: color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 0;
}

.nav-item svg {
  font-size: 24px;
}

.nav-item.active {
  /* color: #2F3E1F; */
  font-weight: bold;
}

.active-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--dl-text-color-contrast);
  left: 0;
  width: 0;
}

@media (min-width: 768px) {
  .bottom-nav {
      display: none;
  }
}
@media(max-width: 767px) {
  .navbar-navbar-interactive {
    padding-left: var(--dl-space-space-twounits);
    padding-right: var(--dl-space-space-twounits);
  }
  .navbar-desktop-menu {
    display: none;
  }
}
@media(max-width: 479px) {
  .navbar-navbar-interactive {
    padding: var(--dl-space-space-unit);
  }
}

.home-container {
  width: 100%;
  display: flex;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
}

.theme-toggle {
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 50px;
  height: 40px;
  border-radius: var(--dl-radius-radius-buttonradius);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Icon styles with sliding and morphing effect */
.theme-icon {
  transition: transform 0.2s ease, opacity 0.2s ease;
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Sun icon - default position */
.light-icon {
  left: 10px; /* Position left within button */
  opacity: 1;
  transform: translateX(0) scale(1); /* Full size and position */
}
/* Moon icon - initially hidden */
.dark-icon {
  left: 10px; /* Same position to overlap with the sun */
  opacity: 0;
  transform: translateX(40px) scale(0.8); /* Position right and smaller when hidden */
}
[data-theme="dark"] .light-icon {
  opacity: 0; /* Fade out sun */
  transform: translateX(40px) scale(0.8); /* Slide right and shrink */
}
[data-theme="dark"] .dark-icon {
  opacity: 1; /* Fade in moon */
  transform: translateX(0) scale(1); /* Slide into view and full size */
}
/* Light theme adjustments */
[data-theme="light"] .dark-icon {
  opacity: 0; /* Fade out moon */
  transform: translateX(40px) scale(0.8); /* Slide right and shrink */
}
[data-theme="light"] .light-icon {
  opacity: 1; /* Fade in sun */
  transform: translateX(0) scale(1); /* Slide into view and full size */
}
