/* ===================================
   CREW.CSS - FAUTE BENDT - OPGESCHOOND V3
   Alleen crew-specifieke styling (geen hero meer)
   Timeline, Nancy, story, footer - MOBIEL GEOPTIMALISEERD
   =================================== */

/* ===================================
   BAND STORY FULLWIDTH
   =================================== */

.band-story-fullwidth {
  background: var(--bg-primary);
  padding: 6rem 0;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.story-grid:nth-child(even) {
  direction: rtl;
}

.story-grid:nth-child(even) > * {
  direction: ltr;
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.story-quote {
  background: var(--celebration-gradient);
  color: var(--white);
  padding: 2rem;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  box-shadow: var(--confetti-shadow);
}

.story-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: var(--jubilee-gold);
  font-family: Georgia, serif;
}

/* VIDEO WRAPPER */
.story-video {
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===================================
   CREW TIMELINE SECTIE
   =================================== */

.meet-crew-page {
  background: var(--bg-primary);
}

.crew-timeline-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.crew-timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

/* Timeline lijn - wordt verborgen achter Nancy */
.crew-timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 100px;
  width: 4px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: var(--party-glow);
  z-index: 1;
}

.crew-member-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

/* Timeline dots */
.crew-member-story::after {
  content: attr(data-emoji) !important;
  display: flex !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 80px !important;
  height: 80px !important;
  background: var(--bg-primary) !important;
  border: 4px solid var(--gold-warm) !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 2rem !important;
  z-index: 3 !important;
  box-shadow: var(--party-glow) !important;
  transition: all 0.3s ease !important;
}

.crew-member-story:hover::after {
  transform: translate(-50%, -50%) scale(1.1) !important;
  box-shadow: 0 8px 30px rgba(218, 165, 32, 0.6) !important;
}

/* Alternatieve layout */
.crew-member-story.right {
  direction: rtl;
}

.crew-member-story.right > * {
  direction: ltr;
}

.member-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.member-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.member-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.member-photo:hover .photo-overlay {
  background: linear-gradient(
    to top,
    rgba(218, 165, 32, 0.8) 0%,
    rgba(218, 165, 32, 0.4) 50%,
    transparent 100%
  );
}

/* MEMBER STORY CONTENT */
.member-story-content {
  background: var(--bg-secondary);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  position: relative;
  transition: all 0.3s ease;
}

.member-story-content:hover {
  border-color: var(--gold-warm);
  box-shadow: var(--gold-shadow);
  transform: translateY(-5px);
}

.member-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--gold-warm);
}

.member-full-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.member-title-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.member-nickname {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-style: italic;
}

.member-story-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
}

/* ===================================
   NANCY TIMELINE SPECIALE STYLING
   =================================== */

/* Nancy binnen de timeline maar met speciale layout */
.crew-member-story.nancy-timeline-special.center {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  max-width: 1200px !important;
  margin: 6rem auto !important;
  position: relative !important;
  text-align: center !important;
  background: none !important;
  padding: 0 !important;
  z-index: 10 !important;
}

/* Nancy's timeline dot */
.crew-member-story.nancy-timeline-special::after {
  content: '🦩' !important;
  border-color: var(--nancy-pink) !important;
  box-shadow: 0 8px 25px rgba(212, 165, 165, 0.4) !important;
  top: -40px !important;
  transform: translateX(-50%) !important;
  animation: sparkle 4s infinite !important;
}

.crew-member-story.nancy-timeline-special:hover::after {
  transform: translateX(-50%) scale(1.1) !important;
  box-shadow: 0 12px 35px rgba(212, 165, 165, 0.6) !important;
}

@keyframes sparkle {
  0%, 100% { 
    opacity: 1; 
    transform: translateX(-50%) scale(1); 
    box-shadow: 0 8px 25px rgba(212, 165, 165, 0.4);
  }
  50% { 
    opacity: 0.9; 
    transform: translateX(-50%) scale(1.1); 
    box-shadow: 0 12px 35px rgba(212, 165, 165, 0.6);
  }
}

