body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ======= Branding Header: Fonts & Layout ======= */
.header {
  position: relative;
  background-image: url("../img/header.png.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 7vh;
  padding-bottom: 4vh;
}

/* Logo - große Größe für Desktop! */
.hero-logo {
  width: 900px;            /* Groß auf Desktop */
  max-width: 90vw;
  height: auto;
  display: block;
  margin-bottom: 2.2rem;
  box-shadow: none;
  animation: logoZoomIn 1.0s cubic-bezier(0.55,0,0.2,1) 0.1s both, logoFadeGlow 1.1s cubic-bezier(0.55,0,0.2,1) 0.1s both;
}

/* Claim-Text: Zwei Zeilen */
.hero-claim {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.7rem;      /* Sehr groß auf Desktop */
  font-weight: 800;
  color: #e8c431;
  letter-spacing: 0.03em;
  text-align: center;
  text-shadow: 0 3px 8px #0006;
  line-height: 1.17;
  margin-bottom: 0.3em;
  margin-top: 0.2em;
  user-select: none;
  max-width: 98vw;
  display: block;
  padding: 0;
}

/* Jede Zeile mittig, block! */
.claim-line {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.1em;
  letter-spacing: 0.01em;
}

/* Animierte Buchstaben */
.claim-line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.4s cubic-bezier(0.65,0,0.3,1), transform 0.4s cubic-bezier(0.65,0,0.3,1);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-shadow: inherit;
  letter-spacing: inherit;
  white-space: pre;
}
.claim-line span.in {
  opacity: 1;
  transform: none;
}

.word-space {
  width: 0.55em;
  min-width: 0.45em;
  display: inline-block;
}

/* ====== MEDIA QUERY: Mobile Anpassungen ====== */
@media (max-width: 900px) {
  .hero-logo { width: 480px; max-width: 92vw; }
  .hero-claim { font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .hero-logo {
    width: 300px;
    margin-bottom: 1.1rem;
  }
  .hero-claim {
    font-size: 1.12rem;
    line-height: 1.18;
    max-width: 99vw;
    padding: 0 0.1em;
  }
  .claim-line {
    margin-bottom: 0.16em;
    font-size: inherit;
    text-align: center;
    width: 100%;
  }
  .claim-line span {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: 0.03em;
    line-height: 1.12;
  }
  .word-space {
    width: 0.24em;
    min-width: 0.18em;
  }
}

/* Logo-Animationen */
@keyframes logoZoomIn {
  0%   { opacity: 0; transform: scale(0.7) rotate(-4deg);}
  70%  { opacity: 1; transform: scale(1.1) rotate(2deg);}
  100% { opacity: 1; transform: scale(1) rotate(0);}
}
@keyframes logoFadeGlow {
  0%   { opacity: 0; filter: blur(12px) brightness(1.3);}
  70%  { opacity: 1; filter: blur(0.8px) brightness(1.12);}
  100% { opacity: 1; filter: blur(0) brightness(1);}
}




/* ====== Hero-Bereich ====== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
}
.hero h1,
.branding-container h2 {
  font-family: 'Montserrat', sans-serif;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00b0ff;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
  animation: fadeInZoom 1.5s ease-in-out forwards;
}
.hero h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: goldenrod;
  margin: 20px auto 0;
}
.hero p {
  font-size: 1.6rem;
  max-width: 650px;
  margin: 0 auto;
  letter-spacing: 0.5px;
  line-height: 1.6;
  color: #dddddd;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-family: 'Open Sans', sans-serif;
}
/* ====== Animation ====== */
@keyframes fadeInZoom {
  from { opacity: 0; transform: scale(0.95);}
  to { opacity: 1; transform: scale(1);}
}

/* ====== Container für Inhalte ====== */
.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #1e293b;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.container h2,
.container h3 {
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.container p,
.container li {
  line-height: 1.8;
  margin-bottom: 1em;
}

.container ul {
  list-style: none;
  padding-left: 20px;
}

.container li {
  background-color: #3a3a3a;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

/* ====== CTA Bereich ====== */
#cta {
  background: linear-gradient(135deg, #0077cc, #00c6ff);
  color: white;
  text-align: center;
  padding: 60px 20px 45px 20px;
  margin: 60px auto 0 auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.22);
  max-width: 1000px;
  position: relative;
}

#cta h2 {
  color: #FFD700;
  font-size: 2.2rem;
  margin-bottom: 26px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.12);
}

