/* Hero Section ohne Hintergrundbild im CSS */
#jing-hero.jing-hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Reduziertes Overlay für helleres Bild */
#jing-hero .jing-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0); /* Reduziert von 0.35 auf 0.15 */
}

/* Zusätzliches Overlay für besseren Kontrast */
#jing-hero .jing-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(0, 0, 0, 0.1) 0%, 
    rgba(0, 0, 0, 0.05) 50%, 
    rgba(0, 0, 0, 0.1) 100%
  );
}

/* Floating Elements deaktivieren */
#jing-hero .jing-floating-elements {
  display: none;
}

/* Hero Content */
#jing-hero .jing-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

/* Title mit verbessertem Schatten */
#jing-hero .jing-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;

  /* cleaner, moderater Schatten */
  text-shadow: 3px 3px 3px rgba(250, 246, 246, 0.6);

  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Verbesserte Divider */
#jing-hero .jing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
  opacity: 0.9;
}

#jing-hero .jing-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  max-width: 100px;
}

#jing-hero .jing-divider-text {
  padding: 0 1rem;
  font-size: 1rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

/* Shimmer Effekt auf Title */
#jing-hero .jing-hero-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
}

/* Subtitle mit verbessertem Schatten */
#jing-hero .jing-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 2rem;
  text-shadow: 
    1px 1px 4px rgba(0,0,0,0.8),
    0 0 15px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Description mit verbessertem Schatten */
#jing-hero .jing-hero-description p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-shadow: 
    1px 1px 3px rgba(0,0,0,0.8),
    0 0 10px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Features Title */
#jing-hero .features-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #ffd700;
  text-shadow: 
    2px 2px 4px rgba(0,0,0,0.8),
    0 0 15px rgba(255,215,0,0.3);
}

/* Features */
#jing-hero .feature-card {
  background: rgba(255,255,255,0.15); /* Leicht erhöht für bessere Sichtbarkeit */
  border-radius: 15px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#jing-hero .feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.4);
}

#jing-hero .feature-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

#jing-hero .feature-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Shipping Info */
#jing-hero .shipping-info {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: rgba(255,215,0,0.15);
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #ffd700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#jing-hero .shipping-info:hover {
  background: rgba(255,215,0,0.2);
  border-color: rgba(255,215,0,0.4);
  transform: translateY(-2px);
}

#jing-hero .shipping-info i {
  font-size: 1.2rem;
}

/* Social Links */
#jing-hero .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

#jing-hero .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#jing-hero .social-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: #ffffff;
}

#jing-hero .social-link.facebook:hover {
  background: rgba(24,119,242,0.2);
  border-color: rgba(24,119,242,0.4);
}

#jing-hero .social-link.instagram:hover {
  background: rgba(225,48,108,0.2);
  border-color: rgba(225,48,108,0.4);
}

#jing-hero .social-link.google:hover {
  background: rgba(255,215,0,0.2);
  border-color: rgba(255,215,0,0.4);
}

#jing-hero .social-text {
  font-size: 0.8rem;
  font-weight: 500;
}

/* CTA Button */
#jing-hero .jing-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #333;
  text-decoration: none;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

#jing-hero .jing-cta-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  box-shadow: 0 8px 25px rgba(255,215,0,0.4);
  color: #333;
}

#jing-hero .jing-cta-button i {
  transition: transform 0.3s ease;
}

#jing-hero .jing-cta-button:hover i {
  transform: translateX(5px);
}

/* Keyframes */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 118, 4, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 118, 4, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 118, 4, 0); }
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  #jing-hero .jing-hero-content { padding: 40px 0; }
  #jing-hero .jing-hero-title { font-size: 2.5rem; letter-spacing: 1px; }
  #jing-hero .jing-hero-subtitle { font-size: 1.2rem; }
  #jing-hero .jing-hero-description p { font-size: 1rem; }
  #jing-hero .features-title { font-size: 1.5rem; }
  #jing-hero .social-links { 
    flex-wrap: wrap;
    gap: 1rem;
  }
  #jing-hero .social-text {
    display: none;
  }
}

@media (max-width: 480px) {
  #jing-hero .jing-hero-title { font-size: 2rem; }
  #jing-hero .jing-hero-subtitle { font-size: 1.1rem; }
  #jing-hero .feature-card { padding: 1rem; }
  #jing-hero .feature-icon { font-size: 2rem; }
  #jing-hero .social-links { gap: 0.8rem; }
  #jing-hero .social-link { padding: 0.6rem 1rem; }
}