* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #cccccc; /* Standard-Hintergrund für die grauen Sektionen */
  color: #1a1a1a;
  line-height: 1.6;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 20px;
  width: 100%;
}

h1, h2, h3, h4, .section-title {
  color: #e6007e;
}

.section-title, h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
}

.section-desc, 
.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 40px;
}

/* ==========================================
   SEKTIONS-VARIATIONEN
   ========================================== */

/* Variante 1: Weiße Sektion (Dienstleistungen) */
section.bg-white {
  background-color: #ffffff;
}

/* Variante 2: Knallige Rosa-Highlight-Sektion (Kontakt) */
section.bg-pink-highlight {
  background-color: #e6007e;
  color: #ffffff;
}

/* Überschrift & Untertitel auf der Rosa-Sektion bleiben Weiß */
section.bg-pink-highlight .section-title,
section.bg-pink-highlight .section-subtitle {
  color: #ffffff !important;
}

/* Helle Kontakt-Box auf dem rosa Hintergrund */
section.bg-pink-highlight .contact-wrapper {
  background-color: #fff0f5; /* Leichtes Rosa */
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 40px;
}

/* Inhalte INNERHALB der Kontakt-Box */
section.bg-pink-highlight .contact-info h3 {
  color: #e6007e !important;
}

section.bg-pink-highlight .contact-info p,
section.bg-pink-highlight .contact-item p {
  color: #1a1a1a !important;
}

section.bg-pink-highlight .contact-item strong {
  color: #e6007e !important;
}

section.bg-pink-highlight .contact-item a {
  color: #e6007e;
  font-weight: bold;
  text-decoration: underline;
}

section.bg-pink-highlight .contact-item a:hover {
  color: #b30062;
}

section.bg-pink-highlight .contact-icon {
  background-color: #ffffff;
  color: #e6007e;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ==========================================
   NAVIGATION (#navbar)
   ========================================== */
#navbar {
  background-color: #e6007e; /* Satt Rosa */
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

#navbar a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  padding: 8px 14px; 
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  border-radius: 6px;
}

#navbar a:hover {
  background-color: rgba(255, 255, 255, 0.2); 
  color: #ffffff;
}

/* Burger Button für Mobile*/
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

/* ==========================================
   ÜBER MICH (#about-section)
   ========================================== */
header#about-section {
  padding-top: 120px;
  padding-bottom: 60px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profile-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.05);
}

#about-section h1 {
  font-style: italic;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #e6007e;
}

.description {
  font-size: 1.15em;
  font-weight: 500;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff0f5;
  color: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ==========================================
   DIENSTLEISTUNGEN (#service-section)
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background-color: #fff0f5;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #e6007e;
}

.service-card h3 {
  font-size: 1.3rem;
  color: #e6007e;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #1a1a1a;
  line-height: 1.4;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e6007e;
  font-weight: bold;
}

.service-info-banner {
  margin-top: 40px;
  background-color: #fff0f5;
  border-left: 5px solid #e6007e;
  padding: 15px 20px;
  border-radius: 4px;
  color: #1a1a1a;
  font-weight: bold;
}

/* ==========================================
   PRAXISERFAHRUNG (#knowhow-section)
   ========================================== */
.experience-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.experience-text {
  flex: 1 1 500px;
}

.experience-text h3 {
  font-size: 1.5rem;
  color: #e6007e;
  margin-bottom: 15px;
}

.experience-text p {
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 15px;
}

.experience-highlights {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  background: #fff0f5;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border-left: 4px solid #e6007e;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.highlight-number {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  color: #e6007e;
}

.highlight-label {
  font-size: 0.95rem;
  color: #1a1a1a;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.skill-card {
  background: #fff0f5;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(230, 0, 126, 0.2);
}

.skill-card h4 {
  color: #e6007e;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.skill-card p {
  color: #1a1a1a;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================
   KONTAKT (#contact-section)
   ========================================== */
.contact-wrapper {
  max-width: 650px;
  margin: 0 auto;
}

.contact-info h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.contact-info > p {
  margin-bottom: 25px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 50%;
  line-height: 1;
}

.contact-item strong {
  display: block;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
  background-color: #e6007e;
  color: #ffffff;
  padding: 30px 20px;
  font-size: 0.9rem;
  width: 100%;
  text-align: center !important; 
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.footer-content p {
  margin: 0 !important;
  text-align: center !important;
  width: 100%;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.footer-links a {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.85rem;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-links span {
  opacity: 0.6;
}

/* ==========================================
   COMPUTER ANSICHT
   ========================================== */
@media screen and (min-width: 781px) {
  #navbar {
    padding: 12px 40px;
  }

  #about-section h1 {
    font-size: 3.2em;
  }

  .description {
    font-size: 1.3em;
  }

  .profile-image {
    width: 200px;
    height: 200px;
  }
}

/* ==========================================
   MOBILE ANSICHT
   ========================================== */
@media screen and (max-width: 780px) {
  #navbar {
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
  }

  /* Mobil-Menü beim Aufklappen */
  .nav-links {
    display: none; 
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #e6007e;
    padding: 10px 0 20px 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  #navbar a {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  header#about-section {
    padding-top: 100px; 
    height: auto;
    padding-bottom: 50px;
  }

  #about-section h1 {
    font-size: 2.2em;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}