@charset "utf-8";

/*
* CSS-Design
* Kristin Neumann 
* Grafik- & Webdesign

Farben:

Lila
#7b34ea
rgba(123, 52, 234, 1)

Dunkellila
#5624a3
rgba(86, 36, 163, 1)

Türkis
#33cccc
rgba(51, 204, 204, 1)

Schwarz 
#180a2e
rgba(24, 10, 46, 1)

Weiß
#fafafa
rgba(250, 250, 250, 1)
*/

/*========Globale Einstellungen=======*/

/* Webfonts-Einbindung */
@import url("https://use.typekit.net/euu5zsv.css");

/* Reset */
* {
    margin: 0;
    padding: 0;
    -mozbox-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Typo */
body {
    font: 300 1.125rem/1.44 'bricolage-grotesque', Helvetica, Arial, sans-serif;
    color: #180a2e;
    background: #fafafa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'bricolage-grotesque', Helvetica, Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
}

h2 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    color: #7b34ea;
}

a {
    color: #7b34ea;
    text-decoration: none;
}

a:hover {
    color: #33cccc;
}

p {
    margin: 0 0 20px;
}

li {
    margin-bottom: 20px;
    list-style: none;
}

.lila {
    color: #7b34ea;
}

.tuerkis {
    color: #33cccc;
}

.bold {
    font-weight: 600;
}

.light {
    font-weight: 300;
}

.chinchilla {
    font-family: 'chinchilla';
    color: #7b34ea;
    text-transform: uppercase;
    font-size: 3rem;
}

.center {
    text-align: center;
}

.preis {
    color: #7b34ea;
    font-weight: 500;
    font-size: 1.25rem;
}

.light {
    background: #7b34ea;
    color: #fafafa;
}

.trennlinie {
    border: none;
    height: 1px;
    background-color: #7b34ea;
    margin: 40px auto;
    max-width: 300px;
}

.button {
    display: inline-block;
    background: #7b34ea;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 25px 25px 20px 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fafafa;
    font-weight: 500;
    transition: all 0.2s ease;
}

.button:hover, .button:active {
    background: #33cccc;
    border-radius: 5px;
    color: #fafafa;
}

.button-white {
    display: inline-block;
    background: #fafafa;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 25px 25px 20px 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7b34ea;
    font-weight: 500;
    transition: all 0.2s ease;
}

.button-white:hover, .button-white:active {
    background: #33cccc;
    border-radius: 5px;
    color: #fafafa;
}

/* Layout */

/*html, body {
    height: 100%;
    overflow-x: hidden;
    position: relative;
}*/

body {
    position: relative;
    z-index: 1;
}

.wrapper {
    max-width: 1250px;
    padding: 0 25px;
    margin: 0 auto;
}

section {
  margin: 0 0 100px;
}

html {
    scroll-behavior: smooth;
}

.bildraster {
    padding: 3rem 1rem;
    text-align: center;
}
  
.bildraster-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
  
.bild-box {
    flex: 1 1 calc(25% - 15px);
    max-width: calc(25% - 15px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
}
  
.bild-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.column {
    float: left;
    margin: 25px 0 25px 5%;
    padding: 25px 0;
}

.column:first-child{
    margin-left: 0;
}

.col_1 {
    width: 100%;
}

.col_1_2 {
    width: 47.5%;
}

.col_1_3 {
    width: 30%;
}

.col_2_3 {
    width: 65%;
}

.col_1_4 {
    width: 21.25%;
}

.col_3_4 {
    width: 73.75%;
}

.no-gutter .column {
    margin: 0;
    padding: 60px;
}

.no-gutter .col_1_2 {
    width: 50%;
}

.no-gutter .col_1_3{
    width: 33.33%;
}
     
.no-gutter .col_2_3{
    width: 66.66%;
}
     
.no-gutter .col_1_4{
    width: 25%;
}
     
.no-gutter .col_3_4{
    width: 75%;
}

/* Clearfix */
.row:before,
.row:after {
content: " ";
display: table;
}
 
.row::after {
clear: both;
}

img {
    max-width: 100%;
    width: auto;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fafafa; 
    box-shadow: 0 5px 10px rgba(0,0,0,0.05); 
}

.topbar {
    background-color: #5624a3;
    color: #fafafa;
    font-size: 0.9rem;
    text-align: center;
    padding: 8px 0;
}

header p {
    margin: 0;
}
  
.header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fafafa;
    border-bottom: 2px solid #180a2e;
   /* box-shadow: 0 5px 10px rgba(34, 34, 34, 0.15);*/
}
  
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 1rem;
}

