/* Allgemein */
body {
  margin: 0;
  font-family: "Stevie Sans", sans-serif;
  font-weight: 300;
  background-color: #ffffff;
  color: #222222;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header Hero */
.hero-header {
  background: linear-gradient(to right, #ff8f3a, #e3adf7);
  padding: 2rem 2rem 1rem 2rem;
  text-align: center;
}

.hero-header .logo {
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.subhero {
  font-family: "Stevie Sans", sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: #ffffff;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* Schlagworte */
.keywords-icons {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 3rem 0;
}

.keywords-icons .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  max-width: none;
}

.keyword {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.keyword .icon {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
  display: block;
}

.keyword p {
  font-family: "Dazzle Unicase Light", sans-serif; /* Dazzle Unicase Light */
  font-weight: 300; /* Light */
  font-size: 1.4rem; /* etwas kleiner */
  color: #555;
  text-transform: none;
  margin: 0;
  line-height: 1;
}

/* Galerie */
.impressions-gallery {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.impressions-gallery img {
  height: 180px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
}


.leistungen h2,
.leistungen h3 {
  font-family: "Dazzle Unicase", sans-serif;
  font-weight: 300; /* Light */
  text-transform: uppercase;
  color: #222222;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.leistungen h2 { font-size: 2rem; }
.leistungen h3 { font-size: 1.6rem; }

.leistungen p {
  font-family: "Stevie Sans", sans-serif;
  font-weight: 300;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ================================
   About Me
=================================*/
.about-me {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 250px;
}

.about-text h2 {
  font-family: "Dazzle Unicase", sans-serif; /* About Me Überschrift */
  font-weight: 300;
  font-size: 2rem;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 0.5rem;
}

.about-text p {
  font-family: "Stevie Sans", sans-serif; /* Text bleibt wie bisher */
  font-weight: 300;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.portrait {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center bottom;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ================================
   CTA-Kasten
=================================*/
.about-cta {
  display: inline-block;
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding: 1.2rem 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
   background: linear-gradient(to right, #ff8f3a, #e3adf7);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);  /* <-- hier fehlt die abschließende Klammer! */
}

/* Footer */
#site-footer {
  background: linear-gradient(to right, #ff8f3a, #e3adf7); /* exakt wie Hero */
  color: #ffffff; /* weiße Schrift */
  font-family: "Stevie Sans", sans-serif; /* wie Body */
  padding: 36px 20px;
  text-align: center;
}

/* Innerer Container */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Desktop: drei-spaltig */
@media (min-width: 760px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

/* Textelemente */
.brand {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px 0;
}

.address,
.contact,
.copyright {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
}

/* Links in weiß */
.footer-inner a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 2px;
}

.footer-inner a:hover {
  opacity: 0.95;
  text-decoration: underline;
}

.footer-nav {
  margin: 6px 0;
  font-size: 14px;
}

/* ===================================
   Mobile Optimierung (Bildschirme ≤760px)
   Hängt man ans Ende der bestehenden CSS-Datei an
===================================*/
@media (max-width: 760px) {

  /* ------------------------------
     Header Hero
  ------------------------------ */
  .hero-header {
    padding: 2rem 1rem 1rem 1rem; /* schmalere Seitenabstände */
    text-align: center;
  }

  .hero-header .logo {
    max-width: 90%;  /* passt sich an die Bildschirmbreite an */
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .subhero {
    font-size: 1.2rem;  /* kleiner, damit „Lens&Media“ nicht abgeschnitten wird */
    line-height: 1.3;
    margin-top: 0.5rem;
    display: block;
  }

  .container.header-content {
    padding: 0;
  }

  /* ------------------------------
     Galerie horizontal scrollbar
  ------------------------------ */
  .impressions-gallery {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth scroll iOS */
    padding-bottom: 1rem;
  }

  .impressions-gallery img {
    flex: 0 0 auto;      /* verhindert, dass Bilder untereinander rutschen */
    height: 140px;       /* kleinere Bilder auf Mobile */
    width: auto;
    scroll-snap-align: start;
    border-radius: 0;
    cursor: grab;
    transition: transform 0.2s;
  }

  .impressions-gallery img:active {
    cursor: grabbing;
  }

  /* ------------------------------
     About Me / Leistungen
  ------------------------------ */
  .about-me {
    flex-direction: column; /* Text über Bild */
    gap: 2rem;
  }

  .about-text p,
  .leistungen p {
    font-size: 0.95rem; /* kleinere Textgröße */
  }

  .leistungen h2,
  .leistungen h3,
  .about-text h2 {
    font-size: 1.6rem; /* kleinere Überschriften */
  }

  /* ------------------------------
     CTA / Kontakt Button
  ------------------------------ */
  .about-cta {
    margin-bottom: 4rem; /* mehr Abstand zum Footer */
  }

  /* ------------------------------
     Footer
  ------------------------------ */
  #site-footer {
    padding: 28px 15px; /* kompakter auf Mobile */
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
  }

}
