/* === Global Styles === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "Kumbh Sans", sans-serif;
  text-decoration: none;
}

@font-face {
    font-family: "Kumbh Sans";
    src: url("/fonts/KumbhSans.ttf") format("ttf");
    font-display: swap;
}

body {
  margin: 0;
  line-height: 1.6;
  background-color: #F2F2F2;
  font-family: "Kumbh Sans", "Helvetica Neue", Arial, sans-serif;
}



/* === Navigation === */
.navbar {
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
  padding: 0 30px;
}

#navbar__logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
}

#logo__img {
  width: auto;
  height: 60px;
  display: block;
  padding-right: 20px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
}

.navbar__menu > li {
  margin: 0 20px;
}

.navbar__item {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px 20px;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}


.navbar__item:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #f0f0f0;
  transform: scale(1.05);
}

.navbar__item.active {
    background: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
  }


/* === Mobile Navigation === */
@media screen and (max-width: 768px) {
  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    position: fixed;
    top: -25rem;
    left: 0;
    width: 100vw;
    margin: 0;
    padding: 15px;
    opacity: 0;
    transition: all 0.5s ease;
    background: rgba(19, 19, 19, 0.95);
    backdrop-filter: blur(20px);
    z-index: -1;
    height: auto;
  }

  .navbar__menu > li {
    margin: 5px;
  }

  .navbar__menu.active {
    top: 100%;
    width: 100%;
    opacity: 1;
    z-index: 99;
    height: auto;
    font-size: 1.6rem;
  }

  .navbar__item {
    width: 100%;
    text-align: center;
  }

  .navbar__item.active {
    background: rgba(255, 255, 255, 0.15);
    color: #e0e0e0;
  }

  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* === Utility Classes === */
.balken {
  display: flex;
  height: 0.5rem;
  background: #131313cc;
  justify-content: stretch;
  margin-bottom: 6rem;
}

/* === Footer === */
.footer {
  background-color: #343434;
  width: 100%;

}

.footer__container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 2rem;
  max-width: 2000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__left {
  align-items: center;
  text-align: left;
}

.footer__center {
  align-items: center;
  text-align: center;
}

.footer__right {
  align-items: center;
  text-align: right;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  gap: 16px;
  line-height: 1;
}

.footer__logo a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  gap: 16px;
  text-decoration: none;
}

#footer__logo {
  width: auto;
  height: 80px;
  display: block;
}

.footer__link--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__link--items a,
.footer__link--items p,
.footer__email {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.footer__link--items a:hover {
  color: #e0e0e0;
  transition: 0.3s ease-out;
}

/* === Copy to Clipboard Styles === */
.email--copy {
  color: #fff;
  text-decoration: underline;
  margin-left: 5px;
  cursor: pointer;
}

.email--copy:hover {
  color: #ccc;
}

.email--copy-dark {
  text-decoration: underline;
  margin-left: 5px;
  cursor: pointer;
}

.email--copy-dark:hover {
  color: #808080;
}

.copied-bubble {
  position: absolute;
  background-color: #fff;
  color: black;
  padding: 4px 8px;
  font-size: 0.8rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.copied-bubble.visible {
  opacity: 1;
}

.copied-bubble.inverted {
  background-color: #222;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* === Footer === */
.footer {
  background-color: #343434;
  width: 100%;
}

.footer__container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  padding: 2rem;
  max-width: 2000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__left {
  align-items: center;
  text-align: left;
}

.footer__center {
  align-items: center;
  text-align: center;
}

.footer__right {
  align-items: center;
  text-align: right;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  gap: 16px;
  line-height: 1;
}

.footer__logo a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  gap: 16px;
  text-decoration: none;
}

#footer__logo {
  width: auto;
  height: 80px;
  display: block;
}

.footer__link--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__link--items a,
.footer__link--items p,
.footer__email {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.footer__link--items a:hover {
  color: #e0e0e0;
  transition: 0.3s ease-out;
}

.footer__text {
  color: #fff;
  font-size: 1rem;
  text-align: right;
}

/* === Footer Responsive === */
@media screen and (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer__left,
  .footer__right {
    align-items: center;
    text-align: center;
  }

  .footer__text {
    text-align: center;
  }

  .footer__link--items {
    align-items: center;
  }
}