:root {
  --hauptfarbe: #4b3b2e;
  --hellrosa: #fdeffd;
  --hellgrau: #f7f3f7;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  margin: 0;
  color: var(--hauptfarbe);
  line-height: 1.6;
}

header {
  background-color: var(--hellgrau);
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  margin: 0;
  letter-spacing: 1px;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  background-color: #fff;
}

.image-section {
  flex: 1 1 250px;
  background-color: var(--hellrosa);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.image-section img {
  max-width: 25vw; /* 25% of the viewport width */
  max-width: 400px; /* but never larger than 400px */
  width: 100%;
  height: auto;
  height: auto;
  border-radius: 1rem;
}

.text-section {
  flex: 1 1 450px;
  padding: 3rem 3rem 4rem;
  background-color: #fff;
}

h2 {
  font-size: 1.2rem;
  font-weight: 700;
  /*text-transform: uppercase;*/
  margin-top: 0;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  /*text-transform: uppercase;*/
  margin-top: 0;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

ul {
  /*list-style: none;*/
  /*padding: 0;*/
  /*margin: 1rem 0;*/
  margin-bottom: 2.5rem;
}

ul li {
  /*margin: 0.5rem 0;*/
  /*font-weight: 700;*/
}

.contact {
  margin-top: 2rem;
  font-size: 0.95rem;
}

.contact strong {
  display: block;
  /*margin-bottom: 0.5rem;*/
  font-size: 1.1rem;
}

.contact a {
  color: var(--hauptfarbe);
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  background-color: var(--hellgrau);
  padding: 1.2rem;
  font-size: 0.9rem;
  color: #6c5c4a;
}

footer a {
  color: #6c5c4a;
  text-decoration: none;
}
	
footer a:hover {
  text-decoration: underline;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
  .content {
	flex-direction: column;
  }

  .image-section {
	/*padding: 2rem 1rem;*/
	padding: 0;
  }

  .image-section img {
	max-width: 30%;
  }

  .text-section {
	padding: 2rem 1.5rem 3rem;
  }

  header h1 {
	font-size: 2rem;
  }

  p, li {
	font-size: 1rem;
  }
}

@media (max-width: 500px) {
  header {
	padding: 1.5rem 0.5rem;
  }

  .text-section {
	padding: 1.5rem;
  }

  ul li {
	font-size: 0.95rem;
  }

  footer {
	font-size: 0.8rem;
  }
}
