:root {
  /* Light Mode Colors - TEST BLUE */
  --color-primary: #1B6A8A;
  --color-primary-dark: #155A7A;
  --color-accent: #4A90E2;
  --color-text: #121212;
  --color-text-light: #E7E7E7;
  --color-bg: #e6e3df;
  --color-bg-secondary: #F8F9FA;
  --color-card-bg: #FFFFFF;
  --color-border: #E0E0E0;
  --color-shadow: rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] {
  --color-text: #E7E7E7;
  --color-text-light: #121212;
  --color-bg: #0A0A0A;
  --color-bg-secondary: #121212;
  --color-card-bg: #1A1A1A;
  --color-border: #2A2A2A;
  --color-shadow: rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  background: var(--color-card-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  height: 100px;
}

.logo img {
  height: 50px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  max-height: 60px;
  flex-shrink: 0;
}

.logo-img {
  height: 140px !important;
  max-height: 140px !important;
  width: auto;
  object-fit: contain;
}

.logo-img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

.theme-toggle {
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  color: var(--color-text);
  padding: 0.6rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--color-shadow);
}

.theme-toggle:hover {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
  transform: rotate(15deg);
  box-shadow: 0 4px 16px rgba(27, 138, 90, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  color: var(--color-text);
  padding: 0.6rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--color-shadow);
}

.mobile-menu-toggle:hover {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: white;
}

/* Hero Section */
.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 10;
}

.hero-logo-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 10;
  background: var(--color-bg);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.hero-kicker {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Animated Kicker */
.animated-kicker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.kicker-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: kickerWordSlide 0.8s ease forwards;
}

.kicker-word:nth-child(1) { animation-delay: 0s; }
.kicker-word:nth-child(3) { animation-delay: 0.3s; }
.kicker-word:nth-child(5) { animation-delay: 0.6s; }

.kicker-separator {
  display: inline-block;
  opacity: 0;
  animation: kickerSeparatorFade 0.5s ease forwards;
}

.kicker-separator:nth-child(2) { animation-delay: 0.2s; }
.kicker-separator:nth-child(4) { animation-delay: 0.5s; }

@keyframes kickerWordSlide {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes kickerSeparatorFade {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
  color: var(--color-text);
  line-height: 1.2;
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text);
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-highlight {
  background: var(--color-card-bg);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--color-shadow);
  font-style: italic;
  font-size: 1.1rem;
}

.quote-modern {
  border: 2px solid var(--color-primary);
  background: #e6e3df;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(27, 138, 90, 0.15);
  position: relative;
  overflow: hidden;
}

.quote-modern::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: var(--color-primary);
  opacity: 0.1;
  font-family: Georgia, serif;
}

/* Buttons */
.btn {
  display: inline-flex;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(27, 138, 90, 0.2);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(27, 138, 90, 0.4);
}

.btn-secondary {
  background: var(--color-card-bg);
  color: var(--color-text);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 3rem;
  text-align: center;
  color: var(--color-text);
}

/* Cards */
.card {
  background: var(--color-card-bg);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 12px var(--color-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--color-shadow);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}

/* Für 2-Spalten: "Das mache ich" */
.cards-2-columns {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cards-grid .card a.btn {
  margin-top: auto;
  align-self: stretch;
}

.cards-grid .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.cards-grid .card p {
  flex-grow: 1;
  margin-bottom: 2rem;
}


.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.card p {
  color: var(--color-text);
  opacity: 0.9;
  line-height: 1.7;
}

/* About Section */
.about {
  background: var(--color-bg-secondary);
  padding: 4rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 6px 20px var(--color-shadow);
}

.about-text {
  color: var(--color-text);
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.qualification-list {
  list-style: none;
  padding-left: 0;
}

.qualification-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text);
}

.qualification-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Shop Section */
.product-card {
  text-align: center;
  padding: 2rem;
}

.product-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.product-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-primary);
  margin: 1rem 0;
}

/* Galerie */
.galerie-section {
  margin-bottom: 4rem;
}

.galerie-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: var(--color-card-bg);
  box-shadow: 0 4px 12px var(--color-shadow);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.gallery-item:hover {
  box-shadow: 0 8px 24px var(--color-shadow);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-item:hover .gallery-item-caption {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 0, 0, 0.6);
  transform: rotate(90deg);
}

/* Info Box */
.info-box {
  background: var(--color-card-bg);
  border: 2px solid var(--color-primary);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(27, 138, 90, 0.12);
  transition: all 0.3s ease;
}

.info-box:hover {
  border-color: var(--color-primary-dark);
  box-shadow: 0 6px 24px rgba(27, 138, 90, 0.2);
}

/* Healing Humans Logo Link */
.galerie-section a img:hover,
.about-text a img:hover,
.card a img:hover {
  opacity: 0.9 !important;
}

.galerie-section a:hover,
.about-text a:hover,
.card a:hover {
  opacity: 0.8;
}

/* Partner Link Buttons Hover Effects */
.card a[style*="background: linear-gradient"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 138, 90, 0.4) !important;
}

