    :root {
  --bg-main: #000;
  --bg-secondary: #000;
  --text-light: #f0f0f0;
  --text-dark: #111;
  --accent: #ff2e88;
  --border: #333;
  --color-dark: #121212;
  --color-light: #f0f0f0;
  --color-accent: #ff0077;
  --font-main: 'Poppins', sans-serif;
    --font-title: 'Barrio', cursive; /* Barrio Schrift für Titel */
}



html {
  
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-light);
    min-height: 100vh;
overflow-x: hidden;
 
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
 
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  
}



.logo img {
  max-width: 50px;  /* Macht das Logo responsiv */
  height: auto;     /* Verhindert Verformung */
}


nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  position: relative;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  padding-bottom: 5px;
  transition: color 0.3s ease;
  user-select: none;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--accent);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  height: 24px;
  width: 30px;
}

.burger span {
  height: 3px;
  width: 25px;
  background-color: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Aktiver Zustand (X) */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
background-color: var(--accent);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  bottom: 8px;
    background-color: var(--accent);
}


.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  height: 100vh;
  width: 100%;
    
  background-color: var(--accent);
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 2rem;
  gap: 1rem;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 9999;
}

.mobile-menu a {
  color: var(--text-dark);
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #00FFCB;
}

/* When active */
.mobile-menu.active {
  transform: translateX(0%);
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
}
















.hero {
  padding: 4rem 2rem;
  background-color: var(--bg-main);
  color: var(--text-light);

}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 3rem;
  max-width: 80%;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--accent);
}

.hero-text p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 600px;
}




.hero-img {
    border-radius: 10px;
  width: 100%;
  max-width: 450px;
  opacity: 0;
  transform: scale(1.1) translateY(50px);
  transition: all 1.2s ease-in-out;
  will-change: transform, opacity;
    margin:0 auto;
    display: block;
}

/* Aktiver Zustand, wenn sichtbar */
.hero-img.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}


hr
{
    color:transparent;
    width: 100%;
    margin-top: 100px;
  opacity: 0;
}






.hero-btn {
  background-color: var(--accent);
  color: var(--text-dark);
  padding: 0.9rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 14px rgba(255, 46, 136, 0.4);
  user-select: none;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-25deg);
  transition: left 0.6s ease-in-out;
}

.hero-btn:hover::before {
  left: 125%;
}

.hero-btn:hover {
  transform: scale(1.05);
  background-color: #e02677;
  box-shadow: 0 6px 20px rgba(255, 46, 136, 0.6);
}

























.site-footer {
  background-color: var(--color-bg);
  color: var(--color-text);
  padding: 4rem 2rem;
  font-family: var(--font-main);
}

.footer-content {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-contact,
.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.footer-contact a,
.footer-links a,
.footer-social a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-links a:hover,
.footer-social a:hover {
  color: var(--color-accent-hover);
}

/* Kontaktformular */
.footer-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 2rem;
}

.footer-form input,
.footer-form textarea {
  grid-column: span 2;
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-accent);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  resize: vertical;
  font-family: var(--font-main);
}

.footer-form button {
  grid-column: span 2;
  background-color: var(--color-accent);
  color: black;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-form button:hover {
  background-color: var(--color-accent-hover);
    color: var(--accent)
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  color: #fff;
}

.footer-legal {
  margin-top: 0.5rem;
}

.footer-legal a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-accent);
}

/* Responsive Anpassung */
@media (max-width: 600px) {
  .footer-form {
    grid-template-columns: 1fr;
  }

  .footer-form input,
  .footer-form textarea,
  .footer-form button {
    grid-column: span 1;
  }
}



.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 0.3rem;
}

.footer-links a,
.footer-social a {
  position: relative;
  display: inline-block;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 2px;
}

.footer-links a::after,
.footer-social a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--color-accent-hover);
}

.footer-links a:hover::after,
.footer-social a:hover::after {
  width: 100%;
}