.header-logo {
    margin-left: 0;
    padding-left: 0;
}
  
.header-logo img {
    display: block;
    max-height: 60px;
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
}

.header-cta {
    margin-right: 0;
    padding-right: 1rem;
}


.header-logo,
.header-cta {
  flex: 0 0 auto;
}

.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    padding: 0 2rem; /*Abstand zum Logo + Button */
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
  
.main-nav ul li a {
    text-decoration: none;
    color: #180a2e;
    font-weight: 500;
    font-size: 1.1rem;
}
  
.main-nav ul li a:hover {
    color: #33cccc;
}

.main-nav ul li a:active {
    color: #7b34ea;
}

.main-nav a.active {
    color: #7b34ea;
    font-weight: bold;
}
  
.mobile-menu-button {
    display: none;
    color: #7b34ea;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Footer */

footer {
    background-color: #180a2e;
    color: #fafafa;
    font-size: 1rem;
}

footer li {
 list-style: none;
 margin-bottom: 0;
}

footer li a {
    text-decoration: none;
    color: #fafafa;
}

footer li a:hover{
    color: #33cccc;
    transition: all 0.15s linear 0s;
    }

footer .column {
    padding: 0;
}

footer a {
    color: #fafafa;
}

footer a:hover {
    color: #33cccc;
    transition: all 0.15s linear 0s;
}

.socials {
    color: #7b34ea;
}

footer a img {
    display: inline-block;
    max-width: 35px;
    height: auto;
    padding: 0;
    margin: 0 5px;
}

footer a:first-of-type img {
    margin-left: 0;
}

.copyright {
    background: #fafafa;
    text-align: center;
    font-size: 0.8rem;
    color: #5624a3;
    margin: 0 auto;
    padding: 10px 0;
}

/* To-the-top */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: -5px;
    width: 50px;
    height: 50px;
    background-color: rgba(24, 10, 46, 0.5);
    color: #fafafa;
    font-size: 1.5rem;
    text-align: center;
    line-height: 50px; 
    border-radius: 15%;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}  
  
.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Cookie-Banner */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    z-index: 9999;
    display: none; /* ← wichtig: nur diese Zeile! */
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
  
.cookie-banner p {
    margin: 0;
    padding-right: 10px;
    color: #ccc;
}
  
.cookie-banner a {
    color: #7b34ea;
    text-decoration: underline;
}
  
#cookie-banner button {
    background-color: #7b34ea;
    color: #fafafa;
    border: none;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    cursor: pointer;
    border-radius: 4px;
}

/*=======Startseite=======*/

/* Hero */
.hero .hero-casestudy {
    padding: 0;
    margin-bottom: 30px;
}

.hero .column {
    margin-bottom: 0;
    padding-bottom: 0;
}

.hero h1 {
    text-align: left;
    line-height: 1.2;
    font-size: 80px;
}

.hero h2 {
    font-weight: 500;
    color: #7b34ea;
    margin-top: 40px;
}

.hero p {
    max-width: 750px;
    font-size: 1.5rem;
}

.hero .chinchilla {
    font-size: 3rem;
}

.hero p.award {
    font-size: 0.9rem;
}

.hero img {
    margin-bottom: 20px;
}

.award-siegel {
    animation: float 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}


/* Leistungen */

.leistungen {
    min-height: 130vh;              /* genug Scrollraum nach unten & oben */
    overflow: visible !important;   /* verhindert Blockieren von Animationen */
    position: relative;
    z-index: 1;
    background: #fafafa;          /* sicherer Hintergrund */
    padding-top: 30px;
    text-align: center;
}

