/* ========================================
   🎨 BEWERTUNGSSEITE - Modernes Design
   ======================================== */

/* ========================================
   🏔️ HERO SECTION
   ======================================== */

.vb-hero-section {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 350px;
  overflow: hidden;
  margin: 0 auto 60px auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.vb-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://deinvaterbuch.de/wp-content/uploads/2025/06/looking-over-outdoors-scaled-1.webp');
  background-size: cover;
  background-position: 75% 45%;
  filter: brightness(0.75);
}

.vb-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 60px;
}

.vb-hero-section .vb-hero-content {
  width: 100%;
  max-width: 1300px;
  color: #ffffff !important;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px 0;
}

.vb-hero-section .vb-hero-content h1.vb-hero-headline {
  font-size: 56px !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin: 0 0 auto 0 !important;
  letter-spacing: -0.5px;
  color: #ffffff !important;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 1), 0 3px 10px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.8) !important;
  text-align: center;
}

.vb-hero-section .vb-hero-content .vb-hero-stars {
  font-size: 28px !important;
  margin: 0 0 12px 0;
  letter-spacing: 4px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 1), 0 2px 6px rgba(0, 0, 0, 0.8) !important;
  line-height: 1;
  color: #FFD700 !important;
  display: block !important;
}

.vb-hero-section .vb-hero-content .vb-hero-rating {
  font-size: 24px !important;
  font-weight: 600 !important;
  margin: 0 0 8px 0;
  color: #ffffff !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 1), 0 2px 6px rgba(0, 0, 0, 0.8) !important;
}

.vb-hero-section .vb-hero-content p.vb-hero-subline {
  font-size: 18px !important;
  font-weight: 400 !important;
  margin: 0 !important;
  color: #ffffff !important;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 1), 0 2px 6px rgba(0, 0, 0, 0.8) !important;
}

/* ========================================
   📋 BEWERTUNGEN CONTAINER
   ======================================== */

.vb-bewertungen-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vb-bewertungen-liste {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 0;
}

.vb-einzelbewertung {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vb-einzelbewertung::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4CAF50 0%, #81C784 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vb-einzelbewertung:hover::before {
  opacity: 1;
}

.vb-einzelbewertung:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(76, 175, 80, 0.2);
}

.vb-bewertung-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.vb-bewertung-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.3px;
}

.vb-bewertung-sterne {
  display: flex;
  gap: 3px;
  font-size: 18px;
  color: #FFB300;
  flex-shrink: 0;
  text-shadow: 0 1px 2px rgba(255, 179, 0, 0.2);
}

.vb-bewertung-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 14px 0;
  font-style: italic;
}

.vb-bewertung-datum {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vb-bewertung-datum::before {
  content: '📅';
  font-size: 14px;
}

/* ========================================
   📱 RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .vb-hero-section {
    height: 320px;
    border-radius: 16px;
    margin: 0 auto 40px auto !important;
    max-width: calc(100% - 32px) !important;
  }
  
  .vb-hero-image {
    background-position: center 45%;
  }
  
  .vb-hero-overlay {
    padding: 0 30px !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%) !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .vb-hero-section .vb-hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-align: center !important;
    gap: 8px !important;
    padding: 30px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
  }
  
  .vb-hero-section .vb-hero-content h1.vb-hero-headline {
    font-size: 28px !important;
    padding-top: 0 !important;
    margin: 0 0 auto 0 !important;
    text-align: center !important;
  }
  
  .vb-hero-section .vb-hero-content .vb-hero-stars {
    font-size: 22px !important;
    margin: 0 0 8px 0 !important;
  }
  
  .vb-hero-section .vb-hero-content .vb-hero-rating {
    font-size: 20px !important;
    margin: 0 0 6px 0 !important;
  }
  
  .vb-hero-section .vb-hero-content p.vb-hero-subline {
    font-size: 16px !important;
    margin: 0 !important;
  }
  
  .vb-bewertungen-container {
    padding: 0 16px;
  }
  
  .vb-bewertungen-liste {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .vb-einzelbewertung {
    padding: 20px;
  }
  
  .vb-bewertung-name {
    font-size: 17px;
  }
  
  .vb-bewertung-text {
    font-size: 14px;
  }
}

/* ========================================
   ✨ ANIMATIONEN
   ======================================== */

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

.vb-einzelbewertung {
  animation: fadeInUp 0.5s ease-out;
}

.vb-einzelbewertung:nth-child(1) { animation-delay: 0s; }
.vb-einzelbewertung:nth-child(2) { animation-delay: 0.05s; }
.vb-einzelbewertung:nth-child(3) { animation-delay: 0.1s; }
.vb-einzelbewertung:nth-child(4) { animation-delay: 0.15s; }
.vb-einzelbewertung:nth-child(5) { animation-delay: 0.2s; }
.vb-einzelbewertung:nth-child(6) { animation-delay: 0.25s; }

/* ========================================
   🔍 ACCESSIBILITY
   ======================================== */

.vb-einzelbewertung:focus-within {
  outline: 2px solid #4CAF50;
  outline-offset: 2px;
}
