/* Compiaz Design - Main Stylesheet */
:root {
  /* Farben aus dem Logo extrahiert */
  --primary-pink: #f03a70;
  --primary-gradient-start: #f03a70;
  --primary-gradient-end: #e91e63;
  --dark-bg: #121212;
  --light-text: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.1);
  --card-border: rgba(255, 255, 255, 0.15);
  --glass-bg: rgba(18, 18, 18, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
  --section-padding: 5rem 0;
  
  
  
  /* Header Variables */
  --header-height: 90px;
  --header-bg: rgba(255, 255, 255, 0.1);
  --header-scrolled-bg: rgba(255, 255, 255, 0.15);
  --dropdown-bg: rgba(255, 255, 255, 0.15);
  --dropdown-border: rgba(255, 255, 255, 0.2);
  --search-overlay-bg: rgba(255, 255, 255, 0.1);
  --logo-gradient-start: #f03a70;
  --logo-gradient-end: #e91e63;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Sektionen Hintergrund */
.section {
  background-color: var(--dark-bg);
}

/* Portfolio-Sektion speziell */
#portfolio.section {
  background-color: #000000;
  background: #000000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.text-gradient {
  background: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Layout */




.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}



section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* Section Headers */
.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-header .text-gradient {
    background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Glass Effect Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(240, 58, 112, 0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: white;
  box-shadow: 0 4px 15px rgba(240, 58, 112, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 58, 112, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
}

.btn-outline:hover {
  background: var(--primary-pink);
  color: white;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.site-header.scrolled .navbar {
    height: var(--header-height);
}

.site-header.scrolled .navbar-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    height: 55px;
    transition: all 0.3s ease;
}

.site-header.scrolled .navbar-logo {
    height: 55px;
}

/* Navigation Links */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.nav-item a:hover {
    color: var(--primary-pink);
    background: rgba(255, 255, 255, 0.05);
}

.nav-item a.active {
    color: var(--primary-pink);
    font-weight: 600;
    background: rgba(240, 58, 112, 0.1);
}

.nav-item a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
    position: absolute;
    top: 100%;
    left: -20px;
    margin-top: 25px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.25rem;
    min-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 1001;
}

/* Dropdown-Stil beim Scrollen */
.site-header.scrolled .nav-item.dropdown .dropdown-menu {
    background: rgba(5, 25, 35, 0.95);
    border: 1px solid rgba(0, 166, 251, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Fügt einen unsichtbaren Bereich hinzu, um die Lücke zwischen Menüpunkt und Dropdown zu überbrücken */
.nav-item.dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

.dropdown-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-pink);
    transform: translateX(5px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--logo-gradient-start), var(--logo-gradient-end));
    color: white;
    font-size: 1.25rem;
}

.dropdown-item h5 {
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    font-size: 0.9rem;
}

.dropdown-item p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Search Toggle */
.search-toggle a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.search-toggle a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    cursor: pointer;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-pink);
}

/* Mobile Toggle Button */
.navbar-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white !important;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    margin-left: 1rem;
}

.toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--light-text);
    position: absolute;
    left: 8px;
    transition: all 0.3s ease;
}

.toggle-line:nth-child(1) {
    top: 14px;
}

.toggle-line:nth-child(2) {
    top: 20px;
}

.toggle-line:nth-child(3) {
    top: 26px;
}

.navbar-mobile-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg);
    top: 20px;
}

.navbar-mobile-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-mobile-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 20px;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--search-overlay-bg);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 700px;
    position: relative;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    font-size: 1.5rem;
    color: var(--light-text);
    outline: none;
}

.search-input:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(0, 166, 251, 0.2);
}