.leistungen h2 {
    margin: 0 0 30px;
}

.leistungen h3 {
    font-size: 3rem;
    font-weight: 500;
    color: #7b34ea;
    margin-bottom: 0;
}

.leistungen p {
    font-size: 1.5rem;
    font-weight: 300;
    padding: 20px 0;
    margin-top: 0;
}

.leistungen .col_1 > div {
    margin-bottom: 60px;            /* Abstand zwischen den Leistungsbereichen */
}

.scroll-indicator {
    text-align: center;
    margin-top: 30px;
    animation: bounce 2s infinite;
}
  
.scroll-indicator .arrow {
    font-size: 3rem;         
    font-weight: bold;         
    color: #7b34ea;
}
  
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(10px); }
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 800ms;
}
  
[data-aos].aos-animate {
    opacity: 1;
}


/* Über mich */

.ueber {
    background: #fafafa;
    padding: 60px 0;
    clip-path: none;    /* verhindert, Überlappung in den Leistungsbereich */
    z-index: 0;
    position: relative;
    margin-top: 0;
}

.ueber img {
    border-radius: 50%;
    max-width: 400px;
    margin: 120px auto;
    display: block;
}

.ueber h2 {
   margin-top: 20px;
   color: #7b34ea;
}

.ueber-img {
    float: right;
}

.ueber-text {
    float: left;
}

/* Projekte */

.projekte {
    text-align: center;
    padding: 2rem 1rem;
  }
  
.projekte h2 {
    margin-bottom: 3rem;
}

.projekte p {
    max-width: 1200px;
    margin: 0 auto 20px;
}
  
/* Flex-Grid */
.projekte-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 2rem;
}
  
.projekte .card {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5%;
    transition: transform 0.3s ease;
    color: #fafafa;
}
  
.projekte .card img {
    width: 100%;
    height: auto;
    display: block;
}
  
/* Overlay-Effekt */
.overlay {
    position: absolute;
    inset: 0;
    background-color: #7b34ea;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #33cccc;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}
  
.card:hover .overlay {
    opacity: 1;
}
 
.link {
    color: #fafafa;
    text-decoration: none;
}
  
.link:hover {
    color: #33cccc;
}
  
/* Button unten */
.projekte-button {
    margin-top: 4rem;
    text-align: center;
}
  
.projekte .button {
    margin-top: 0;
}
  
/* Kundenstimmen */

.kundenstimmen {
    background-color: #7b34ea;
    color: #fafafa;
    padding: 50px 0;
    margin-bottom: 0;
}

.kundenstimmen h2 {
    text-align: center;
    margin-bottom: 40px;
}

.kundenstimmen .chinchilla {
    color: #33cccc;
    margin: 10px 0 20px;
}

blockquote {
    color: #fafafa;
    margin-bottom: 20px;
}

.kundenstimmen p{
    font-weight: 600;
    margin-bottom: 0;
}

.slide img {
    border-radius: 50%;
    max-width: 100px;
    margin-bottom: 20px;
}

.slider-container {
  position: relative;
  max-width: 960px;
  /*max-height: 700px;*/
  margin: 0 auto;
  padding: 0 100px;         /* zusätzlicher Innenabstand für Pfeile */
}

.slider {
  min-height: 550px; 
  position: relative;
}

.slide {
  display: none;
  text-align: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.6s ease;
}

.slide.active {
  display: block;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}

.slider-controls button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #33cccc;
  cursor: pointer;
  padding: 0 15px;
  z-index: 10;
}

.slider-controls button:first-child {
  left: 0;
}

.slider-controls button:last-child {
  right: 0;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}
  
.slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #fafafa;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
  
.slider-dots .dot.active {
    background-color: #33cccc;
}

/* News */

.news {
    padding-top: 100px;
}

.news h2 {
    text-align: center;
    margin-bottom: 40px;
}