#cta p {
  font-size: 1.2rem;
  margin-bottom: 38px;
  color: #f4f4f4;
}

/* Call-to-Action Button */
.cta-button-green {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  color: #1e293b;
  padding: 16px 38px;
  border: none;
  border-radius: 28px;
  font-weight: 900;
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 24px 0 rgba(34,197,94,0.35), 0 2px 8px 0 rgba(0,0,0,0.10);
  transition: 
    background 0.22s cubic-bezier(0.4,0,0.2,1),
    box-shadow 0.22s cubic-bezier(0.4,0,0.2,1),
    color 0.16s cubic-bezier(0.4,0,0.2,1),
    transform 0.16s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-align: center;
  white-space: normal;
}

/* Shine/Leuchteffekt auf Hover & Tap */
.cta-button-green::after {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.17) 0%,
    rgba(255,255,255,0.30) 40%,
    rgba(255,255,255,0.09) 100%
  );
  transform: skewX(-24deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.cta-button-green:hover::after,
.cta-button-green:focus::after,
.cta-button-green:active::after {
  animation: shineBtn 0.7s linear forwards;
  opacity: 1;
}

@keyframes shineBtn {
  from { left: -75%; opacity: 0.23; }
  30%  { opacity: 1; }
  85%  { opacity: 0.7; }
  to   { left: 110%; opacity: 0; }
}

.cta-button-green:hover,
.cta-button-green:focus {
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
  box-shadow:
    0 6px 32px 0 rgba(34, 197, 94, 0.48),
    0 4px 16px 0 rgba(0,0,0,0.18);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.cta-button-green:active {
  box-shadow:
    0 2px 8px 0 rgba(34, 197, 94, 0.20),
    0 1px 4px 0 rgba(0,0,0,0.09);
  transform: scale(0.98);
}

/* Responsive Optimierung */
@media (max-width: 600px) {
  #cta {
    padding: 30px 8px 24px 8px;
    margin: 30px 6px 0 6px;
    border-radius: 10px;
  }
  #cta h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
  #cta p {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .cta-button-green {
    font-size: 1.09rem;
    padding: 13px 10px;
    width: 90%;
    max-width: 330px;
    margin: 18px auto 0 auto;
    border-radius: 22px;
    display: block;
  }
}

.cta-button-green.shine-animate::after {
  animation: shineBtn 0.7s linear forwards;
  opacity: 1;
}