/* Nancy's container - de roze box */
.nancy-special-container {
  background: linear-gradient(135deg, #f8f4f0 0%, #fdf2f8 100%) !important;
  border: 4px solid var(--nancy-pink) !important;
  border-radius: 30px !important;
  box-shadow: 0 25px 50px rgba(212, 165, 165, 0.4) !important;
  padding: 4rem 3rem 3rem 3rem !important;
  margin-top: 2rem !important;
}

.nancy-special-container:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 35px 60px rgba(212, 165, 165, 0.6) !important;
  border-color: var(--gold-warm) !important;
}

/* Nancy's hoofd content - foto en tekst naast elkaar */
.nancy-timeline-special .nancy-main-content {
  display: flex !important;
  align-items: flex-start !important;
  gap: 4rem !important;
  margin-bottom: 3rem !important;
}

/* Nancy's foto */
.nancy-timeline-special .nancy-photo {
  width: 350px !important;
  height: 350px !important;
  border-radius: 50% !important;
  border: 8px solid var(--nancy-pink) !important;
  box-shadow: 0 20px 40px rgba(212, 165, 165, 0.6) !important;
  position: relative !important;
  overflow: hidden !important;
  animation: nancyFloat 4s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}

@keyframes nancyFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
  75% { transform: translateY(-20px) rotate(-2deg); }
}

.nancy-timeline-special .nancy-photo:hover {
  transform: translateY(-10px) rotate(0deg) !important;
  box-shadow: 0 25px 50px rgba(212, 165, 165, 0.8) !important;
  border-color: var(--gold-warm) !important;
}

.nancy-timeline-special .nancy-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  filter: brightness(1.3) contrast(0.8) saturate(0.9) !important;
  opacity: 0.85 !important; 
}

/* Nancy's tekst sectie */
.nancy-timeline-special .nancy-text-section {
  flex: 1 !important;
  text-align: left !important;
}

.nancy-timeline-special .nancy-name {
  font-size: 3rem !important;
  font-weight: 900 !important;
  background: var(--celebration-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 1rem !important;
  line-height: 1.1 !important;
}

.nancy-timeline-special .nancy-nickname {
  font-size: 1.8rem !important;
  color: var(--nancy-pink) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important;
  margin-bottom: 0.5rem !important;
}

.nancy-timeline-special .nancy-role {
  font-size: 1.3rem !important;
  color: var(--text-secondary) !important;
  font-style: italic !important;
  margin-bottom: 2rem !important;
}

.nancy-timeline-special .nancy-text {
  font-size: 1.2rem !important;
  line-height: 1.7 !important;
  color: var(--text-secondary) !important;
}

/* Nancy's fun fact */
.nancy-timeline-special .nancy-fun-fact {
  background: var(--celebration-gradient) !important;
  color: var(--white) !important;
  padding: 3rem 2.5rem !important;
  border-radius: 20px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

.nancy-timeline-special .nancy-fun-fact::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200%!important;
  height: 200% !important;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  ) !important;
  animation: shimmerSweep 3s infinite !important;
}

@keyframes shimmerSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.nancy-timeline-special .nancy-fun-fact h4 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  position: relative !important;
  z-index: 2 !important;
}

.nancy-timeline-special .nancy-fun-fact p {
  font-size: 1.1rem !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 2 !important;
  line-height: 1.6 !important;
}

/* ===================================
   CREW FOOTER CTA SECTIE
   =================================== */

