/* ===================================
   HERO.CSS - FAUTE BENDT
   Universele hero component voor alle pagina's
   Versie: 2025.2 - Opgeschoond & Compact
   =================================== */

/* ===================================
   BASE HERO COMPONENT
   =================================== */

.hero-universal {
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  padding: 8rem 0 4rem;
}

/* ===================================
   HERO ACHTERGROND VARIANTEN
   =================================== */

/* HOOFD HERO - Decade gradient */
.hero-universal.hero-decade {
  background: var(--decade-gradient);
  padding: 8rem 0 4rem; /* Grote hero */
}

/* SECTIE HERO - Bordeaux gradient */
.hero-universal.hero-bordeaux {
  background: var(--bordeaux-party-gradient);
  padding: 4rem 0 2rem; /* 👈 Compact zonder min-height */
}

/* CELEBRATION HERO - Voor FAQ */
.hero-universal.hero-celebration {
  background: var(--celebration-gradient);
  padding: 6rem 0 4rem;
}

/* BORDEAUX COMPACT - Voor boeking */
.hero-universal.hero-bordeaux-compact {
  background: var(--bordeaux-gradient);
  padding: 3rem 0 2rem;
}

/* ===================================
   HERO CONTAINER & CONTENT
   =================================== */

.hero-universal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-universal h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: var(--white);
}

.hero-universal .hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-universal .hero-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 4rem;
  opacity: 0.9;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   HERO STATS COMPONENT
   =================================== */

.hero-universal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stat-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  color: var(--white);
}

.hero-stat-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-stat-item.gold-bright {
  border-color: var(--gold-bright);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-stat-item.gold-warm {
  border-color: var(--gold-warm);
  box-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

.hero-stat-item.gold-deep {
  border-color: var(--gold-deep);
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
}

.hero-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* ===================================
   HERO BUTTONS COMPONENT
   =================================== */

.hero-universal-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

/* Sectie hero's hebben geen stats, dus buttons krijgen minder margin */
.hero-universal.hero-bordeaux .hero-universal-buttons {
  margin-top: 2rem;
}

/* ===================================
   HERO BENEFITS COMPONENT (voor boeking)
   =================================== */

.hero-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.hero-benefit-item:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--gold-warm);
  transform: translateX(5px);
}

.hero-benefit-icon {
  font-size: 1.2rem;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.hero-benefit-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===================================
   HERO BADGE COMPONENT
   =================================== */

.hero-universal-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
  }
}

/* ===================================
   EMOJI DECORATIES PER HERO TYPE
   =================================== */

/* CREW HERO EMOJI'S */
.hero-universal.hero-crew::before {
  content: '👥';
  position: absolute;
  top: 15%;
  left: 10%;
  font-size: 3rem;
  opacity: 0.15;
  animation: heroFloat1 20s ease-in-out infinite;
}

.hero-universal.hero-crew::after {
  content: '🎪';
  position: absolute;
  bottom: 20%;
  right: 15%;
  font-size: 3.5rem;
  opacity: 0.12;
  animation: heroFloat2 22s ease-in-out infinite reverse;
}

/* SHOWS HERO EMOJI'S */
.hero-universal.hero-shows::before {
  content: '🎵';
  position: absolute;
  top: 20%;
  left: 12%;
  font-size: 3.2rem;
  opacity: 0.13;
  animation: heroFloat1 18s ease-in-out infinite;
}

.hero-universal.hero-shows::after {
  content: '📅';
  position: absolute;
  bottom: 25%;
  right: 10%;
  font-size: 3rem;
  opacity: 0.11;
  animation: heroFloat2 24s ease-in-out infinite reverse;
}

/* BOEKING HERO EMOJI'S */
.hero-universal.hero-boeking::before {
  content: '🎪';
  position: absolute;
  top: 18%;
  left: 8%;
  font-size: 2.8rem;
  opacity: 0.14;
  animation: heroFloat1 16s ease-in-out infinite;
}

.hero-universal.hero-boeking::after {
  content: '📞';
  position: absolute;
  bottom: 15%;
  right: 12%;
  font-size: 2.5rem;
  opacity: 0.10;
  animation: heroFloat2 20s ease-in-out infinite reverse;
}

/* FAQ HERO EMOJI'S */
.hero-universal.hero-faq::before {
  content: '❓';
  position: absolute;
  top: 25%;
  left: 15%;
  font-size: 3rem;
  opacity: 0.12;
  animation: heroFloat1 22s ease-in-out infinite;
}

.hero-universal.hero-faq::after {
  content: '💡';
  position: absolute;
  bottom: 30%;
  right: 8%;
  font-size: 3.3rem;
  opacity: 0.15;
  animation: heroFloat2 19s ease-in-out infinite reverse;
}

/* HERO EMOJI ANIMATIES */
@keyframes heroFloat1 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.15;
  }
  25% { 
    transform: translate(20px, -15px) rotate(5deg) scale(1.1);
    opacity: 0.08;
  }
  50% { 
    transform: translate(-10px, -25px) rotate(-3deg) scale(0.9);
    opacity: 0.2;
  }
  75% { 
    transform: translate(15px, -5px) rotate(8deg) scale(1.05);
    opacity: 0.12;
  }
}