.section:nth-child(even)::before {
    content: '';
     width: 100%;
  
   height: clamp(1000px, 15vw, 1500px); /* Dynamische Höhe der Trennwand */
     position: absolute;
 background: linear-gradient(to right, #ff69b4, #2eccaa);
/* Rosa nach grünlicherem Türkis */


  transform: skewY(-5deg); /* Andere Schräge */
    z-index: -1; /* Damit die Trennwand hinter dem Inhalt bleibt */
     
  
 
}














/* Galerie-Section */
.gallery {
  padding: 4rem 1rem;
  background: transparent;
    
}

/* Galerie-Titel */
.Galerie {
  background-image: linear-gradient(#ff69b4, #2eccaa) !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
 
}

/* Galerie Überschrift */
.gallery h2 {
  text-align: center;
  font-size: 50px!important;
  margin-bottom: 2rem;
  font-family: var(--font-main);
}

/* Galerie-Container */
.gallery-container {
  column-count: 1;
  column-gap: 1rem;
  max-width: 100%; /* Volle Breite */
  margin: 0 auto;
  padding: 0 1rem;
}

/* Responsive Layout für größere Bildschirme */
@media (min-width: 600px) {
  .gallery-container {
    column-count: 3;
  }
}

@media (min-width: 900px) {
  .gallery-container {
    column-count: 5;
  }
}

/* Galerie-Section */
.gallery {
  padding: 4rem 1rem;
  background: transparent;
}

/* Galerie-Titel */
.Galerie {
  background-image: linear-gradient(#ff69b4, #2eccaa) !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  font-size: clamp(2rem, 6vw, 4rem) !important; /* Angepasste Schriftgröße */
}

/* Galerie Überschrift */
.gallery h2 {
  text-align: center;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  margin-bottom: 2rem;
  font-family: var(--font-main);
}

/* Galerie-Container */
.gallery-container {
  column-count: 1;
  column-gap: 1rem;
  max-width: 80%; /* Volle Breite */
  margin: 0 auto;
  padding: 0 1rem;
}

/* Responsive Layout für größere Bildschirme */
@media (min-width: 600px) {
  .gallery-container {
    column-count: 3;
  }
}

@media (min-width: 900px) {
  .gallery-container {
    column-count: 5;
  }
}

/* Einzelne Galerie-Elemente */
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

/* Galerie-Bilder */
.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover-Effekt für Galerie-Bilder */
.gallery-image:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Lightbox-Stil */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* Volle Breite */
  height: 100%; /* Volle Höhe */
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Lightbox-Inhalt */
.lightbox-content {
  position: fixed;
  width: 100%; /* Volle Breite */
  height: 100%; /* Volle Höhe */
  display: flex;
  justify-content: center;
  align-items: center;
    max-width: 900px;
}

/* Bild in der Lightbox */
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Bildunterschrift */
.caption {
  color: white;
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
}

/* Close Button */
.close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.3s ease;
    z-index: 1;
}

.close:hover {
  color: #f00;
}

/* Navigation Pfeile */
.prev, .next {
  position: absolute;
  top: 50%;
  font-size: 50px; /* Kleinere Pfeile für Mobile */
  color: white;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  transition: color 0.3s ease;
}

.prev:hover, .next:hover {
  color: var(--accent);
}

.prev {
  left: 50px;
}

.next {
  right: 50px;
}

/* Hover-Effekt für Gallery-Items */
.gallery-item img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover, .gallery-item img:focus {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Anpassungen für die Galerie */
@media (max-width: 600px) {
  .gallery-item {
    margin-bottom: 0.5rem; /* Verringert den Abstand */
  }

  .gallery-container {
    column-count: 1;
  }

  /* Responsive Lightbox */
  .lightbox {
    width: 100%;
    height: 100%;
  }

  .lightbox-content {
    width: 100%;
    height: 100%;
    padding: 1rem;
  }

  .lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}





@keyframes swing {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(4deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-4deg); }
  100% { transform: rotate(0deg); }
}

.pureart {
  background-image: linear-gradient(to right, #ff69b4, #2eccaa) !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  display: inline-block;
  animation: swing 2.5s ease-in-out infinite;
    font-size: 60px;
}

.pureart2 {
  background-image: linear-gradient( #ff69b4, #2eccaa) !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  display: block;
  margin: 0 auto;
  position: 
    relative;
    
    font-size: 60px;
}





.carousel-container {
  position: relative;
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
    margin-top:100px;
    border-radius: 10px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  height: auto;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.carousel-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 2rem;
  color: var(--text-light);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bg-secondary);
  color: var(--text-light);
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1;
}

.carousel-prev:hover, .carousel-next:hover {
  background-color: var(--accent);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

@media (max-width: 768px) {
  .carousel-slide img {
    border-radius: 5px;
  }

  .carousel-text {
    font-size: 1.5rem;
    bottom: 10px;
    left: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-prev, .carousel-next {
    font-size: 1.5rem;
  }

  .carousel-text {
    font-size: 1rem;
  }
}





/* Container für die Services */
.services {
  width: 100%;
  margin-top: 100px;
 margin-bottom: 100px;
  background-color:transparent;
}

/* Grid für die Karten */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* responsive Grid */
  gap: 20px;
  justify-items: center; /* Zentriert die Karten horizontal */
  align-items: center; /* Zentriert die Karten vertikal */
}

/* Styling für jede Service-Karte */
.service-card {
  background-color: var(--color-dark);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  color: var(--text-light);
  width: 90%;
  max-width: 350px;  /* Maximale Breite der Karten */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    overflow: auto;
    min-width: 250px;
}

/* Hover-Effekte für Service-Karten */
.service-card:hover {
  transform: translateY(-15px) scale(1.05); /* Hebt die Karte an und macht sie größer */
  box-shadow: 0 12px 24px rg(0, 0, 0, 0.4); /* Stärkerer Schatten für mehr Tiefe */
  background-color: var(--accent); /* Hintergrundfarbe ändert sich auf die Akzentfarbe */
  color: var(--color-dark); /* Textfarbe ändert sich für besseren Kontrast */
}

.service-card:hover h3 {
  color: var(--bg-secondary); /* Die Schriftfarbe des Titels wird dunkler */
}

.service-card:hover p {
  color: var(--bg-secondary); /* Auch der Text ändert sich auf eine hellere Farbe */
}

/* Styling für die Icons */
.service-card i {
  color: var(--accent); /* Farbe der Icons in der Akzentfarbe */
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease; /* Übergangseffekte für die Icons */
}

.service-card:hover i {
  transform: scale(1.2); /* Vergrößert das Icon */
  color: var(--color-dark); /* Farbänderung beim Hover */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .service-card {
    max-width: 70%;
    
      
     /* Auf kleineren Bildschirmen etwas kleinere Karten */
  }
}


.ablauf-section {
    padding: 40px 0;
    background-color: var(--bg-main);
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Überschrift der Section */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--accent);
    text-align: center;
    text-transform: uppercase;
}













/* Ablauf Section */
.ablauf-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8), rgba(0, 0, 0, 0.5)), no-repeat center center/cover;
    color: var(--text-light);
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Überschrift der Section */
.section-title {
    font-family: var(--font-title);
    font-size: 3rem;
    color: var(--accent);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
   
}

/* Grid Layout für Ablauf-Container */
.ablauf-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 1.5s ease-out;
  
}