.search-close {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    color: var(--primary-pink);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-links {
        display: none;
    }
    
    .navbar-mobile-toggle {
        display: block;
        color: white !important;
    }
    
    .navbar-mobile-toggle i {
        color: white !important;
        font-size: 1.5rem !important;
    }
    
    .mobile-nav {
        display: block !important;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--header-scrolled-bg);
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .site-header.scrolled .mobile-nav {
        top: var(--header-scrolled-height);
        height: calc(100vh - var(--header-scrolled-height));
    }
    
    .mobile-nav.active {
        transform: translateX(0);
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-nav-item a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .mobile-dropdown-toggle {
        position: absolute;
        right: 1rem;
        top: 1rem;
        background: none;
        border: none;
        color: var(--light-text);
        font-size: 1.2rem;
    }
    
    .mobile-dropdown-menu {
        padding-left: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .mobile-dropdown-menu.active {
        max-height: 500px;
    }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  position: relative;
  overflow: visible; /* Änderung von hidden zu visible, damit der Überlauf sichtbar ist */
  background: #0a0a0a;
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(240, 58, 112, 0.8) 0%, 
    rgba(18, 18, 18, 0.6) 50%, 
    rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

/* Zusätzlicher Verlaufseffekt für den Übergang */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 800px;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 1) 90%);
  z-index: 2;
}

.hero .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  white-space: nowrap;
  text-align: center;
}

.special-title {
  display: inline-block;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
}

.text-break {
  position: relative;
  display: inline-block;
  color: var(--primary-pink);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
}

.break-part1, .break-part2 {
  display: inline-block;
  position: relative;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.14,.8,.4,1);
}

.break-part1 {
  animation: break-left 2s forwards, flicker 15s infinite 2s;
}

.break-part2 {
  animation: break-right 2s forwards, flicker 15s infinite 3.5s;
}



.text-glitch {
  position: relative;
  color: white;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  animation: glitch-anim 3s infinite;
}

