@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Fira+Code:wght@300..700&display=swap");
:root {
  --color-accent: #cde270;
}

/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Increase line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

html body {
  background-color: #0e1011;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 25.6px;
}

h1,
h2,
h3 {
  color: white;
  overflow-wrap: break-word;
  text-align: start;
  word-break: break-word;
}

h2 {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 38.4px;
}

.content-wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
  background: linear-gradient(180deg, #232829 0%, #111314 100%);
  height: 100%;
  width: 100%;
  opacity: 1;
}

.main-header {
  position: relative;
  z-index: 999;
  height: 32px;
  width: 100%;
  margin-bottom: -8px;
  padding: 0 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: green; */
}
.main-header a.logo {
  display: flex;
  align-items: center;
  color: white;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  text-decoration: none;
}
.main-header a.logo span {
  display: flex;
  height: 28px;
  width: 28px;
  margin-right: 6px;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  /* border: 4px solid white; */
  border-radius: 8px;
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 900;
  line-height: 25px;
}
.main-header__menu-button {
  border: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0);
  color: white;
  cursor: pointer;
}
.main-header__navigation {
  position: absolute;
  top: 38px;
  width: 100%;
  padding: 16px 16px 32px 16px;
  display: flex;
  flex-flow: column;
  gap: 16px;
  background-color: #0e1011;
  border-radius: 12px;
  transform: translateY(-100vh);
  opacity: 0;
  transition: transform 0.3s, opacity 0.4s ease-in-out 0s;
}
.main-header__navigation.opened {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s, opacity 0.4s ease-in-out 0.2s;
}
.main-header__navigation a {
  padding: 12px 16px;
  background-color: #181b1c;
  border-radius: 12px;
  color: white;
  text-align: center;
  text-decoration: none;
}

.container {
  max-width: 500px;
  height: 100vh;
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  flex-flow: column;
  align-items: flex-start;
  gap: 16px;
  background-color: #0e1011;
}

.w-image {
  position: relative;
  width: 100%;
  height: min-content;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}
.w-image__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.w-image__label {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 6px 8px 4px 8px;
  background-color: black;
  border-top-left-radius: 12px;
}

.w-card {
  position: relative;
  width: 100%;
  height: min-content;
  display: flex;
  align-items: flex-start;
  flex: 0 0 auto;
  flex-flow: column;
  gap: 20px;
  background-color: #181b1c;
  border-radius: 12px;
  overflow: hidden;
}
.w-card:not(.w-card--no-padding) {
  padding: 40px;
}
.w-card__title-block {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 100%;
  padding: 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #181b1c;
  border-radius: 12px;
}
.w-card__title-block h3 {
  flex-basis: 80%;
  font-size: 16px;
  font-weight: 400;
}
.w-card__title-block span {
  position: relative;
  color: white;
}
.w-card__title-block span:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 1px;
  width: 100%;
  background-color: white;
  transition: width 0.175s ease-in-out;
}
.w-card__full-media {
  height: 100%;
  width: 100%;
}
.w-card__full-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  transition: filter 0.175s ease-in-out 0s;
}
.w-card:hover .w-card__title-block span:after {
  width: 25%;
}
.w-card:hover .w-card__full-media img {
  filter: blur(6px);
}

.box {
  display: flex;
  flex-direction: column;
  width: 320px;
  overflow: hidden;
  background-color: #282c35;
  border-radius: 2rem;
  /* border: 2px solid var(--color-accent); */
}
.box__icon {
  padding: 1rem;
  font-size: 3rem;
  font-weight: bold;
}
.box__title {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.box__title h1 {
  padding: 0 0 2rem 0;
}
.box__content {
  display: flex;
  /* flex: 1; */
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #353947;
}

.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 4px; /* Ruimte tussen de bolletjes */
  padding: 10px 14px;
  border-radius: 15px;
  width: fit-content;
}

.typing-indicator span {
  width: 4px;
  height: 4px;
  background-color: #939aa0; /* Kleur van de bolletjes */
  border-radius: 50%;
  display: inline-block;
  /* De animatie: 1.2s lang, oneindig herhalen, vloeiende overgang */
  animation: bounce 1.2s infinite ease-in-out;
}

/* Hier zit de truc: we geven het 2e en 3e bolletje een vertraging (delay) */
.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

/* De animatie die de bolletjes laat springen én van opacity laat veranderen */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-6px); /* Beweegt 6px omhoog */
    opacity: 1; /* Wordt feller op het hoogste punt */
  }
}
@media (min-width: 480px) {
  .content-wrapper {
    padding: 64px 0;
  }
  .container {
    max-width: 640px;
    border-radius: 12px;
  }
  .main-header__menu-button {
    display: none;
  }
  .main-header__navigation {
    position: relative;
    top: 0;
    opacity: 1;
    transform: translateY(0);
    padding: 0;
    height: 100%;
    flex-flow: row;
    justify-content: flex-end;
    gap: 24px;
  }
  .main-header__navigation a {
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }
}

/*# sourceMappingURL=styles.css.map */
