/*================= ALGEMEEN =================*/
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Variable.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --heart-blue: #3A83E2;
  --vita-teal:  #2AAB86;
  --tone-grey:  #525A6E;
  font-family: "Inter";
}

body {
  background: linear-gradient(var(--heart-blue), var(--vita-teal));
  font-weight: 500;
  font-size: 32px;
  min-width: 1440px;
  max-width: 100vw;
}

/* .width-wrapper {
  width: 75%;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
} */

.width-wrapper {
  min-width: 1440px;
  width: 1440px;
  height: fit-content;
  margin: 0 auto;
}

.grid-wrapper {
  display: grid;
  grid-template: 100% / auto auto;
  gap:140px;
}

section, header {
  height: 1000px;
  display:flex;
  align-items:center;
  color: white;
}

#zorg, #activiteiten, #over {
  margin-bottom: -100px;
}

#wonen, #ouderen, footer {
  background-color: white;
  color: var(--tone-grey);
}

/* section:nth-of-type(odd) {
  color: white;
}

section:nth-of-type(even) {
  background-color: white;
  color: var(--tone-grey);
} */

/* .white-section::before {
  top: -32px;
  width: 100%;
  height: 1064px;
  background: url("img/whiteSection.svg");
} */

h2 {
  margin-bottom: 20px;
}

.width-wrapper p {
  text-align: justify;
}

img {
  border-radius: 10px;
}

/*================= HEADER =================*/

header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(90deg, var(--heart-blue), var(--vita-teal));
  box-shadow: 0px 0px 30px rgba(0,0,0,25%);
}

header .width-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  color: white;
  text-decoration: none;
}

/*================= WELKOM =================*/

#welkom {
  background-image: url("../img/photos/houses.jpg");
  background-size: cover;
  text-align: center;
}

#welkom > div {
  margin: 0 auto;
}

#welkom h1, #welkom h3 {
  /* font-weight: 700;
  font-size: 42px; */
  -webkit-text-stroke: white 10px;
  paint-order: stroke fill;
}

#welkom h1 {
  color: var(--tone-grey);
}

#welkom h1 span {
  color: var(--vita-teal);
}

#welkom h3 {
  color: var(--heart-blue);
  margin-bottom: 100px;
}

/*================= WONEN =================*/

#wonen .width-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wonen-tekst {
  width: 650px;
}

/*================= ZORG =================*/

#zorg .grid-wrapper {
  grid-template-columns: 450px 850px;
}

/*================= ACTIVITEITEN =================*/

#activiteiten .grid-wrapper {
  grid-template-columns: 650px 650px;
}

/*================= OVER =================*/

#over .grid-wrapper {
  grid-template-columns: 650px 650px;
}

/*================= CONTACT =================*/

#contact .grid-wrapper {
  grid-template-columns: 790px 510px;
}

.form-row {
  width: 790px;
  display: flex;
  column-gap: 42px;
  margin-bottom: 10px;
}

label {
  width: 100%;
}

input, textarea {
  width: 100%;
  font-size: 32px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-size: 32px;
  color: var(--tone-grey);
  font-weight: 500;
}

textarea {
  height: 250px;
  /* min-height: 100px;
  resize: vertical; */
  resize: none;
}

input[type="submit"] {
  color: white;
  background-color: var(--tone-grey);
}

input[type="submit"]:hover {
  color: var(--tone-grey);
  background-color: white;
}

input[type="submit"]:active {
  color: white;
  background-color: var(--heart-blue);
}

/*================= OUDEREN =================*/

/* #ouderen img {
  min-width: 1440px;
  max-width: 100vw;
} */

/*================= FOOTER =================*/

footer {
  width: 100%;
  height: 200px;
}

footer .width-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.footer-wrapper {
  min-width: 1440px;
  width: 1440px;
  display: flex;
  justify-content: space-between;
}