:root{
  --rot:rgba(178, 0, 33, 1);
  --dunkelgrau: #232323;
  --hellgrau: rgba(135, 135, 145, 1);
  --mittelgrau: rgba(185, 185, 195,1);
  --verlauf_n_unten:  linear-gradient(to bottom, rgba(175, 175, 185, 1), rgba(135, 135, 145, 1));
  --verlauf_n_oben:  linear-gradient(to bottom, rgba(135, 135, 145, 1), rgba(175, 175, 185, 1));
  --schwarz: rgba(0, 0, 0, 1);
  --weiss: rgba(255, 255, 255, 1);
  --strich: border: 3px solid var(--rot);
  font-size: 16px;
}

/* ========================================
   Kontakt Seite Styling
   ======================================== */

/* Animierende Aufforderung */
.kontakt-cta {
  text-align: center;
  margin: 3rem 0 4rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 12px;
  border: 2px solid rgba(var(--rot-rgb, 204, 0, 0), 0.2);
}

.cta-text {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--rot, #cc0000);
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.cta-subtext {
  font-size: 1.2rem;
  color: var(--text-color, #333);
  opacity: 0.9;
  margin: 0;
}

/* Pulse Animation für CTA */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.9;
  }
}

.name{
  color: var(--rot);
}

/* Kontakt Grid Layout */
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
  padding: 1rem 0;
}

/* Einzelne Kontakt Items */
.kontakt-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kontakt-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--rot);
}

/* Header Container für Icon + h3 */
.kontakt-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

/* Icon Container */
.kontakt-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--verlauf_n_oben);
  border-radius: 12px;
  transition: all 0.7s ease;
}

.kontakt-item:hover .kontakt-icon {
  background: var(--verlauf_n_oben);
  transform: rotate(-5deg) scale(1.08);
}

.kontakt-item:active .kontakt-icon {
  background: var(--verlauf_n_oben);
  transform: rotate(-5deg) scale(1.08);
}

/* SVG Icons Styling */
.kontakt-icon svg {
  width: 32px;
  height: 32px;
  color: var(--rot, #cc0000);
  stroke: var(--rot, #cc0000);
  transition: all 0.3s ease;
}

.kontakt-item:hover .kontakt-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(204, 0, 0, 0.3));
}

/* h3 im Header */
.kontakt-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: var(--rot, #cc0000);
}

/* Kontakt Content */
.kontakt-content {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.kontakt-content p,
.kontakt-content a {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.kontakt-content a {
  display: inline-block;
  position: relative;
}

.kontakt-content a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rot, #cc0000);
  transition: width 0.3s ease;
}

.kontakt-content a:hover {
  color: var(--rot, #cc0000);
  transform: translateX(3px);
}

.kontakt-content a:hover::after {
  width: 100%;
}

/* Footer CTA */
.kontakt-footer-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--rot, #cc0000) 0%, #990000 100%);
  border-radius: 12px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
  animation: gentle-pulse 3s ease-in-out infinite;
}

.kontakt-footer-cta p {
  font-size: 1.3rem;
  color: white;
  margin: 0;
  font-weight: 500;
}

@keyframes gentle-pulse {
  0%, 100% {
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.6);
  }
}


/* Responsive Anpassungen */
@media (max-width: 768px) {
  .kontakt-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-text {
    font-size: 1.8rem;
  }

  .cta-subtext {
    font-size: 1rem;
  }

  .kontakt-item {
    padding: 1.5rem;
    gap: 1rem;
    width: 80%;
    margin: 0 auto;
    text-align: left;
  }

  .kontakt-icon {
    width: 50px;
    height: 50px;
  }

  .kontakt-icon svg {
    width: 28px;
    height: 28px;
  }

  .kontakt-content h3 {
    font-size: 1.1rem;
  }

  .kontakt-content p,
  .kontakt-content a {
    font-size: 0.95rem;
  }

  .kontakt-footer-cta p {
    font-size: 1.1rem;
  }




/* Footer CTA */
.kontakt-footer-cta {
  margin: 0 auto;
  width: 90%;
}








}

@media (max-width: 480px) {
  .kontakt-cta {
    padding: 1.5rem;
    margin: 2rem 0 3rem 0;
  }

  .cta-text {
    font-size: 1.5rem;
  }

  .kontakt-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kontakt-content a:hover {
    transform: none;
  }
}


/* Dark Mode Support (falls vorhanden) */
 @media (prefers-color-scheme: dark) {
  .kontakt-item {
    background: rgba(255, 255, 255, 0.05);
  }

  .kontakt-item:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .kontakt-content p,
  .kontakt-content a {
    color: var(--dunkelgrau);
  }

  .cta-subtext {
    color: rgba(255, 255, 255, 0.8);
  }
} 


        /* --- MOBILE VERSION (Media Query) --- */
        @media (max-width: 768px) {
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        }