.news img {
    border-radius: 5%;
}

.newslink:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news .column {
    position: relative;
    margin-bottom: 0;
}

.newstext {
    margin-top: 20px;
}

/* CTA */

.cta {
    background: #7b34ea;
    color: #fafafa;
    margin-bottom: 0;
}

.cta .column {
    margin-bottom: 0;
    padding-bottom: 0;
}

.cta h2 {
    text-align: center;
}

.cta h3 {
    color: #fafafa;
    text-align: center;
    margin-top: 50px;
}

.cta p {
    text-align: center;
}
.cta .chinchilla {
    color: #33cccc;
    font-size: 3rem;
}

/* Newsletter */

.newsletter {
    background-color: #f8f8f8;
    padding: 3rem 1rem;
    text-align: center;
    margin-bottom: 0;
}
  
.newsletter .wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
  
.newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
  
.newsletter input[type="email"] {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
}
  
.newsletter button {
    /* vorhandene Button-Klasse nutzen */
    padding: 0.75rem 2rem;
    border-radius: 5px;
    background-color: #7b34ea;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}
  
.newsletter button:hover {
    background-color: #33cccc;
}

/*======= Logo & Branding / Webdesign =======*/

.hero-leistung h1,
.hero-portfolio h1 {
    font-size: 4rem;
}

.hero-leistung p,
.hero-portfolio p {
    font-size: 1.5rem;
}

.hero-leistung img,
.hero-portfolio img {
    border-radius: 5px;
}

.ablauf {
    background: #7b34ea;
    color: #fafafa;
    padding: 60px 0;
}

.ablauf .chinchilla {
    color: #fafafa;
}

.ablauf h2,
.zielgruppe h2,
.faq h2 {
    text-align: center;
}

.ablauf h3 {
    font-size: 2rem;
    color: white;
}

.ablauf hr {
    border-color: #33cccc;
    border-width: 1px;
}

.ablauf .content ul li {
    padding-bottom: 20px;
}

.faq {
    margin: 100px 0 0;
}
     
.accordion .toggle {
    display: none;
}
     
.accordion .option {
    position: relative;
    border-bottom: 1px solid #33cccc;
}

.accordion .title {
    background: #fafafa;
    padding: 10px 0 10px 30px;
    margin-top: 20px;
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
}

.faq .accordion .title {
    background: #fafafa;
    padding: 10px 0 10px 30px;
    margin-top: 20px;
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq li {
    font-size: 1rem;
}

.faq .accordion {
    margin-top: 50px;
}
     
.accordion .title,
.accordion .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
     
.accordion .title:after, .accordion .title:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 17px;
    width: 2px;
    height: 0.75em;
    background-color: #33cccc;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.accordion .option:hover .title:after,
.accordion .option:hover .title:before {
    background-color: #7b34ea;
}
     
.accordion .title:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
     
.accordion .content {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
}

.accordion .content p {
    margin: 0;
    padding: 0 0 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.accordion .toggle:checked + .title + .content {
    max-height: 2000px;
    transition: max-height 0.3s ease
}
.accordion .toggle:checked + .title:before {
     -webkit-transform: rotate(90deg) !important;
    transform: rotate(90deg) !important;
}

.benefit {
    margin-top: 0;
    margin-bottom: 0;
}

.benefit .row {
   margin: 0;
}

.benefit .column {
    width: 50%;
    margin: 0;
    padding: 0;
}

.benefit img {
    display: block;
    width: 100%;
    height: auto;
}

.benefit h2 {
    font-size: 2.5rem;
    line-height: 1;
    margin-top: 100px;
}

.benefit h2,
.benefit p,
.benefit a,
.benefit ul {
    max-width: 800px;
    margin-left: 60px;
}


/*====== Über mich ======*/

.hero-ueber {
    background-color: #7b34ea;
    color: #fafafa;
    padding: 30px 0;
}

.hero-ueber .column {
   padding: 0;
}

.hero-ueber h1 {
    color: #fafafa;
    text-align: center;
    font-size: 5rem;
}

.ueber-mich img {
    border-radius: 50%;
    max-width: 400px;
    margin-left: 450px;
    display: block;
}

.warum {
    background: #7b34ea;
    color: #fafafa;
    padding: 50px 0 50px;
    margin: 0;
}

.hero-ueber h2,
.warum h2,
.kunden h2,
.weiterbildung h2 {
    line-height: 1.15;
    text-align: center;
    margin-bottom: 50px;
}

.warum .column {
    margin: 0;
    padding: 20px;
}

.warum h2:nth-of-type(2) {
    margin-top: 30px;
}

.warum h3,
.warum .chinchilla {
    color: #fafafa;
}

.werte {
    background: #F5F5F5;
    padding: 60px 0;
}

.werte .chinchilla,
.werte h2,
.angebot .chinchilla,
.angebot h2, .kunden .chinchilla,
.kundenstimmen .chinchilla,
.news .chinchilla {
    text-align: center;
}

.hero-ueber img {
    border-radius: 50%;
    max-width: 400px;
    margin: 50px 0 0 400px;
    display: block;
}

.angebot img {
    margin-bottom: 20px;
}

.hero-ueber .column.col_1_2:nth-of-type(2) {
    max-width: 750px;
    padding-left: 0;
    padding-right: 0;
}

.hero-ueber h1 {
    margin-top: 30px;
}

.kunden p {
    text-align: center;
}
  
.kunden-logo {
    float: left;
    width: 20%; /* 4 Logos pro Reihe */
    text-align: center;
    margin-bottom: 2rem;
}
  
.kunden-logo img {
    max-height: 60px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: 0.3s ease;
}
  
.kunden-logo img:hover {
    filter: none;
    opacity: 1;
}

/*====== Portfolio ======*/

.hero-portfolio {
    margin-bottom: 0;
}

.portfolio {
    padding: 4rem 1rem;
}
  
.portfolio h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
  
.portfolio-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}
  
.portfolio-item {
    flex: 0 1 calc(50% - 1.5rem); /* zwei Items pro Zeile bei 3rem gap */
}
  
.portfolio-item img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}
  
.portfolio-item h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
  
.portfolio-item p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}