@keyframes break-left {
  0% {
    transform: translateY(0) rotate(0deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  10% {
    transform: translateY(-1px) rotate(-1deg);
    text-shadow: 0 0 6px rgba(240, 58, 112, 0.4);
  }
  20% {
    transform: translateY(0px) rotate(1deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  30% {
    transform: translateY(-1px) rotate(-2deg);
    text-shadow: 0 0 7px rgba(240, 58, 112, 0.5);
  }
  40% {
    transform: translateY(0px) rotate(1deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  50% {
    transform: translateY(-1px) rotate(-2deg);
    text-shadow: 0 0 8px rgba(240, 58, 112, 0.5);
  }
  60% {
    transform: translateY(-2px) rotate(-5deg);
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.7);
  }
  100% {
    transform: translateY(-3px) rotate(-8deg);
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.7);
  }
}

@keyframes break-right {
  0% {
    transform: translateY(0) rotate(0deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  10% {
    transform: translateY(1px) rotate(1deg);
    text-shadow: 0 0 6px rgba(240, 58, 112, 0.4);
  }
  20% {
    transform: translateY(0px) rotate(-1deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  30% {
    transform: translateY(1px) rotate(2deg);
    text-shadow: 0 0 7px rgba(240, 58, 112, 0.5);
  }
  40% {
    transform: translateY(0px) rotate(-1deg);
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  50% {
    transform: translateY(1px) rotate(2deg);
    text-shadow: 0 0 8px rgba(240, 58, 112, 0.5);
  }
  60% {
    transform: translateY(2px) rotate(5deg);
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.7);
  }
  100% {
    transform: translateY(3px) rotate(8deg);
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.7);
  }
}







@keyframes glitch-anim {
  0% {
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
    transform: translateX(0);
  }
  5% {
    text-shadow: -3px 0 0 rgba(0, 255, 255, 0.75), 3px 0 0 rgba(255, 0, 255, 0.75);
    transform: translateX(1px);
  }
  10% {
    text-shadow: -3px 0 0 rgba(0, 255, 255, 0.75), 3px 0 0 rgba(255, 0, 255, 0.75);
    transform: translateX(-1px);
  }
  15% {
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
    transform: translateX(0);
  }
  100% {
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
    transform: translateX(0);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Feature Bubbles */
.feature-bubbles {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.feature-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.outline-bubble {
  background: transparent;
  border: 2px solid;
  box-shadow: 0 0 8px rgba(240, 58, 112, 0.2);
  color: white;
}

.feature-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
  transform: scale(0);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.feature-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(240, 58, 112, 0.2);
}

.feature-bubble:hover::before {
  transform: scale(2.5);
  opacity: 0;
}

.bubble-1 {
  border-color: #ff5e8a;
  box-shadow: 0 0 8px rgba(255, 94, 138, 0.4), inset 0 0 5px rgba(255, 94, 138, 0.1);
  text-shadow: 0 0 3px rgba(255, 94, 138, 0.5);
}

.bubble-2 {
  border-color: #f03a70;
  box-shadow: 0 0 8px rgba(240, 58, 112, 0.4), inset 0 0 5px rgba(240, 58, 112, 0.1);
  text-shadow: 0 0 3px rgba(240, 58, 112, 0.5);
}

.bubble-3 {
  border-color: #d6246e;
  box-shadow: 0 0 8px rgba(214, 36, 110, 0.4), inset 0 0 5px rgba(214, 36, 110, 0.1);
  text-shadow: 0 0 3px rgba(214, 36, 110, 0.5);
}

.bubble-4 {
  border-color: #b01e5c;
  box-shadow: 0 0 8px rgba(176, 30, 92, 0.4), inset 0 0 5px rgba(176, 30, 92, 0.1);
  text-shadow: 0 0 3px rgba(176, 30, 92, 0.5);
}

/* Services Section */
.services {
  background: #0a0a0a;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.services .container {
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* Service-Karten verwenden ausschließlich die glass-card Klasse */

/* Alle Service-Karten-Hover-Effekte wurden entfernt, damit sie exakt wie das Kontaktformular aussehen */

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio {
  background: linear-gradient(to bottom, #1a1a1a, #222222);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.portfolio .container {
  width: 100%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  transition: all 0.3s ease;
}

.portfolio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 58, 112, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Portfolio-Items verwenden den Standard-Hover-Effekt der glass-card-Klasse */

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.portfolio-category {
  color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about {
  background: linear-gradient(to bottom, #222222, #1a1a1a);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.feature-icon {
  margin-right: 1rem;
  color: var(--primary-pink);
}

/* Contact Section */
.contact {
  background: #000000;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 5rem 0;
  z-index: 1;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-pink) 20%, 
    var(--primary-blue) 50%, 
    var(--primary-pink) 80%, 
    transparent 100%);
  box-shadow: 0 0 20px rgba(240, 58, 112, 0.8), 
              0 0 40px rgba(0, 166, 251, 0.4);
  z-index: 2;
}

.contact .container {
  width: 100%;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-pink);
  background: linear-gradient(45deg, var(--primary-pink), var(--primary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-control {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-pink);
}

/* Footer */
.footer {
  position: relative;
  background: #000000 !important;
  overflow: hidden;
  margin-top: 0;
  padding: 3rem 0 1.5rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Footer Background with Particles */
.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background: #000000 !important;
}

/* Footer Content */
.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-logo-section,
  .footer-nav,
  .footer-contact {
    margin-right: 0;
    min-width: 100%;
  }
}

/* Footer Logo Section */
.footer-logo-section {
  flex: 1;
  min-width: 200px;
  margin-right: 2rem;
  max-width: 280px;
}

.footer-logo {
  display: block;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.5;
}

.brand-text {
  color: var(--primary-pink);
  font-weight: 600;
}

/* Footer Navigation */
.footer-nav {
  flex: 1;
  min-width: 150px;
  margin-right: 2rem;
}

.footer-nav h4,
.footer-contact h4 {
  color: var(--light-text);
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-nav h4:after,
.footer-contact h4:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-pink));
}

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

.footer-links-list li {
  margin-bottom: 0.5rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: var(--primary-blue);
  transform: translateX(3px);
}

.newsletter-form .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-control {
  border: none;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn-gradient {
  border-radius: 0 50px 50px 0;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-pink));
  border: none;
  color: white;
  transition: all 0.3s ease;
}

.newsletter-form .btn-gradient:hover {
  transform: translateX(3px);
  box-shadow: 0 0 15px rgba(var(--primary-blue-rgb), 0.5);
}

/* Footer Main Content */
.footer-main {
  margin-bottom: 3rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-heading {
  position: relative;
  color: var(--light-text);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-pink));
  border-radius: 3px;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Footer Features */
.footer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.footer-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-feature:hover .feature-icon {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-pink));
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-feature span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer Services */
.footer-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Service-Karten verwenden ausschließlich die glass-card Klasse für Hover-Effekte */

/* Footer Contact */
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.contact-item h4 {
  color: var(--light-text);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin: 0;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-pink);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light-text);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
}

.social-icons a:hover {
  transform: translateY(-2px);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a:nth-child(1):hover {
  background: #1877f2; /* Facebook */
}

.social-icons a:nth-child(2):hover {
  background: #1da1f2; /* Twitter */
}

.social-icons a:nth-child(3):hover {
  background: #e4405f; /* Instagram */
}

.social-icons a:nth-child(4):hover {
  background: #0077b5; /* LinkedIn */
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Footer Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 105, 180, 0.02);
  box-shadow: 0 0 25px rgba(255, 105, 180, 0.15);
  animation: float 30s infinite ease-in-out;
  filter: blur(3px);
  z-index: 0;
}

.particle-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 40px;
  height: 40px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.particle-3 {
  width: 30px;
  height: 30px;
  bottom: 20%;
  left: 25%;
  animation-delay: 4s;
}

.particle-4 {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 10%;
  animation-delay: 6s;
}

.particle-5 {
  width: 35px;
  height: 35px;
  top: 50%;
  left: 50%;
  animation-delay: 8s;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.4;
  }
}

@keyframes break-right {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  10% {
    transform: translateX(0) rotate(0deg);
  }
  15% {
    transform: translateX(1px) rotate(1deg);
  }
  20% {
    transform: translateX(-1px) rotate(-1deg);
  }
  25% {
    transform: translateX(1px) rotate(1deg);
  }
  30% {
    transform: translateX(-1px) rotate(-1deg);
  }
  35% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(0) rotate(0deg);
  }
  100% {
    transform: translateX(15px) rotate(5deg);
  }
}

@keyframes flicker {
  0% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  1% {
    opacity: 0.97;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  2% {
    opacity: 0.4;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  2.1% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(240, 58, 112, 0.7), 0 0 25px rgba(240, 58, 112, 0.5);
  }
  2.2% {
    opacity: 0.4;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  2.3% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  5% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  25% {
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(240, 58, 112, 0.4);
  }
  25.1% {
    opacity: 0.3;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  25.2% {
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(240, 58, 112, 0.4);
  }
  26% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  55% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  56% {
    opacity: 0.15;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  56.1% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(240, 58, 112, 0.7), 0 0 25px rgba(240, 58, 112, 0.5);
  }
  56.2% {
    opacity: 0.15;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  56.3% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  56.4% {
    opacity: 0.15;
    text-shadow: 0 0 2px rgba(240, 58, 112, 0.2);
  }
  56.5% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  89% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
  90% {
    opacity: 0.8;
    text-shadow: 0 0 5px rgba(240, 58, 112, 0.3);
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(240, 58, 112, 0.5);
  }
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.8rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .about-content,
  .contact-container,
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
  
  .navbar-mobile-toggle {
    display: block;
  }
  
  .navbar-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
    transition: all 0.5s ease;
    z-index: 999;
  }
  
  .navbar-mobile.active {
    right: 0;
  }
  
  .navbar-mobile a {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }
  
  .services-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  /* Hero Mobile Fixes */
  .hero {
    padding: 2rem 0;
    min-height: 90vh;
  }
  
  .hero .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
}

/* App-like Mobile Styles */
@media (max-width: 576px) {
  body {
    padding-bottom: 70px; /* Space for bottom navigation */
  }
  
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    z-index: 1000;
  }
  
  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.8rem;
  }
  
  .mobile-nav-icon {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }
  
  .mobile-nav-item.active {
    color: var(--primary-pink);
  }
  
  .app-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .app-title {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .app-action {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* WhatsApp Button entfernt */