@keyframes heroFloat2 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.12;
  }
  30% { 
    transform: translate(-25px, 20px) rotate(-8deg) scale(1.15);
    opacity: 0.18;
  }
  60% { 
    transform: translate(10px, -15px) rotate(5deg) scale(0.85);
    opacity: 0.06;
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 900px) {
  .hero-universal-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-universal {
    padding: 7rem 0 3rem;
  }
  
  .hero-universal.hero-bordeaux {
    padding: 3rem 0 1.5rem; /* 👈 Compact op mobiel */
  }
  
  .hero-universal-container {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }
  
  .hero-universal h1 {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-universal .hero-subtitle {
    margin-bottom: 1.25rem;
  }
  
  .hero-universal .hero-description {
    margin-bottom: 3rem;
  }
  
  .hero-universal-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .hero-stat-item {
    padding: 1.5rem 1rem;
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
  
  .hero-stat-label {
    font-size: 0.8rem;
  }
  
  .hero-universal-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem; /* 👈 Minder margin op mobiel */
  }
  
  .hero-universal-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-benefits-list {
    gap: 0.75rem;
  }
  
  .hero-benefit-item {
    padding: 0.875rem 1.25rem;
    gap: 0.75rem;
  }
  
  .hero-benefit-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero-universal {
    padding: 6rem 0 2rem;
  }
  
  .hero-universal.hero-bordeaux {
    padding: 2.5rem 0 1rem; /* 👈 Extra compact */
  }
  
  .hero-universal-container {
    padding: 1rem 1rem 0 1rem;
  }
  
  .hero-universal-stats {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .hero-stat-item {
    padding: 1.25rem 0.75rem;
  }
  
  .hero-stat-number {
    font-size: 1.8rem;
  }
  
  .hero-stat-label {
    font-size: 0.75rem;
  }
  
  .hero-universal-buttons {
    margin-top: 1.5rem;
  }
  
  .hero-universal-buttons .btn {
    max-width: 280px;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-universal {
    padding: 4.5rem 0 2rem;
  }
  
  .hero-universal.hero-bordeaux {
    padding: 2rem 0 0.75rem; /* 👈 Ultra compact */
  }
  
  .hero-universal-container {
    padding: 0.75rem 0.75rem 0 0.75rem;
  }
}

/* ===================================
   HERO BADGE COMPONENT
   =================================== */

.hero-universal-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
  }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

.hero-universal-buttons .btn:focus {
  outline: 3px solid var(--gold-warm);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-universal::before,
  .hero-universal::after {
    animation: none;
  }
  
  .hero-universal-badge {
    animation: none;
  }
  
  .hero-stat-item:hover,
  .hero-benefit-item:hover {
    transform: none;
  }
}

@media (prefers-contrast: high) {
  .hero-universal-buttons .btn-primary {
    background: var(--black);
    color: var(--white);
    border: 3px solid var(--white);
  }
  
  .hero-universal-buttons .btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 3px solid var(--black);
  }
  
  .hero-stat-item {
    border: 2px solid var(--white);
  }
  
  .hero-benefit-item {
    border: 2px solid var(--gold-bright);
  }
}

@media print {
  .hero-universal::before,
  .hero-universal::after {
    display: none;
  }
  
  .hero-universal {
    background: var(--white) !important;
    color: var(--black) !important;
    padding: 2rem 0 !important;
  }
  
  .hero-universal h1,
  .hero-universal .hero-subtitle,
  .hero-universal .hero-description {
    color: var(--black) !important;
    text-shadow: none !important;
  }
  
  .hero-universal-buttons {
    display: none !important;
  }
  
  .hero-stat-item {
    background: var(--white) !important;
    color: var(--black) !important;
    border: 1px solid var(--black) !important;
    box-shadow: none !important;
  }
}

/* ===================================
   BROWSER COMPATIBILITY FALLBACKS
   =================================== */

@supports not (display: grid) {
  .hero-universal-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-stat-item {
    flex: 1 1 200px;
    margin: 0.5rem;
    max-width: 250px;
  }
}

@supports not (backdrop-filter: blur(10px)) {
  .hero-stat-item,
  .hero-universal-badge {
    background: rgba(255, 255, 255, 0.9);
  }
  
  @media (prefers-color-scheme: dark) {
    .hero-stat-item,
    .hero-universal-badge {
      background: rgba(26, 26, 26, 0.9);
    }
  }
}

@supports not (background-clip: text) {
  .hero-universal .highlight {
    background: none;
    color: var(--gold-bright);
  }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

.hero-stat-item,
.hero-benefit-item {
  will-change: transform;
}

.hero-stat-item:hover,
.hero-benefit-item:hover {
  will-change: auto;
}

.hero-universal::before,
.hero-universal::after {
  will-change: transform;
}

/* GPU ACCELERATION */
.hero-stat-item,
.hero-benefit-item,
.hero-universal-buttons .btn {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ===================================
   UTILITY CLASSES VOOR HERO
   =================================== */

.hero-no-stats .hero-universal-stats {
  display: none;
}

.hero-no-buttons .hero-universal-buttons {
  display: none;
}

.hero-compact {
  padding: 4rem 0 2rem;
}

.hero-extended {
  padding: 10rem 0 6rem;
}

/* ===================================
   EINDE HERO.CSS
   Versie: 2025.2 - Compact & Clean
   "We will give there a lap on!!" 🎪
   =================================== */
