:root {
  --base-color: #000217;
  --base-color2: #00021C;
  --accent-color: #00114a;
  --white-color: #fff;
  --InputContainerColor: #0e1021;
}

.TekstInformatieContainer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  align-items: flex-start;
}

.TekstInformatie {
  width: 15%;
  min-width: 150px;
  text-align: center;
  background-color: #000217;
  align-items: start;
  border-radius: 8px;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.1);
}

.TekstInformatieContainerLang {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
  min-width: 0;
  align-items: center;
}

.TextareaLangContainer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.TekstInformatieLang {
  width: 90%;
  text-align: center;
  background-color: #000217;
  align-items: start;
  border-radius: 8px;
  box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.1);
}

.TekstInformatieLang h3 {
  color: rgb(150, 150, 150)
}

.TekstInformatieLang h2 {
  font-size: clamp(1.2em, 3vw, 1.5em);
}

.TekstInformatie h3 {
  color: rgb(150, 150, 150)
}

.TekstInformatieLang h5 {
  color: rgba(150, 150, 150, 0.5);
  margin-top: -2.5em;
}

.TekstInformatie h2 {
  font-size: clamp(1.2em, 3vw, 1.5em);
}

.WordCounterInput {
  background-color: var(--InputContainerColor);
  padding: 30px;
  border-radius: 12px;
  max-width: 55%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
  animation-delay: 0.2s;
  box-sizing: border-box;
}

.WordCounterInput h2 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 50px;
}