/* Einzelne Ablauf-Items */
.ablauf-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icons */
.ablauf-icon i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
}

/* Hover-Effekt für Ablauf-Items */
.ablauf-item:hover {
    transform: translateY(-10px);
   box-shadow: 0 8px 20px rgba(255, 46, 136, 0.6);

}

/* Titel der Ablauf-Items */
.ablauf-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: #2eccaa;
    margin-top: 20px;
    text-align: left;
}

/* Text der Ablauf-Items */
.ablauf-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: 20px;
}

/* Hervorhebung von Schlagwörtern */
.highlight-underline {
    color: var(--accent);
    text-decoration: underline;
}

.highlight-bold {
    color: var(--accent);
    font-weight: bold;
}

/* Eingangsanimation für Elemente */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsives Design für kleinere Bildschirme */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .ablauf-container {
        grid-template-columns: 1fr;
    }

    .ablauf-title {
        font-size: 1.8rem;
    }

    .ablauf-text {
        font-size: 1rem;
    }
}

/* Responsives Design für sehr kleine Bildschirme (z.B. Smartphones) */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .ablauf-title {
        font-size: 1.5rem;
    }

    .ablauf-text {
        font-size: 0.9rem;
    }
}





























.about-me {
  padding: 4rem 2rem;
  
  color: var(--text-light);
  user-select: none;
}

.about-me-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image img {
  width: 250px;
  height: auto;
   
  

  object-fit: cover;
}

.about-text {
  text-align: center;
  font-family: var(--font-main);
    
    padding:25px;
    
     
    
backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px); /* für Safari */
}



.about-text h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 1rem;
  font-family: var(--font-main);
  color: var(--accent);
  letter-spacing: 1px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.about-text u {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--color-accent);
  color: inherit; /* oder eine andere gewünschte Textfarbe */
  font-weight: 500;
}


.about-text .accent {
  color: var(--accent);
  font-weight: 600;
}

.about-text .highlight {
  background: linear-gradient(90deg, var(--accent), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

@media (min-width: 768px) {
  .about-me-container {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .about-text {
    flex: 1;
  }

  .about-image {
    flex: 0 0 300px;
  }
}




.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background-color: var(--accent);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  padding: 0.75rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;

  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
  
}

#impressum {
    padding:20;
    margin:0;
}


