/* Grundlayout */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

/* Header & Logo */
header {
  text-align: center;
  padding: 2rem 1rem 1rem;
}

img.site-logo {
  width: 300px !important;
  height: auto !important;
  max-width: 100% !important;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  img.site-logo {
    width: 200px !important;
  }
}

/* Navigation */
.main-nav {
  text-align: center;
  margin-bottom: 2rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-item a {
  text-decoration: none;
  color: #b3472c;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.6s ease;
  display: inline-block;
  opacity: 0;
}

.nav-item a:hover {
  transform: scale(1.1);
  text-decoration: none;
}

.nav-item.slide-left a {
  transform: translateX(-40px);
}

.nav-item.slide-right a {
  transform: translateX(40px);
}

.nav-item.visible a {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Menü */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    margin-bottom: 0.5rem;
  }

  .nav-list {
    flex-direction: column;
    display: none;
    gap: 1rem;
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
  }

  .nav-list.open {
    display: flex;
  }
}

/* Allgemeine Sektionen */
section {
  padding: 4rem 2rem;
  text-align: center;
}

.section-highlight {
  background-color: #f5f5f5;
  border-top: 2px solid #b3472c;
  border-bottom: 2px solid #2c3e50;
}

/* Workshop Grid */
.workshop-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.workshop-box {
  background: #f5f5f5;
  padding: 2rem;
  border-left: 4px solid #b3472c;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Kontaktbereich */
.contact-section {
  background: #2c3e50;
  color: white;
}

.contact-section a {
  color: #f0a500;
  text-decoration: none;
  font-weight: bold;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #eee;
  font-size: 0.9rem;
}

/* Profilbereich ("Über mich") */
.profil-section {
  padding: 4rem 2rem;
  background-color: #fdfdfd;
}

.profil-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.profil-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.profil-text h2 {
  margin-bottom: 1rem;
  color: #2c3e50;
}

.profil-bild {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.profil-bild img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Slide-In Effekte */
.slide-in {
  opacity: 0;
  transition: all 0.8s ease-out;
}

.slide-in-left {
  transform: translateX(-60px);
}

.slide-in-right {
  transform: translateX(60px);
}

.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Mobil: Bild über dem Text */
@media (max-width: 768px) {
  .profil-wrapper {
    flex-direction: column;
  }

  .profil-bild {
    order: -1;
  }

  .profil-text,
  .profil-bild {
    text-align: center;
  }

  .slide-in-left,
  .slide-in-right {
    transform: translateY(40px);
  }
}