.crew-footer-section {
  background: var(--decade-gradient);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* CREW FOOTER - ALLE 8 EMOJI'S CORRECT VERSPREID PER BANDLID */
.crew-footer-section {
  position: relative;
  overflow: hidden;
}

/* Emoji 1: Diamant (Ellen) */
.crew-footer-section::before {
  content: '💎';
  position: absolute;
  top: 20%;
  left: 15%;
  font-size: 4rem;
  opacity: 0.15;
  animation: floatRandom1 8s ease-in-out infinite;
}

/* Emoji 2: Gitaar (Maarten) */
.crew-footer-section::after {
  content: '🎸';
  position: absolute;
  top: 60%;
  right: 20%;
  font-size: 3.5rem;
  opacity: 0.12;
  animation: floatRandom2 10s ease-in-out infinite reverse;
}

/* Emoji 3: Drums (Peter) */
.crew-footer-container::before {
  content: '🥁';
  position: absolute;
  top: 30%;
  right: 10%;
  font-size: 3rem;
  opacity: 0.1;
  animation: floatRandom3 12s ease-in-out infinite;
  z-index: -1;
}

/* Emoji 4: Piano (Joeri) */
.crew-footer-container::after {
  content: '🎹';
  position: absolute;
  bottom: 20%;
  left: 10%;
  font-size: 3.5rem;
  opacity: 0.13;
  animation: floatRandom4 9s ease-in-out infinite reverse;
  z-index: -1;
}

/* Emoji 5: Sleutel (Jeroen) */
.crew-footer-section h2::before {
  content: '🔧';
  position: absolute;
  top: -50px;
  right: -30px;
  font-size: 2.5rem;
  opacity: 0.08;
  animation: floatRandom5 14s ease-in-out infinite;
  z-index: -1;
}

/* Emoji 6: Flamingo (Nancy) */
.crew-footer-section h2::after {
  content: '🦩';
  position: absolute;
  bottom: -40px;
  left: -20px;
  font-size: 3.5rem;
  opacity: 0.14;
  animation: floatRandom6 13s ease-in-out infinite reverse;
  z-index: -1;
}

/* Emoji 7: Tornado (Frederik) */
.crew-footer-section p::before {
  content: '🌪️';
  position: absolute;
  top: -30px;
  left: 20%;
  font-size: 2.8rem;
  opacity: 0.09;
  animation: floatRandom7 11s ease-in-out infinite;
  z-index: -1;
}

/* Emoji 8: Rockhand (Mitchel) */
.crew-footer-section p::after {
  content: '🤘';
  position: absolute;
  bottom: -35px;
  right: 15%;
  font-size: 2.8rem;
  opacity: 0.12;
  animation: floatRandom8 9s ease-in-out infinite reverse;
  z-index: -1;
}

/* ALLE FOOTER ANIMATIES */
@keyframes floatRandom1 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
  25% { 
    transform: translate(20px, -15px) rotate(5deg);
    opacity: 0.08;
  }
  50% { 
    transform: translate(-10px, -25px) rotate(-3deg);
    opacity: 0.2;
  }
  75% { 
    transform: translate(15px, -5px) rotate(8deg);
    opacity: 0.12;
  }
}

@keyframes floatRandom2 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.12;
  }
  30% { 
    transform: translate(-25px, 20px) rotate(-8deg) scale(1.1);
    opacity: 0.18;
  }
  60% { 
    transform: translate(10px, -15px) rotate(5deg) scale(0.9);
    opacity: 0.06;
  }
}

@keyframes floatRandom3 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.1;
  }
  40% { 
    transform: translate(-15px, -20px) rotate(10deg);
    opacity: 0.16;
  }
  80% { 
    transform: translate(25px, 10px) rotate(-5deg);
    opacity: 0.05;
  }
}

@keyframes floatRandom4 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.13;
  }
  35% { 
    transform: translate(20px, -30px) rotate(-12deg) scale(1.2);
    opacity: 0.08;
  }
  70% { 
    transform: translate(-10px, 15px) rotate(7deg) scale(0.8);
    opacity: 0.19;
  }
}

@keyframes floatRandom5 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.08;
  }
  60% { 
    transform: translate(-30px, 20px) rotate(20deg);
    opacity: 0.15;
  }
}

@keyframes floatRandom6 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.14;
  }
  45% { 
    transform: translate(15px, -25px) rotate(-10deg) scale(1.1);
    opacity: 0.08;
  }
}

@keyframes floatRandom7 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.09;
  }
  50% { 
    transform: translate(-20px, -15px) rotate(25deg);
    opacity: 0.16;
  }
}

@keyframes floatRandom8 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.12;
  }
  40% { 
    transform: translate(25px, -10px) rotate(-15deg);
    opacity: 0.06;
  }
}

.crew-footer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.crew-footer-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.crew-footer-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  position: relative;
}

/* CREW CTA BUTTONS */
.crew-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.crew-cta-main {
  font-size: 1.1rem;
  padding: 1.25rem 2.5rem;
  box-shadow: var(--gold-shadow);
}

.crew-cta-secondary {
  font-size: 1rem;
  padding: 1.25rem 2rem;
}

.crew-cta-guarantee {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-align: center;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
}

.guarantee-icon {
  font-size: 1.2rem;
}

/* BORDEAUX RANDJE VOOR KNOPPEN - BETERE ZICHTBAARHEID */
.crew-cta-buttons .btn-primary {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--gold-shadow);
  border: 2px solid var(--bordeaux-warm) !important;
}