.cta-button-yellow {
  background: linear-gradient(90deg, #FFD700 0%, #FFFACD 100%);
  color: #1e293b;
  padding: 12px 32px;
  border: none;
  border-radius: 26px;
  font-weight: 900;
  text-decoration: none;
  font-size: 1.25rem;
  letter-spacing: 1.1px;
  box-shadow:
    0 4px 24px 0 rgba(255, 215, 0, 0.38),
    0 2px 8px 0 rgba(0,0,0,0.10);
  transition:
    background 0.18s cubic-bezier(0.4,0,0.2,1),
    box-shadow 0.22s cubic-bezier(0.4,0,0.2,1),
    transform 0.16s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button-yellow:hover,
.cta-button-yellow:focus,
.cta-button-yellow.shine-animate {
  background: linear-gradient(90deg, #FFD700 0%, #ffea00 100%);
  color: #1e293b;
  box-shadow:
    0 8px 36px 0 rgba(255, 215, 0, 0.45),
    0 2px 14px 0 rgba(0,0,0,0.17);
  transform: translateY(-2px) scale(1.045);
}

.cta-button-yellow::after {
  content: "";
  position: absolute;
  left: -80%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.32) 40%,
    rgba(255,255,255,0.12) 100%
  );
  transform: skewX(-24deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.cta-button-yellow:hover::after,
.cta-button-yellow.shine-animate::after {
  animation: shineBtn 0.8s linear forwards;
  opacity: 1;
}

@keyframes shineBtn {
  from { left: -80%; opacity: 0.22; }
  30%  { opacity: 1; }
  85%  { opacity: 0.75; }
  to   { left: 110%; opacity: 0; }
}

@media (max-width: 600px) {
  .cta-button-green,
  .cta-button-yellow {
    font-size: 1.06rem;
    padding: 14px 10px;
    width: 95%;
    max-width: 330px;
    display: block;
    margin: 18px auto 0 auto;
    border-radius: 22px;
    text-align: center;
    white-space: normal;
  }
}


/* ====== Navigation ====== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #111;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
.logo-img {
  height: 40px;
  width: auto;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, padding 0.3s ease;
}
.nav-links li a:hover {
  color: #f4c542;
  padding-bottom: 3px;
  border-bottom: 2px solid #f4c542;
}
.nav-links li a.active {
  color: #f4c542;
  font-weight: bold;
  border-bottom: 2px solid #f4c542;
}

.nav-links li a i {
  margin-right: 8px;
  font-size: 1.12em;
  vertical-align: middle;
}

/* ====== Mobile Menü ====== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #111;
    width: 100%;
    padding: 10px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    text-align: center;
    padding: 10px 0;
  }
}
/* ====== Responsive Anpassungen ====== */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .about {
    padding: 40px 20px;
    font-size: 1rem;
  }
  .about p {
    line-height: 1.6;
  }
  .signature {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 30px;
  }
  .branding-container h2 {
    font-size: 1.8rem;
  }
  .branding-container p {
    font-size: 1rem;
  }
}
section {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}
/* ====== Über mich und Leistungen Bereich ====== */
.about {
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  border-bottom: 4px solid #38bdf8;
  padding-bottom: 80px;
}
.about img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto 0;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .about img {
    width: 90%;
    max-width: 300px;
    margin: 20px auto;
  }
}
#leistungen {
  background-color: #1e293b;
  padding: 80px 30px 60px;
  border-top: 4px solid #38bdf8;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#leistungen h2 {
  color: #0077cc;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
/* Kontaktbereich */
#kontakt {
  background-color: #1e293b;
  padding: 60px 20px;
  text-align: center;
}
#kontakt h2 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 2.5rem;
}
#kontakt p {
  color: #dddddd;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #2d3748;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-form label {
  display: block;
  color: #e2e8f0;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  background-color: #1e293b;
  border: 1px solid #333;
  border-radius: 6px;
  color: #ddd;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #FFD700;
  outline: none;
}
.contact-form button {
  background-color: #22c55e;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #16a35c;
}
/* ====== Lightbox ====== */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
#lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
#lightbox.hidden {
  display: none;
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}
/* ====== Branding-Logo Bereich ====== */
.branding-logo {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
  margin: 60px auto 30px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
  animation: pulseLogo 3s ease-in-out infinite;
}
@keyframes pulseLogo {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.branding-container {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-top: 4px solid #38bdf8;
}
.branding-container h2 {
  color: #0077cc;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease forwards;
}
.branding-container p {
  color: #facc15;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 40px;
  animation: fadeInUp 1.5s ease forwards;
}

.em-name {
  font-family: 'Bebas Neue', sans-serif;
  color: #19e6ff;
  font-weight: 900;
  letter-spacing: 2.5px;
  padding-right: 12px;
  filter: brightness(1.22);
  text-shadow:
    0 8px 32px rgba(0,0,0,0.99),
    0 1px 4px #fff,
    0 0 12px #00b0ff,
    2px 2px 28px #0ef,
    0 0 0 #fff;
  -webkit-text-stroke: 2.5px #091d31;
  text-stroke: 2.5px #091d31;
  transition: color 0.2s;
}

.em-webdesign {
  font-family: 'Poppins', 'Oswald', 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: 3.8px;
  padding-left: 12px;
  background: linear-gradient(90deg, #FFD700 20%, #FFFDE4 60%, #fff9c4 100%);
  color: #FFD700;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 10px 42px rgba(0,0,0,0.96),
    2px 5px 26px #FFD700,
    0 2px 24px #0077cc;
  -webkit-text-stroke: 2.5px #252525;
  text-stroke: 2.5px #252525;
  position: relative;
  overflow: hidden;
  animation: shineGold 2.4s linear 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.06;
  letter-spacing: 2.8px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  animation: fadeInZoom 1.5s cubic-bezier(0.68,-0.6,0.32,1.6) forwards;
}


@media (max-width: 600px) {
  .hero h1 {
    gap: 9px; /* Abstand zwischen den Namen-Teilen bleibt */
    /* font-size entfernt! */
  }
  .em-name, .em-webdesign {
    padding: 0;
    -webkit-text-stroke: 1.2px #091d31;
    text-stroke: 1.2px #091d31;
  }
}