/* Testimonial Slider */
.testimonial-item {
  animation: fadeIn 0.5s ease-in-out;
}

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

/* Reviews Slider */
.reviews-slider {
  overflow: hidden;
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  width: 100%;
}

.review-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px var(--color-shadow);
}

.slider-btn {
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  color: var(--color-text);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.slider-dots {
  margin: 1rem 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* Responsive Slider */
@media (max-width: 768px) {
  .review-card {
    padding: 1rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  background: var(--color-bg-secondary);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  text-align: center;
  color: var(--color-text);
}

.footer-content > p:first-child {
  margin-bottom: 2rem;
  opacity: 0.75;
  font-size: 0.95rem;
  font-style: italic;
}

.footer-info {
  margin: 2rem 0;
}

.footer-info a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  padding: 0.5rem;
  border-radius: 8px;
  display: inline-block;
}

.footer-info a:hover {
  background: var(--color-card-bg);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.footer-links a:hover {
  color: var(--color-primary);
  background: var(--color-card-bg);
}

.footer-content p:last-child {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 138, 90, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  .header-content {
    position: relative;
    flex-wrap: nowrap;
  }

  .logo {
    flex-shrink: 1;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-card-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px var(--color-shadow);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    border-radius: 8px;
  }

  .nav .theme-toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    background: var(--color-card-bg);
  }

  .nav a:hover {
    background: var(--color-bg-secondary);
  }

  .mobile-menu-toggle {
    z-index: 1001;
  }

  .header-content {
    height: auto;
    min-height: 90px;
  }

  .logo-img {
    height: 80px !important;
    max-height: 80px !important;
  }
}

@media (max-width: 480px) {
  .nav {
    font-size: 0.9rem;
  }

  .nav .theme-toggle {
    width: 45px;
    height: 45px;
    top: 0.75rem;
    right: 0.75rem;
  }

  .logo-img {
    height: 70px !important;
    max-height: 70px !important;
  }
  
  .header-content {
    min-height: 85px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 0 !important;
    display: grid !important;
  }
  
  .hero-logo {
    grid-row: 1;
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .hero-logo-img {
    animation: fadeInUp 0.8s ease;
    max-width: 100% !important;
    height: auto !important;
    width: auto !important;
  }

  .hero-content {
    grid-row: 2;
    text-align: center;
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  /* Healing Humans Logo in About Section - Mobile */
  .about-text > div[style*="position: absolute"] {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
  }
  
  .about-text > div[style*="position: absolute"] img {
    max-width: 120px !important;
  }
}

/* Accessibility */
*:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline-offset: 4px;
}

/* Loading Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

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

/* ===================================
   MODERNE ANIMATIONEN
   =================================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade In Slide Animation */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide In Right Animation */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Image Animation */
@keyframes heroImageSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Card Stagger Animation */
@keyframes cardStagger {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Removed duplicate - button animations are now in the main button styles */

/* Floating Animation für Icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Shine Effect */
@keyframes shine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Utility Classes für Animationen */
.animate-on-scroll {
  opacity: 0;
  animation-fill-mode: forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-slide {
  animation: fadeInSlide 0.8s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

.animate-card-stagger {
  animation: cardStagger 0.6s ease forwards;
}

/* Angewandte Animationen */
.hero-logo-img {
  animation: heroImageSlide 1s ease-out;
}

.hero-content h1 {
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-content .hero-kicker {
  animation: fadeInUp 0.8s ease backwards;
}

.hero-content .hero-lead {
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.quote-highlight,
.quote-modern {
  animation: scaleIn 0.8s ease 0.6s backwards;
}

.cta-buttons {
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

/* Card Hover Enhancements */
.card {
  will-change: transform;
}

.card:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* Duplicate styles removed - button animations are integrated above */

/* Mobile Menu Slide Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav.active a {
  animation: slideDown 0.3s ease forwards;
}

.nav.active a:nth-child(1) { animation-delay: 0.05s; }
.nav.active a:nth-child(2) { animation-delay: 0.1s; }
.nav.active a:nth-child(3) { animation-delay: 0.15s; }
.nav.active a:nth-child(4) { animation-delay: 0.2s; }
.nav.active a:nth-child(5) { animation-delay: 0.25s; }

/* Section Title Animation */
.section-title {
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  animation: expandWidth 1s ease 0.5s forwards;
}

@keyframes expandWidth {
  to {
    width: 100%;
  }
}

/* Image Hover Effect */
.gallery-item,
.about-image img,
.hero-logo-img {
  position: relative;
  overflow: hidden;
}

.gallery-item::after,
.about-image img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(27, 138, 90, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.gallery-item:hover::after,
.about-image img:hover::after {
  transform: translateX(100%);
}


/* Nav Link Hover Line */
.nav a {
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

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

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Reduce animations on mobile for better performance */
  .card:hover {
    transform: translateY(-2px);
  }
  
  .gallery-item::after,
  .about-image img::after {
    display: none;
  }
}