.WordCounterInput .highlight {
  background-color: rgba(165, 139, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  color: #a58bff;
}

.WordCounterInput textarea {
  flex: 2;
  background-color: var(--base-color);
  border: 1px solid #444;
  color: white;
  font-size: clamp(1rem, 2vw, 1.2rem);
  padding: 14px;
  border-radius: 8px;
  resize: vertical;
  height: 50vh;
  min-height: 200px;
  box-sizing: border-box;
}

.upload-document-button-wordcounter {
  width: 100%;
  max-width: 66.5%;
  padding: 12px;
  background-color: var(--base-color);
  color: white;
  border: none;
  outline: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.PageTitle {
  margin-top: 2%;
	text-align: center;
	margin-bottom: 2%;
}

.PageTitle span {
  background: linear-gradient(180deg, #5bbdff, #1854f7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 2.5rem;
}

.upload-document-button-wordcounter:hover {
  background-color: #00021C;
}

/* Pagina Content CSS */

.LPC1 {
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--base-color2);
  padding-bottom: 5%;
  padding-top: 3%;
  margin-top: 5em;
}

.LPC3 {
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;
  background-color: var(--base-color);
  padding-bottom: 5%;
  padding-top: 3%;
}

.LPH2 {
  font-size: 1rem; 
  text-align: center;
  max-width: 30%;
  padding-bottom: 1%;
}

.LPT1 {
  max-width: 30%;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.LPT2 {
  width: 100%;
  display: flex;
  justify-content: center;
}

.Features {
  width: 50%;
  justify-content: center;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
}

.Feature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 2.5% auto;
  max-width: 80%;
  color: #fff;
  border-radius: 12px;
}

.FeatureIcon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5%;
}

.FeatureIcon svg {
  width: 100%;
  height: 100%;
  color: var(--accent-color);
}

.FeatureContent h3 {
  margin: 0 0 10px 0;
  padding-top: 5%;
}

.FeatureContent p {
  margin: 0;
}

.FeaturesExtra {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px 20px;
  max-width: 25%;
  align-items: center;
}

.FeatureIconExtra {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.FeatureIconExtra svg {
  width: 100%;
  height: 100%;
  color: var(--accent-color);
}

.FeaturesExtra .FeatureContent {
  text-align: left;
  color: #fff;
}

.FeaturesExtra .FeatureContent h3 {
  margin: 0 0 10px 0;
  padding-left: 5%;
  padding-top: 0;
}

.FeaturesExtra .FeatureContent p {
  padding-left: 5%;
  margin: 0;
} 

/* Content Schermaanpassingen */

@media (max-width: 1400px) {
  .LPH2 {
    max-width: 80%;
    padding-bottom: 5%;
  }

  .LPT1 {
    max-width: 80%;
  }

  .Features {
    width: 90%;
    grid-template-columns: 1fr;
  }

  .Feature {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

  .FeatureIcon {
    margin-right: 0;
    margin-top: 5%;
  }

  .Feature .FeatureContent h3 {
    text-align: center;
  }

  .Feature .FeatureContent p {
    text-align: center;
  }

  .FeaturesExtra {
    grid-template-columns: 1fr;
    max-width: 80%;
    gap: 15px;
  }

  .FeatureIconExtra {
    justify-self: center;
    margin-bottom: 10px;
    margin-top: 5%;
  }

  .FeaturesExtra .FeatureContent {
    text-align: center;
  }

  .FeaturesExtra .FeatureContent h3 {
    padding-left: 0;
    text-align: center;
  }

  .FeaturesExtra .FeatureContent p {
    padding-left: 0;
    text-align: center;
  }

  .LPC1 {
    padding-bottom: 20%;
  }

  .LPC2 {
    padding-bottom: 20%;
  }

  .LPC3 {
    padding-bottom: 20%;
  }
  
}

/* Tool Schermaanpassingen */

@media screen and (max-width: 1024px) {
  .TekstInformatie {
    width: calc(25% - 1em);
    min-width: 120px;
  }
  
  .WordCounterInput {
    max-width: 75%;
    padding: 25px;
  }
  
  .upload-document-button-wordcounter {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .TekstInformatieContainer {
    gap: 0.75em;
  }
  
  .TekstInformatie {
    width: calc(50% - 0.5em);
    min-width: unset;
  }
  
  .TextareaLangContainer {
    flex-direction: column;
    gap: 15px;
  }
  
  .TekstInformatieLang {
    width: 100%;
  }
  
  .TekstInformatieLang h5 {
    margin-top: -1.5em;
  }
  
  .WordCounterInput {
    max-width: 90%;
    padding: 20px;
    gap: 15px;
  }
  
  .WordCounterInput h2 {
    margin-bottom: 30px;
  }
  
  .WordCounterInput textarea {
    height: 40vh;
    padding: 12px;
  }
  
  .upload-document-button-wordcounter {
    max-width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
    .TekstInformatieContainerLang {
    width: 100%;
  }

  .TextareaLangContainer {
    width: 100%;
  }

  .TekstInformatieContainer {
    gap: 0.5em;
  }
  
  .TekstInformatie {
    width: 100%;
  }
  
  .WordCounterInput {
    max-width: 95%;
    padding: 15px;
    gap: 12px;
  }
  
  .WordCounterInput h2 {
    margin-bottom: 20px;
  }
  
  .WordCounterInput textarea {
    height: 35vh;
    padding: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .TekstInformatie {
    min-width: 90px;
    max-width: 130px;
  }
  
  .TekstInformatieLang {
    max-width: 500px;
  }
  
  .WordCounterInput {
    max-width: 75%;
    padding: 25px;
  }
  
  .upload-document-button-wordcounter {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .TekstInformatieContainer {
    gap: 0.5em;
    justify-content: center;
  }
  
  .PageTitle {
    margin-top: -10%;
    margin-bottom: 5%;
  }

  .TekstInformatieContainerLang {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .TekstInformatie {
    min-width: 80px;
    max-width: 110px;
    padding: 0.5em;
  }
  
  .TekstInformatie h3 {
    font-size: 0.7rem;
  }
  
  .TekstInformatie h2 {
    font-size: 1em;
  }
  
  .TextareaLangContainer {
    flex-direction: column;
    gap: 15px;
  }
  
  .TekstInformatieLang {
    max-width: 100%;
    width: 95%;
    padding: 0.75em 1em;
  }
  
  .TekstInformatieLang h5 {
    margin-top: -1em;
  }
  
  .WordCounterInput {
    max-width: 90%;
    padding: 20px;
    gap: 15px;
  }
  
  .WordCounterInput h2 {
    margin-bottom: 30px;
  }
  
  .WordCounterInput textarea {
    height: 40vh;
    padding: 12px;
    font-size: 1rem;
  }
  
  .upload-document-button-wordcounter {
    max-width: 100%;
    padding: 14px;
  }
}

@media screen and (max-width: 480px) {
  .TekstInformatieContainer {
    gap: 0.4em;
  }

  .PageTitle {
    margin-top: 3.75%;
    margin-bottom: 7.5%;
  }

  .TekstInformatieContainerLang {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .TekstInformatie {
    min-width: 70px;
    max-width: 95px;
    padding: 0.4em;
  }
  
  .TekstInformatie h3 {
    font-size: 0.65rem;
  }
  
  .TekstInformatie h2 {
    font-size: 0.95em;
  }
  
  .TekstInformatieLang {
    padding: 0.6em 0.8em;
  }
  
  .WordCounterInput {
    max-width: 95%;
    padding: 15px;
    gap: 12px;
  }
  
  .WordCounterInput h2 {
    margin-bottom: 20px;
    font-size: 1rem;
  }
  
  .WordCounterInput textarea {
    height: 35vh;
    padding: 10px;
    font-size: 0.95rem;
  }
}