body {
  background: var(--bg);
}

#root-comp {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
footer p {
  text-align: center;
  padding: 1rem;
  font-weight: 500;
  color: #000;
  margin-top: 2rem;
}
.contact-title {
  text-align: right;
}
/* marque theme css */
#btn-en {
  background-image: url(./../media/en-flag.png);
  color: transparent;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 1rem;
  position: relative;
}
#btn-de {
  background-image: url(./../media/de-flag.png);
  color: transparent;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 1rem;
  position: relative;
}
.language-toggler .active::after {
  content: "";
  background: #0a5688;
  position: absolute;
  bottom: -5px;
  height: 2px;
  width: 100%;
  left: 0;
}
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: slide 20s linear infinite;
}

.marquee-inner img {
  height: 100px; /* adjust as needed */
  margin-right: 50px; /* spacing between loops */
  user-select: none;
  pointer-events: none;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* end of marque  */

.btn-brand {
  background-color: var(--color-brand);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  outline: none;
  width: fit-content;
  border-radius: var(--radius);
}
#burger-btn {
  display: none;
}

/* Header (site navigation) */
#site-header {
  background: #f9f9f9f5;
  position: sticky;
  top: 0;
  z-index: 9;
}
.header-wrapped header {
  max-width: 1200px;
  margin: 0 auto;
}
#header-logo {
  width: 240px;
}
#site-header header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#site-header nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#site-header a {
  color: var(--color-grey);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
  text-transform: uppercase;
}
.primary-nav a.is-active {
  color: var(--color-brand);
}

#site-header a:hover {
  color: var(--color-brand);
}

/* Active link highlight */
#site-header a[aria-current="page"] {
  color: var(--color-brand);
  font-weight: 700;
}

/* bottom contact button */
.about-contact {
  margin: 4rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 22px;
  font-weight: 500;
  padding: 0 2rem;
}
@media screen and (max-width: 1030px) {
  .about-contact {
    font-size: 14px;
  }
}

/* Footer */
#site-footer {
  background: var(--color-grey);
  border-top: 1px solid var(--border);

  padding: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-menu {
  display: flex;
  justify-content: center;
  color: #000;
  gap: 3rem;
  text-align: center;
}
.footer-menu .logo-wrap {
  max-width: 400px;
}
p.footer-description {
  color: #272727;
  text-align: center;
}
.page-links {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
}
span.links-title,
.info-footer-title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}
.page-links a {
  font-size: 16px;
}
.page-links a:hover {
  color: var(--color-brand);
}
.info-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  max-width: 220px;
}

@media screen and (max-width: 1030px) {
  #site-header nav {
    position: absolute;
    background: #f9f9f9;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    top: 82px;
    border-bottom: 1px solid #69767e;
    display: none;
  }

  .nav-open #site-header nav {
    display: flex;
    user-select: none;
  }

  #burger-btn {
    display: block;
    cursor: pointer;
    font-size: 32px;
  }
}
@media screen and (max-width: 800px) {
  .footer-menu {
    flex-direction: column;
    justify-content: center;
    align-self: center;
  }
  .links-wrap {
    text-align: center;
  }
  .footer-menu .logo-wrap,
  .info-footer {
    margin: 0 auto;
  }
}
