/* ==== RESET ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==== VARIABLISED ==== */
:root {
  --pink: #ff00aa;
  --yellow: #ffff00;
  --black: #111111;
  --white: #ffffff;
  --padding: 1.5rem;
  --gutter: 1.5rem;
  --font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ==== BODY ==== */
html, body {
  width: 100%;
  height: 100%;
  background: var(--yellow);
}
body {
  font-family: var(--font-family);
  color: var(--black);
  line-height: 1.4;
}

/* ==== BANNER ==== */
.banner {
  width: 100%;
  text-align: center;
  padding: var(--padding) 0;
}
.banner--pink {
  background-color: var(--pink);
}
.banner__title {
  font-size: 4rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.banner__text {
  font-size: 2rem;
  color: var(--black);
}

/* ==== SEKTSIOONID ==== */
.section {
  width: 100%;
}
.section--image {
  /* margin-bottom eemaldatud, et ei tekiks kollast riba */
}

/* ==== PILDID ==== */
.img--full,
.img--responsive {
  display: block;
  width: 100%;
  height: auto;
}

/* ==== KAHE VEERU DISAIN ==== */
.section--two-col {
  display: flex;
  flex-wrap: wrap;
}
.col {
  flex: 1 1 50%;
}
.col--yellow {
  background-color: var(--yellow);
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.col__title {
  font-size: 3rem;
  margin-bottom: var(--gutter);
  text-align: center;
}
.col__list {
  list-style: none;
  padding-left: 1rem;
}
.col__list li {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ==== VANAEMA TEKST ==== */
.grandma-title {
  font-size: 3.5rem;
  line-height: 1.2;
  text-align: center;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .col {
    flex: 1 1 100%;
  }
  .banner__title {
    font-size: 3rem;
  }
  .banner__text {
    font-size: 1.5rem;
  }
  .col__title {
    font-size: 2.5rem;
  }
  .col__list li {
    font-size: 1.25rem;
  }
  .grandma-title {
    font-size: 2.5rem;
  }
}