/* ======Barrierefreiheit-Statement ======*/

.barrierefreiheit-statement {
    margin-top: 100px;
}

/* CTA-Leistungen */

.cta-leistungen {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 100px;
}

.cta-leistungen .col_1 {
    max-width: 800px;
    margin: 0 auto;
}

/* =======Kontakt======= */

.kontaktformular h1 {
    margin: 50px 0 50px;
}

.kontaktformular button {
    background-color: #7b34ea;
    color: #fafafa;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin: 20px 0 30px;
}

.kontaktformular button:hover {
    background-color: #33cccc;
}

.kontaktformular img {
    border-radius: 50%;
    max-width: 250px;
    display: block;
    margin: 20px 0 30px;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0 0 2rem;
}

legend {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.checkbox, .datenschutz {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/*====== Landingpages ======*/

.warum-bautzen h2,
.mini-case h2,
.kunden-zitat h2 {
    margin-bottom: 50px;
}

.kunden-zitat h2 {
    text-align: center;
}

.mini-case {
    padding: 4rem 0;
    background-color: #fafafa;
  }
  
.case-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}
  
.case-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}
  
.case-text {
    flex: 1;
    min-width: 280px;
}
  
.case-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.kunden-zitat img {
    display: block;
    border-radius: 50%;
    max-width: 100px;
    margin: 0 auto;
}

.kunden-zitat cite {
    font-style: italic;
    line-height: 1.6;
    font-size: 1.2rem;
    color: #180a2e;
    text-align: center;
    max-width: 800px;
    margin: 20px auto;
    display: block;
}


/* ======Newsletter====== */

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
  
.newsletter-form input[type="email"] {
    max-width: 400px;
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
    text-align: left;
}
  
.newsletter-form input[type="email"]::placeholder {
    color: #999;
}
  
