@font-face {
  font-family: Roboto;
  src: url(fonts/Roboto/Roboto-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-family: Roboto;
  src: url(fonts/Roboto/Roboto-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: Roboto;
  src: url(fonts/Roboto/Roboto-Bold.ttf);
  font-weight: 700;
}

:root {
  --primary: #303959;
  --purple: #7689b9;
  --footer-bg: #1b3067;
  --standard-line-height: 28px;
  --secondary: #5f5f5f;
}

ul,
ol {
  list-style: none;
}

body {
  font-family: Roboto;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: -0.23px;
  line-height: var(--standard-line-height);
  color: var(--primary);
  padding: 0 20px;
}

h1 {
  font-size: 51px;
  line-height: 61px;
  letter-spacing: -0.66px;
  margin-bottom: 30px;
}

h3 {
  font-weight: 700;
  letter-spacing: -0.31px;
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 10px;
}

.logo-mobile {
  display: none;
}

main {
  margin-top: 60px;
  margin-bottom: 40px;
}

main,
#header-wrapper,
#footer-wrapper {
  max-width: 1370px;
  margin-left: auto;
  margin-right: auto;
}

.font-weight-medium {
  font-weight: 500;
}

a {
  color: #002ed1;
}

/* purple bullet list */

.purple-bullet-list {
  list-style: circle;
  list-style-position: outside;
  list-style-image: url("./images/bullet.svg");
  margin-left: 17px;
}

/* footer */
footer {
  height: 87px;
  background-color: var(--primary);
  margin: 0 -20px;
  padding: 0 20px;
}

#footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

#footer-menu a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
#footer-menu a:hover {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: underline;
}

#copyright-pcss a {
  display: flex;
  color: white;
  gap: 10px;
  text-decoration: none;
}

#copyright-pcss a:hover {
  display: flex;
  color: white;
  gap: 10px;
  text-decoration: underline;
}

#copyright-pcss p {
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

#socials {
  display: flex;
  gap: 10px;
}

.fb {
  background-color: #1877f2;
}

.yt {
  background-color: #bb0000;
}

#socials a {
  width: 43px;
  height: 43px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* header */
#header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

#header-right {
  display: flex;
  font-weight: 500;
  align-items: center;
  gap: 40px;
}

#header-menu a {
  font-size: 21px;
  line-height: 24px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

#header-menu li {
  border-bottom: 3px solid var(--primary);
  padding-bottom: 2px;
}
.display-on-mobile {
  display: none;
}

header nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

#language-switcher ul {
  display: flex;
  gap: 10px;
}

.pl,
.en {
  background: none;
  font-family: inherit;
  font-size: 21px;
  line-height: 24px;
  color: var(--secondary);
  font-weight: 500;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: inherit;
}

.lang-active {
  color: var(--primary) !important;
}

#language-switcher button:hover {
  color: var(--primary) !important;
}

/* body */
#banner {
  /* width: 100%; */
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  justify-content: center;
  background-image: url("images/DARIAH_virtualtourbanner.jpg");
  min-height: 230px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#banner img {
  width: 100%;
}

.paragraph-space:not(:last-child) {
  margin-bottom: 28px;
}

.button-space {
  margin-bottom: 39px;
}

.list-space {
  margin-bottom: 20px;
}

.text-section {
  max-width: 1080px;
  padding: 40px 0px;
}

/* pill button */
.pill-button {
  max-width: 540px;
  width: 100%;
  display: block;
  padding: 8px 0;
  background-color: var(--purple);
  border-radius: 30px;
  font-size: 21px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  display: flex;
  justify-content: center;
}

.pill-button span {
  padding: 0 10px;
}

.pill-button:hover {
  background-color: var(--primary);
}

@media (max-width: 767px) {
  #header-menu a {
    font-size: 18px;
    text-justify: right;
    width: 100%;
  }
  .display-on-mobile {
    display: inline;
  }
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
  }
  body {
    font-size: 18px;
  }
  main {
    margin-top: 20px;
  }

  h1 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .text-section {
    padding: 20px 0;
  }

  .pill-button {
    font-size: 16px;
  }

  .purple-bullet-list li {
    padding-left: 5px;
  }

  #banner {
    min-height: 106px;
  }

  #language-switcher ul {
    gap: 5px;
  }
  .pl,
  .en {
    font-size: 16px;
    color: var(--primary);
    font-weight: 300;
  }

  .lang-active {
    font-weight: 500;
  }

  #header-wrapper {
    max-height: 60px;
  }

  #header-right {
    gap: 20px;
  }

  #lang-pl-button::after {
    content: "|";
    color: var(--secondary);
    padding-left: 5px;
    font-weight: 300;
  }
}

@media (max-width: 420px) {
  #banner {
    background-position: center left -290px;
  }
}

@media (max-width: 960px) {
  footer {
    height: unset;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer-wrapper {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  #copyright-pcss a {
    flex-direction: column;
    align-items: center;
  }
}