.crew-cta-buttons .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--bordeaux-warm) !important;
}

.crew-cta-buttons .btn-secondary:hover {
  background: var(--bordeaux-gradient);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--bordeaux-shadow);
  border-color: var(--bordeaux-deep) !important;
}

/* ===================================
   MOBIELE OPTIMALISATIES - VOLLEDIG GEOPTIMALISEERD
   =================================== */

/* TABLET & DESKTOP OVERGANG */
@media (max-width: 1024px) {
  /* STORY GRID - STAPEL ALLES */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .story-grid:nth-child(even) {
    direction: ltr;
  }
  
  .story-image,
  .story-video {
    max-width: 500px;
    margin: 0 auto;
  }
  
  /* TIMELINE - VERWIJDER LIJN & DOTS */
  .crew-timeline-container::before {
    display: none;
  }
  
  .crew-member-story::after {
    display: none !important;
  }
  
  .crew-member-story {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    text-align: center;
  }
  
  .crew-member-story.right {
    direction: ltr;
  }
  
  /* NANCY TABLET AANPASSINGEN */
  .nancy-timeline-special .nancy-main-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 3rem !important;
  }
  
  .nancy-timeline-special .nancy-text-section {
    text-align: center !important;
  }
  
  .nancy-timeline-special .nancy-photo {
    width: 300px !important;
    height: 300px !important;
  }
}