.newsletter-form input[type="email"]:focus {
    border-color: #7b34ea;
    outline: none;
    box-shadow: 0 0 0 2px rgba(123, 52, 234, 0.2);
}
  
.newsletter-form button.button {
    max-width: 220px;
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #7b34ea;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
  
.newsletter-form button.button:hover {
    background-color: #33cccc;
}

/* SPAM-SCHUTZ */

.honeypot-wrapper {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}
  
.honeypot {
    display: none;
}


/*=======Responsive Anpassungen======*/

/*für kleinere Screens (Macbook 13zoll)*/

/* ------Layout allgemein------*/ 

@media only screen and (max-width: 1600px) {
    .back-about {background-position: center top; min-height: 600px;}

/*------Hero------*/
    .hero .no-gutter .col_1_2 { padding-bottom: 0;}

/*------Leistungen-----*/
    .leistungen { min-height: 160vh;}  
}

/* Desktop: Sticky-Button ausblenden */
@media screen and (min-width: 951px) {
    .mobile-sticky-cta {display: none !important;}
}

/* für Tablet & Smartphones*/

/*------Layout allgemein------*/

@media only screen and (max-width: 950px) {
.col_1, .col_1_2, .col_1_3, .col_2_3, .col_1_4, .col_3_4, 
.no-gutter .col_1_2, .no-gutter .col_1_3, .no-gutter .col_2_3, 
.no-gutter .col_1_4, .no-gutter .col_3_4 {width: 100%;}

.column {margin-left: 0; float: none;}

section {margin: 0 0 40px;}

body, section, .column, .wrapper {text-align: center;}

h1, h2, h3, h4, h5, h6, p, a.button {margin-left: auto; margin-right: auto; display: block; }

h1 {font-size: 2.5rem; line-height: 1.2;}

h2 {font-size: 2rem; line-height: 1.3;}

h3 {font-size: 1.2rem;}

.chinchilla { line-height: 1.2;}

.button {display: block; width: 100%; padding: 15px 0; margin: 40px auto 20px auto; font-size: 1.125rem;}

html, body {max-width: 100%; overflow-x: hidden;}

.back-about {background-position: center top; min-height: 300px; /* ggf. Höhe anpassen */}

.projekte h2, .kundenstimmen h2, .news h2, .cta h2 {font-size: 2.3rem; text-align: center; margin-left: auto; margin-right: auto;}

.datenschutz .col_1, .impressum .col_1 .col_1_2 {text-align: left;}

/*------Header------*/

.header-container {
    padding-top: 1rem;
}
  
.header-inner {
    flex-direction: column;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}
  
.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
  
.header-logo img {
    max-height: 50px;
}
  
.main-nav {
    padding: 0;
}
  
.main-nav ul {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}
  
.main-nav ul.show {
    display: flex;
}
  
.main-nav a.active {
    color: #7b34ea;
    font-weight: 700;
    border-bottom: 2px solid #7b34ea;
}
  
.mobile-menu-button {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: #7b34ea;
    cursor: pointer;
    }
  
/*Header-CTA mobil ausblenden */
.header-cta {
    display: none !important;
}
  
/*Sticky CTA nur mobil anzeigen */
.mobile-sticky-cta {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background-color: #33cccc;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: block;
}
  
.topbar {
    padding: 12px 20px;
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
}

/*------Hero------*/

.hero {padding-top: 0; margin-bottom: 0;}
.hero h1 {text-align: left; font-size: 2.5rem; line-height: 1.2; padding: 0; margin-bottom: 0; }
.hero p {text-align: left;}

/*------Leistungen------*/

.leistungen {padding-top: 0; margin-top: 0;}
.leistungen h2 {font-size: 2.5rem; margin: 0 0 30px;}
.leistungen h3 {font-size: 2rem; font-weight: 500; color: #7b34ea; margin-bottom: 0;}
.leistungen p {font-size: 1.7rem; padding: 8px 0;}   


/*------Über-mich------*/
  
.ueber {
    padding: 20px 0;
}
    
.ueber-img {
    float: none !important;         /* Reihenfolge vertauscht: Erst Bild, danach Text*/
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}
    
.ueber-img img {
    display: block;
    margin: 0 auto;
    max-width: 350px;               /* optional für Mobilgeräte */
}
    
.ueber-text {
    float: none;
    width: 100%;
    margin-top: 0;
    text-align: center;
}
    
.ueber-text h2,
.ueber-text p,
.ueber-text a {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: block;
}

/*------Projekte------*/

.projekte-grid {
    gap: 10px;
    }

.projekte .card {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
    }
.projekte .card {
      flex: 1 1 100%;
      max-width: 100%;
    }

/*------Slider Kundenstimmen------*/

.slider-container {padding: 0 30px;}
.slider-controls button {font-size: 2rem;}

/*------CTA------*/

.cta {margin-top: 80px;}
.cta h2 {margin: 20px; line-height: 1.2;}
.cta .column {padding: 0;}

/*=======Logo & Branding=======*/

.ablauf .column {
    padding: 0;
}

.benefit .column.col_1_2:first-child {
  padding-left: 0;
  padding-right: 0;
}

.benefit img {
  display: block;
  width: 100vw;
  max-width: none;
  height: auto;
  margin: 0;
}

.benefit .column {
    float: none;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
}

.benefit .column.col_1_2:last-child {
  padding: 2rem 1.5rem;
  text-align: center;
}

.benefit h2,
.benefit ul,
.benefit p {
  max-width: 90%;
  margin: 0 auto 1.2rem;
}

.benefit ul {
  padding-left: 0;
  list-style-position: inside;
}

.benefit {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
}

.benefit h2,
.benefit p,
.benefit a {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.zielgruppe .accordion {
    text-align: left;
}

.zielgruppe .accordion .title,
.zielgruppe .accordion .content,
.zielgruppe .accordion ul,
.zielgruppe .accordion li {
    text-align: left;
}

.faq h2 {
    font-size: 2.5rem;
}

.faq .column {
    margin-top: 0;
    padding-top: 0;
}

.faq .accordion .title {
    line-height: 1.2;
}
/*======Über mich======*/

.ueber-mich .column {
    padding-bottom: 0;
}

.hero-ueber h1 {
    margin: 0;
    font-size: 2rem;
}

.ueber-mich img {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    display: block;
}

.hero-ueber .column.col_1_2:nth-of-type(2) {
    max-width: 100%;
    padding: 0 20px;
}

.werte .chinchilla {
    line-height: 1.1;
}

.werte .column {
    margin: 0;
}

.kunden-logo {
    width: 50%; /* 2 Logos pro Zeile */
}

.weiterbildung .col_1_3 img {
    display: inline-block;
    margin: 0 auto 1rem;
}

faq {
    text-align: left;
}

.faq h2,
.faq .option,
.faq .title,
.faq .content,
.faq li {
    text-align: left;
}

.faq .accordion {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.kunden-logo {
    width: 100%; /* 1 Logo pro Zeile */
}

/*======Portfolio=====*/

.hero-leistung h1,
.hero-portfolio h1 {
    font-size: 3.5rem;
}

.portfolio-grid {
    flex-direction: column;
  }

  .portfolio-item {
    flex: 1 1 100%;
    max-width: 100%;
  }

  
/*======DATENSCHUTZ======*/

.datenschutz h2 {
    margin-top: 30px;
}


/*======Projektanfrage======*/
#projektanfrage-form {
    text-align: left;
}
  
#projektanfrage-form input,
#projektanfrage-form textarea,
#projektanfrage-form label {
      text-align: left;
}

/*=======Kontakt=======*/

.kontaktformular h1 {
    text-align: left;
    margin-top: 50px;
}

.kontaktformular .column.col_1_2 img {
    max-width: 80%;
    height: auto;
    margin: 0 auto 30px;
}

.kontaktformular,
.kontaktformular .column,
.kontaktformular .column * {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#kontaktanfrage-form {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
}

@media screen and (max-width: 600px) {
    .bild-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}