body {
  margin: 0;
  font-family: sans-serif;
  background-color: #FAF8F4;
  color: #2E2E2E;
}

/* HEADER */
header {
  background-color: #F4A261;
  padding: 1rem;
  color: white;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

/* LAYOUT */
.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  line-height: 1.6;
}

section {
  padding: 3rem 1rem;
}

/* START */
#start {
  background-color: #fff5e6;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.start-box {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

#start h1 {
  font-size: 2.2rem;
  color: #cc6600;
  margin-bottom: 1rem;
}

.intro {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

#start p {
  max-width: 600px;
  margin: 0 auto 1rem auto;
}

/* BUTTON */
.button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 10px 20px;
  background-color: #F4A261;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.button:hover {
  background-color: #e76f51;
}

/* ÜBER MICH */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.about-img {
  max-width: 250px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 20px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #cc6600;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-text ul {
  padding-left: 1.2rem;
  line-height: 1.5;
}

/* ARBEIT */
.arbeit-box {
  background-color: #fdfaf6;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.arbeit-box h3 {
  margin-top: 0;
  color: #cc6600;
}

.arbeit-box li {
  margin-bottom: 0.4rem;
}

/* ANGEBOT */
#angebot h2 {
  text-align: center;
}

.angebot-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.angebot-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  flex: 1 1 220px;
  max-width: 260px;
  text-align: left;
  transition: all 0.3s ease;
  border-top: 4px solid #F4A261;
}

.angebot-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.angebot-box h3 {
  color: #cc6600;
}

.angebot-box p {
  font-size: 0.95rem;
  color: #555;
}

/* KONTAKT */
.kontakt-box {
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

#kontakt h2 {
  color: #cc6600;
}

.kontakt-intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.kontakt-details p {
  margin-bottom: 1rem;
}

.kontakt-details a {
  color: #cc6600;
  text-decoration: none;
}

.kontakt-details a:hover {
  text-decoration: underline;
}

.kontakt-hinweis {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #666;
}

/* FOOTER */
footer {
  background-color: #F4A261;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #FAF8F4;
  color: #2E2E2E;
}

h1, h2, h3 {
  font-weight: 500;
}

p {
  font-weight: 300;
}

#start {
  background: linear-gradient(135deg, #fff5e6, #fdebd3);
}

#start h1 {
  position: relative;
  display: inline-block;
}

#start h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #F4A261;
  margin: 10px auto 0;
  border-radius: 2px;
}

#start {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#start {
  background: linear-gradient(135deg, #fff5e6, #fdf1e3);
}

.start-box {
  border: 1px solid rgba(0,0,0,0.05);
}

#start h1 {
  font-size: 2.4rem;
  line-height: 1.3;
}

header h1 {
  position: relative;
  display: inline-block;
}

header h1 {
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.4rem;
}


@media (max-width: 768px) {

  /* Navigation untereinander */
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  /* Header etwas kompakter */
  header {
    text-align: center;
  }

  /* Startbereich weniger Padding */
  #start {
    padding: 3rem 1rem;
  }

  /* Text etwas kleiner */
  #start h1 {
    font-size: 1.8rem;
  }

  .intro {
    font-size: 1.1rem;
  }

  /* Über mich: Bild über Text */
  .about-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-img {
    margin-top: 0;
  }

  /* Angebot: Boxen breiter */
  .angebot-box {
    max-width: 100%;
  }

  /* Kontaktbereich */
  .kontakt-box {
    padding: 2rem 1rem;
  }

}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.5rem;
}

.about-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #F4A261;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