/* MOBIEL - GROTE SCHERMEN (768px) */
@media (max-width: 768px) {
  /* HERO SECTIES - PADDING REDUCTIE */
  .crew-timeline-section,
  .crew-footer-section,
  .band-story-fullwidth {
    padding: 3rem 0;
  }  
  
  /* CONTAINERS - PADDING REDUCTIE */
  .crew-timeline-container,
  .crew-footer-container,
  .story-container {
    padding: 0 1.5rem;
  }
  
  /* STORY CONTENT - KLEINERE TEKST */
  .story-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .story-quote {
    padding: 1.5rem;
    font-size: 1.1rem;
  }
  
  /* MEMBER CONTENT - COMPACTER */
  .member-photo {
    margin-bottom: 2rem;
  }
  
  .member-photo img {
    height: 300px;
  }
  
  .member-story-content {
    padding: 2rem 1.5rem;
  }
  
  .member-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  
  .member-full-name {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  
  .member-nickname {
    font-size: 1.2rem;
  }
  
  .member-role {
    font-size: 0.9rem;
  }
  
  .member-story-text {
    font-size: 1rem;
    text-align: left !important;
    line-height: 1.6;
  }
  
  .crew-member-story {
    margin-bottom: 3rem;
  }
  
  /* NANCY MOBIEL - STAPEL ALLES */
  .nancy-timeline-special .nancy-main-content {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 2rem !important;
  }
  
  .nancy-timeline-special .nancy-text-section {
    text-align: center !important;
  }
  
  .nancy-timeline-special .nancy-photo {
    width: 250px !important;
    height: 250px !important;
    border-width: 6px !important;
  }
  
  .nancy-special-container {
    padding: 3rem 2rem 2rem 2rem !important;
  }
  
  .nancy-timeline-special .nancy-name {
    font-size: 2.5rem !important;
  }
  
  .nancy-timeline-special .nancy-nickname {
    font-size: 1.5rem !important;
    letter-spacing: 2px !important;
  }

  .nancy-timeline-special .nancy-role {
    font-size: 1.1rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .nancy-timeline-special .nancy-text {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }
  
  .nancy-timeline-special .nancy-fun-fact {
    padding: 2rem 1.5rem !important;
  }
  
  .nancy-timeline-special .nancy-fun-fact h4 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
  }
  
  .nancy-timeline-special .nancy-fun-fact p {
    font-size: 1rem !important;
  }
  
  /* CTA BUTTONS - STAPEL VERTICAAL */
  .crew-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .crew-cta-main,
  .crew-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .crew-cta-guarantee {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* EXTRA KLEINE SCHERMEN (480px) */
@media (max-width: 480px) {
  /* HERO SECTIES - MEER PADDING REDUCTIE */
  .crew-timeline-section,
  .crew-footer-section,
  .band-story-fullwidth {
    padding: 2rem 0;
  }
  
  /* CONTAINERS - MINIMALE PADDING */
  .crew-timeline-container,
  .crew-footer-container,
  .story-container {
    padding: 0 1rem;
  }
  
  /* STORY QUOTE - KLEINER */
  .story-quote {
    padding: 1.25rem;
    font-size: 1rem;
  }
  
  .story-quote::before {
    font-size: 3rem;
    top: -15px;
    left: 15px;
  }
  
  /* MEMBER CONTENT - ZEER COMPACT */
  .member-photo img {
    height: 250px;
  }
  
  .member-story-content {
    padding: 1.5rem 1rem;
  }
  
  .member-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }
  
  .member-full-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .member-nickname {
    font-size: 1rem;
  }
  
  .member-role {
    font-size: 0.85rem;
  }
  
  .member-story-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .crew-member-story {
    margin-bottom: 2.5rem;
  }
  
  /* NANCY KLEINE SCHERMEN - ULTRA COMPACT */
  .nancy-timeline-special .nancy-photo {
    width: 200px !important;
    height: 200px !important;
    border-width: 4px !important;
    margin-bottom: 1.5rem !important;
  }
  
  .nancy-special-container {
    padding: 2rem 1.5rem 1.5rem 1.5rem !important;
  }
  
  .nancy-timeline-special .nancy-name {
    font-size: 2rem !important;
  }
  
  .nancy-timeline-special .nancy-nickname {
    font-size: 1.2rem !important;
    letter-spacing: 1px !important;
  }
  
  .nancy-timeline-special .nancy-role {
    font-size: 1rem !important;
    margin-bottom: 1.25rem !important;
  }
  
  .nancy-timeline-special .nancy-text {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.25rem !important;
  }
  
  .nancy-timeline-special .nancy-fun-fact {
    padding: 1.5rem 1rem !important;
  }
  
  .nancy-timeline-special .nancy-fun-fact h4 {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .nancy-timeline-special .nancy-fun-fact p {
    font-size: 0.9rem !important;
  }
  
  /* CTA BUTTONS - COMPACTER */
  .crew-cta-buttons {
    gap: 0.75rem;
  }
  
  .crew-cta-main,
  .crew-cta-secondary {
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* EXTRA KLEINE SCHERMEN (360px) */
@media (max-width: 360px) {
  /* ULTRA COMPACTE LAYOUT */
  .crew-timeline-container,
  .crew-footer-container,
  .story-container {
    padding: 0 0.75rem;
  }
  
  .member-story-content {
    padding: 1.25rem 0.75rem;
  }
  
  .member-full-name {
    font-size: 1.3rem;
  }
  
  .member-story-text {
    font-size: 0.9rem;
  }
  
  .nancy-special-container {
    padding: 1.5rem 1rem !important;
  }
  
  .nancy-timeline-special .nancy-photo {
    width: 180px !important;
    height: 180px !important;
  }
  
  .nancy-timeline-special .nancy-name {
    font-size: 1.8rem !important;
  }
  
  .crew-cta-buttons {
    gap: 0.75rem;
  }
  
  .crew-cta-main,
  .crew-cta-secondary {
    max-width: 280px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .nancy-timeline-special .nancy-photo,
  .member-photo,
  .story-image {
    animation: none;
    transition: none;
  }
  
  .crew-footer-section::before,
  .crew-footer-section::after,
  .crew-footer-container::before,
  .crew-footer-container::after,
  .crew-footer-section h2::before,
  .crew-footer-section h2::after,
  .crew-footer-section p::before,
  .crew-footer-section p::after,
  .nancy-timeline-special .nancy-fun-fact::before {
    animation: none;
  }
  
  .member-story-content:hover,
  .nancy-special-container:hover {
    transform: none;
    box-shadow: none;
  }
}

/* HIGH CONTRAST */
@media (prefers-contrast: high) {
  .nancy-special-container {
    border: 4px solid var(--text-primary) !important;
  }
  
  .member-story-content {
    border: 2px solid var(--text-primary) !important;
  }
  
  .crew-cta-buttons .btn-primary,
  .crew-cta-buttons .btn-secondary {
    border: 3px solid var(--text-primary) !important;
  }
}

/* TOUCH DEVICE OPTIMALISATIES */
@media (hover: none) and (pointer: coarse) {
  /* VERWIJDER HOVER EFFECTEN OP TOUCH */
  .member-photo:hover,
  .nancy-timeline-special .nancy-photo:hover,
  .story-image:hover {
    transform: none;
    box-shadow: none;
  }
  
  .member-story-content:hover,
  .nancy-special-container:hover {
    transform: none;
    box-shadow: none;
    border-color: inherit;
  }
  
  /* TOUCH-FRIENDLY SPACING */
  .crew-member-story {
    margin-bottom: 3rem;
  }
  
  .crew-cta-buttons .btn-primary,
  .crew-cta-buttons .btn-secondary {
    min-height: 48px;
    padding: 1rem 2rem;
  }
}

/* LANDSCAPE ORIENTATION FIXES */
@media screen and (orientation: landscape) and (max-height: 500px) {
  .crew-timeline-section,
  .crew-footer-section {
    padding: 1.5rem 0;
  }
  
  .crew-footer-section h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .crew-footer-section p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

/* PRINT STYLES */
@media print {
  .crew-footer-section {
    background: var(--white) !important;
    color: var(--black) !important;
    padding: 1rem 0 !important;
  }
  
  .crew-footer-section::before,
  .crew-footer-section::after,
  .crew-footer-container::before,
  .crew-footer-container::after,
  .crew-footer-section h2::before,
  .crew-footer-section h2::after,
  .crew-footer-section p::before,
  .crew-footer-section p::after,
  .nancy-timeline-special .nancy-fun-fact::before {
    display: none !important;
  }
  
  .nancy-special-container {
    background: var(--white) !important;
    border: 2px solid var(--black) !important;
    box-shadow: none !important;
    transform: none !important;
  }
  
  .member-story-content {
    background: var(--white) !important;
    border: 1px solid var(--black) !important;
    box-shadow: none !important;
    transform: none !important;
  }
  
  .crew-cta-buttons {
    display: none !important;
  }
  
  .crew-member-story {
    page-break-inside: avoid;
    margin-bottom: 2rem !important;
  }
}

/* FOCUS STYLES */
.member-story-content:focus-within {
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}

.nancy-special-container:focus-within {
  outline: 3px solid var(--nancy-pink);
  outline-offset: 2px;
}

.crew-cta-buttons .btn:focus {
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}

/* PERFORMANCE OPTIMALISATIES */
@media (max-width: 768px) {
  .member-photo,
  .nancy-timeline-special .nancy-photo {
    will-change: auto;
  }
  
  .member-story-content,
  .nancy-special-container {
    will-change: auto;
  }
  
  /* SIMPLIFY TRANSFORMS OP MOBIEL */
  .member-story-content:hover {
    transform: translateY(-2px);
  }
  
  /* REDUCE ANIMATION COMPLEXITY */
  .crew-footer-section::before,
  .crew-footer-section::after,
  .crew-footer-container::before,
  .crew-footer-container::after {
    animation-duration: 12s;
    animation-timing-function: ease-in-out;
  }
}

/* ===================================
   DARK MODE SUPPORT
   =================================== */

@media (prefers-color-scheme: dark) {
  /* Nancy's container donkerder maken in dark mode */
  .nancy-special-container {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a2a3a 100%) !important;
    box-shadow: 0 25px 50px rgba(212, 165, 165, 0.2) !important;
  }
  
  /* Nancy's tekst kleuren aanpassen voor dark mode */
  .nancy-timeline-special .nancy-text {
    color: #e0e0e0 !important;
  }
  
  .nancy-timeline-special .nancy-role {
    color: #b0b0b0 !important;
  }
}

/* CLASS-BASED DARK MODE ONDERSTEUNING */
[data-theme="dark"] .nancy-special-container,
.dark .nancy-special-container {
  background: linear-gradient(135deg, #2a2a2a 0%, #3a2a3a 100%) !important;
  box-shadow: 0 25px 50px rgba(212, 165, 165, 0.2) !important;
}

[data-theme="dark"] .nancy-timeline-special .nancy-text,
.dark .nancy-timeline-special .nancy-text {
  color: #e0e0e0 !important;
}

[data-theme="dark"] .nancy-timeline-special .nancy-role,
.dark .nancy-timeline-special .nancy-role {
  color: #b0b0b0 !important;
}

/* ===================================
   JAVASCRIPT ENHANCEMENT CLASSES
   =================================== */

.js-enhanced .member-story-content {
  transition: all 0.3s ease;
}

.js-enhanced .nancy-timeline-special .nancy-photo {
  cursor: pointer;
}

.js-enhanced .nancy-timeline-special .nancy-photo:hover {
  animation-play-state: paused;
}

.js-enhanced .story-image {
  cursor: pointer;
}

.js-enhanced .video-wrapper {
  cursor: pointer;
}

/* ===================================
   BROWSER COMPATIBILITY FALLBACKS
   =================================== */

@supports not (background-clip: text) {
  .nancy-timeline-special .nancy-name {
    background: none !important;
    color: var(--nancy-pink) !important;
  }
}

@supports not (grid-template-columns: 1fr 1fr) {
  .crew-member-story {
    display: block !important;
  }
  
  .member-photo {
    margin-bottom: 2rem !important;
  }
  
  .story-grid {
    display: block !important;
  }
  
  .story-image,
  .story-video {
    margin-bottom: 2rem !important;
  }
}

@supports not (backdrop-filter: blur(10px)) {
  .crew-cta-guarantee {
    background: rgba(0, 0, 0, 0.7) !important;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--gold-warm);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
}

/* JUBILEUM SPECIFIEKE UTILITY CLASSES */
.decade-accent {
  color: var(--jubilee-gold);
  font-weight: 700;
}

.nancy-accent {
  color: var(--nancy-pink);
  font-weight: 600;
}

.celebration-bg {
  background: var(--celebration-gradient);
  color: var(--white);
}

.party-shadow {
  box-shadow: var(--party-glow);
}

.confetti-effect {
  position: relative;
  overflow: hidden;
}

.confetti-effect::after {
  content: '🎊🎉✨🎪';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: confettiFall 3s infinite;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(100px) rotate(360deg);
    opacity: 0;
  }
}

/* SCROLL SNAP VOOR MODERNE BROWSERS */
@supports (scroll-snap-type: y mandatory) {
  .crew-timeline-container {
    scroll-snap-type: y proximity;
  }
  
  .crew-member-story {
    scroll-snap-align: start;
  }
}

/* CONTAINER QUERIES SUPPORT (TOEKOMST) */
@supports (container-type: inline-size) {
  .story-container {
    container-type: inline-size;
  }
  
  @container (max-width: 768px) {
    .story-grid {
      grid-template-columns: 1fr;
    }
  }
}

/* PRELOAD OPTIMALISATIES */
.preload-images {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ===================================
   CREW SECTIE HERO BALANS FIX
   =================================== */

/* SPECIALE STYLING ALLEEN VOOR CREW SECTIE HERO */
.hero-universal.hero-bordeaux.hero-crew {
  padding: 4rem 0 3rem; /* 👈 Meer bottom padding voor balans */
  display: flex;
  align-items: center; /* 👈 Verticaal centreren */
  justify-content: center;
}

.hero-universal.hero-bordeaux.hero-crew .hero-universal-container {
  padding: 0 2rem; /* 👈 Geen top padding */
}

.hero-universal.hero-bordeaux.hero-crew h1 {
  margin-top: 0; /* 👈 Geen extra top margin */
  margin-bottom: 1.5rem;
}

.hero-universal.hero-bordeaux.hero-crew .hero-subtitle {
  margin-bottom: 2rem; /* 👈 Meer ruimte onder subtitle */
}

/* RESPONSIVE BALANS VOOR CREW HERO */
@media (max-width: 768px) {
  .hero-universal.hero-bordeaux.hero-crew {
    padding: 3rem 0 2.5rem;
  }
  
  .hero-universal.hero-bordeaux.hero-crew .hero-subtitle {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-universal.hero-bordeaux.hero-crew {
    padding: 2.5rem 0 2rem;
  }
  
  .hero-universal.hero-bordeaux.hero-crew .hero-subtitle {
    margin-bottom: 1.25rem;
  }
}


/* ===================================
   EINDE CREW.CSS - OPGESCHOOND V3
   Versie: 2025.3 - Alleen crew-specifieke styling
   Geen hero styling meer - dat komt uit hero.css
   "We will give there a lap on!!" 🎪
   =================================== */


