/* ===================================
   MAIN-OPTIMIZED CSS - FAUTE BENDT
   Core layout, componenten, forms & buttons
   10-jaar jubileum branding - MOBIEL GEOPTIMALISEERD
   ZONDER DUPLICATIE VAN CRITICAL-INLINE SECTIES
   =================================== */

/* MAIN CONTENT WRAPPER */
.faute-main-content {
  padding-top: 0;
  min-height: 100vh;
}

/* SECTION SPACING */
section {
  padding: 4rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: var(--mobile-section-padding);
  }
}

@media (max-width: 480px) {
  section {
    padding: 2rem 0;
  }
}

section:nth-child(even):not(.social-follow-section-fullwidth) {
  background: var(--bg-secondary);
}

/* ===================================
   LOADING SCREEN ANIMATIONS - UITGEBREID
   =================================== */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-warm));
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    font-family: 'Montserrat', Arial, sans-serif;
}

.loader-content {
    text-align: center;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

.loader-logo {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
    .loader-logo {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        font-size: 2.5rem;
    }
}

.loader-text {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    animation: slideInLeft 0.6s ease 0.2s both;
}

@media (max-width: 768px) {
    .loader-text {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .loader-text {
        font-size: 1.6rem;
    }
}

.loader-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: slideInRight 0.6s ease 0.4s both;
}

@media (max-width: 768px) {
    .loader-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .loader-subtitle {
        font-size: 0.9rem;
    }
}

.loader-progress {
    width: 200px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.6s ease 0.6s both;
}

@media (max-width: 768px) {
    .loader-progress {
        width: 150px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .loader-progress {
        width: 120px;
        height: 3px;
    }
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--dusty-pink), var(--white));
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

#loadingText {
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0.8;
    animation: loadingPulse 1.5s infinite;
}

@media (max-width: 768px) {
    #loadingText {
        font-size: 0.8rem;
    }
}

/* LOADING STATES */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* ===================================
   FOTO BESCHERMING - UITGEBREID
   =================================== */

img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

.protected-image {
    position: relative;
    overflow: hidden;
}

.protected-image::after {
    content: "© Faute Bendt";
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 3px;
    pointer-events: none;
    opacity: 0.8;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    z-index: 10;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .protected-image::after {
        font-size: 10px;
        padding: 3px 6px;
        bottom: 6px;
        right: 6px;
    }
}

.protected-image:hover::after {
    opacity: 1;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}

/* WATERMARK VOOR GROTE AFBEELDINGEN */
.large-image::before {
    content: "FAUTE BENDT";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 4px;
}

@media (max-width: 768px) {
    .large-image::before {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
}

/* CONTEXT MENU BLOKKERING */
.protected-image,
.hero-image,
.band-photo {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* PRINT BESCHERMING */
@media print {
    .protected-image,
    .hero-image,
    .band-photo {
        display: none !important;
    }
    
    .protected-image::after {
        content: "Foto's beschikbaar op www.fautebendt.be";
        display: block;
        text-align: center;
        padding: 20px;
        background: #f0f0f0;
        border: 2px solid #ccc;
        color: #333;
        font-size: 14px;
    }
}

/* ===================================
   GRID LAYOUTS & COMPONENTS - UITGEBREID
   =================================== */

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-grid {
    gap: 1.25rem;
  }
}

.contact-method {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-method {
    padding: 1.5rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .contact-method {
    padding: 1.25rem;
  }
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(218, 165, 32, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.contact-method:hover::before {
  left: 100%;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--gold-shadow);
  border-color: var(--gold-warm);
}

@media (max-width: 768px) {
  .contact-method:hover {
    transform: translateY(-3px);
  }
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  .contact-icon {
    font-size: 2.2rem;
  }
}

.contact-method:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-method h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .contact-method h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .contact-method h3 {
    font-size: 1.1rem;
  }
}

.contact-method p {
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.contact-method a {
  color: var(--gold-warm);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .contact-method a {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-method a {
    font-size: 0.95rem;
  }
}

.contact-method a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

.response-time {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .response-time {
    font-size: 0.8rem;
  }
}

/* STORY COMPONENTS */
.story-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--gold-warm);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .story-item {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .story-item {
    padding: 1rem;
    gap: 0.5rem;
  }
}

.story-item:hover {
  transform: translateX(5px);
  border-left-color: var(--gold-bright);
  box-shadow: var(--mobile-shadow);
}

.story-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--gold-warm);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .story-icon {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .story-icon {
    font-size: 1.2rem;
  }
}

.story-item:hover .story-icon {
  transform: scale(1.2) rotate(10deg);
}

.story-item p {
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .story-item p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .story-item p {
    font-size: 0.9rem;
  }
}

.story-item strong {
  color: var(--gold-warm);
  font-weight: 700;
}

/* CONTACT DIRECT */
.contact-direct {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .contact-direct {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-direct {
    padding: 1.25rem;
  }
}

.contact-direct::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.05) 0%, transparent 70%);
  animation: contactGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes contactGlow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
  50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
}

.contact-direct h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .contact-direct h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  .contact-direct h4 {
    font-size: 1.1rem;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .contact-item {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
  }
}

.contact-item:hover {
  background: rgba(218, 165, 32, 0.1);
  transform: translateX(5px);
}

.contact-item .icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  color: var(--gold-warm);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .contact-item .icon {
    font-size: 1.1rem;
    width: 20px;
  }
}

.contact-item:hover .icon {
  transform: scale(1.2);
}

.contact-item a {
  color: var(--gold-warm);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .contact-item a {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .contact-item a {
    font-size: 0.95rem;
  }
}

.contact-item a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* FORM NOTES */
.form-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
  padding: 1rem;
  background: rgba(218, 165, 32, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--gold-warm);
}

@media (max-width: 768px) {
  .form-note {
    font-size: 0.85rem;
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .form-note {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}

.form-note strong {
  color: var(--gold-warm);
  font-weight: 700;
}

/* ===================================
   ADVANCED ANIMATIONS & EFFECTS
   =================================== */

/* SCROLL ANIMATIONS */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* INTERSECTION OBSERVER CLASSES */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.animate-slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.animate-slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.animate-scale.animate {
  opacity: 1;
  transform: scale(1);
}

/* STAGGERED ANIMATIONS */
.stagger-animation > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.stagger-animation.animate > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation.animate > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation.animate > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation.animate > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation.animate > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation.animate > *:nth-child(6) { transition-delay: 0.6s; }

.stagger-animation.animate > * {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER EFFECTS - ADVANCED */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hover-lift:hover {
    transform: translateY(-4px);
  }
}

.hover-glow {
  position: relative;
  transition: all 0.3s ease;
}

.hover-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gold-gradient);
  opacity: 0;
  border-radius: inherit;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(10px);
}

.hover-glow:hover::before {
  opacity: 0.3;
}

.hover-bounce {
  transition: transform 0.3s ease;
}

.hover-bounce:hover {
  animation: gentleBounce 0.6s ease;
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-5px); }
  50% { transform: translateY(-8px); }
  75% { transform: translateY(-3px); }
}

/* PARALLAX EFFECTS */
.parallax-element {
  transform: translateZ(0);
  will-change: transform;
}

@media (max-width: 768px) {
  .parallax-element {
    transform: none;
    will-change: auto;
  }
}

/* LOADING STATES */
.skeleton {
  background: linear-gradient(90deg, 
    var(--bg-secondary) 25%, 
    rgba(255,255,255,0.1) 50%, 
    var(--bg-secondary) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--gold-warm);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 2rem auto;
}

@media (max-width: 768px) {
  .loading-spinner {
    width: 32px;
    height: 32px;
    border-width: 3px;
  }
}

/* ===================================
   SOCIAL PROOF & TESTIMONIALS - EXTRA
   =================================== */

.social-proof {
  margin-top: 4rem;
  text-align: center;
}

@media (max-width: 768px) {
  .social-proof {
    margin-top: 3rem;
  }
}

@media (max-width: 480px) {
  .social-proof {
    margin-top: 2rem;
  }
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .proof-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}

.proof-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .proof-item {
    padding: 1.5rem;
    max-width: 300px;
    margin: 0 auto;
  }
}

.proof-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.proof-item:hover::before {
  opacity: 0.05;
}

.proof-item:hover {
  transform: translateY(-5px);
  border-color: var(--gold-warm);
  box-shadow: var(--gold-shadow);
}

.proof-item > * {
  position: relative;
  z-index: 2;
}

.proof-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: countUp 2s ease-out;
}

@media (max-width: 768px) {
  .proof-number {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
  }
}

@media (max-width: 480px) {
  .proof-number {
    font-size: 2rem;
  }
}

@keyframes countUp {
  from { 
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.proof-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .proof-label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .proof-label {
    font-size: 0.8rem;
  }
}

/* REVIEW STARS */
.review-stars {
  display: flex
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  font-size: 1.2rem;
  color: var(--gold-warm);
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .star {
    font-size: 1.1rem;
  }
}

.star.filled {
  color: var(--gold-bright);
}

.star.half {
  background: linear-gradient(90deg, var(--gold-bright) 50%, var(--border-color) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SECTION CTA */
.section-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, 
    rgba(218, 165, 32, 0.05) 0%, 
    rgba(212, 165, 165, 0.05) 100%
  );
  border-radius: 20px;
  border: 1px solid rgba(218, 165, 32, 0.1);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-cta {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .section-cta {
    padding: 1.5rem 1rem;
  }
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
  animation: ctaGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.6; }
}

.section-cta > * {
  position: relative;
  z-index: 2;
}

.cta-subtext {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .cta-subtext {
    font-size: 0.85rem;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .cta-subtext {
    font-size: 0.8rem;
    max-width: 280px;
  }
}

.cta-subtext a {
  color: var(--gold-warm);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cta-subtext a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* ===================================
   ADVANCED FORM COMPONENTS
   =================================== */

/* MULTI-STEP FORM */
.multi-step-form {
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .multi-step-form {
    max-width: 400px;
  }
}

.form-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

@media (max-width: 768px) {
  .form-steps {
    margin-bottom: 1.5rem;
  }
}

.form-steps::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.form-steps::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: var(--gold-gradient);
  z-index: 2;
  transition: width 0.5s ease;
}

.form-steps.step-1::after { width: 0%; }
.form-steps.step-2::after { width: 50%; }
.form-steps.step-3::after { width: 100%; }

.step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .step-indicator {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}

.step-indicator.active {
  background: var(--gold-gradient);
  border-color: var(--gold-bright);
  color: var(--white);
  transform: scale(1.1);
}

.step-indicator.completed {
  background: var(--gold-warm);
  border-color: var(--gold-bright);
  color: var(--white);
}

.step-indicator.completed::before {
  content: '✓';
  font-size: 1rem;
  font-weight: 900;
}

/* FORM VALIDATION */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #27ae60;
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .error-message {
    font-size: 0.8rem;
  }
}

.success-message {
  color: #27ae60;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .success-message {
    font-size: 0.8rem;
  }
}

/* CUSTOM SELECT STYLING */
.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

/* FILE UPLOAD */
.file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
  background: var(--bg-secondary);
  border: 2px dashed var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}

@media (max-width: 768px) {
  .file-upload {
    padding: 1.5rem;
  }
}

.file-upload:hover {
  border-color: var(--gold-warm);
  background: rgba(218, 165, 32, 0.05);
}

.file-upload input[type=file] {
  position: absolute;
  left: -9999px;
}

.file-upload-icon {
  font-size: 2rem;
  color: var(--gold-warm);
  margin-bottom: 0.5rem;
}

.file-upload-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .file-upload-text {
    font-size: 0.85rem;
  }
}

/* RANGE SLIDER */
.range-slider {
  position: relative;
  margin: 1rem 0;
}

.range-slider input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border-color);
  outline: none;
  -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(218, 165, 32, 0.3);
}

.range-slider input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(218, 165, 32, 0.3);
}

.range-value {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===================================
   MODAL & OVERLAY COMPONENTS
   =================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .modal {
    padding: 1.5rem;
    border-radius: 16px;
    width: 95%;
  }
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.modal-header {
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .modal-title {
    font-size: 1.3rem;
  }
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.modal-body {
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .modal-footer {
    flex-direction: column;
  }
}

/* TOAST NOTIFICATIONS */
.toast-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 768px) {
  .toast-container {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }
}

.toast {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .toast {
    min-width: auto;
    width: 100%;
  }
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left: 4px solid #27ae60;
}

.toast.error {
  border-left: 4px solid #e74c3c;
}

.toast.warning {
  border-left: 4px solid #f39c12;
}

.toast.info {
  border-left: 4px solid var(--gold-warm);
}

.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.toast-message {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  color: var(--text-primary);
}

/* PROGRESS BAR */
.toast::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold-gradient);
  width: 100%;
  animation: toastProgress 5s linear;
}

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE - UITGEBREID
   =================================== */

/* FOCUS MANAGEMENT */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--gold-gradient);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
}

/* FOCUS TRAP */
.focus-trap {
  position: relative;
}

.focus-trap::before,
.focus-trap::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* SCREEN READER ONLY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FOCUS STATES - UITGEBREID */
.tab-btn:focus,
.show-btn:focus,
.social-card-large:focus,
.indicator:focus,
.contact-method:focus,
.usp-card:focus,
.story-item:focus {
  outline: 3px solid var(--gold-warm);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .tab-btn:focus,
  .show-btn:focus,
  .social-card-large:focus,
  .indicator:focus,
  .btn:focus,
  .contact-method-quick:focus,
  .contact-method:focus,
  .usp-card:focus,
  .story-item:focus {
    outline: 4px solid var(--gold-warm);
    outline-offset: 3px;
  }
}

/* KEYBOARD NAVIGATION */
.keyboard-user *:focus {
  outline: 3px solid var(--gold-warm) !important;
  outline-offset: 2px !important;
}

/* HIGH CONTRAST MODE - UITGEBREID */
@media (prefers-contrast: high) {
  .btn-primary {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .btn-secondary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
  }
  
  .show-card,
  .testimonial-card,
  .usp-card,
  .contact-method,
  .story-item {
    border: 2px solid var(--text-primary);
  }
  
  .show-card.featured {
    border: 3px solid var(--gold-bright);
    background: var(--black);
    color: var(--white);
  }
  
  .tab-btn {
    border: 2px solid var(--text-primary);
  }
  
  .tab-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--white);
  }
  
  .social-card-large {
    border: 2px solid var(--text-primary);
  }
  
  .proof-item {
    border: 2px solid var(--text-primary);
  }
}

/* REDUCED MOTION - UITGEBREID */
@media (prefers-reduced-motion: reduce) {
  .band-member,
  .usp-card,
  .contact-method,
  .btn,
  .show-card,
  .social-card-large,
  .testimonial-card,
  .story-item,
  .proof-item,
  .modal,
  .toast {
    transition: none;
  }
  
  .member-emoji,
  .social-emoji,
  .usp-icon,
  .contact-icon {
    animation: none;
  }
  
  .countdown-item,
  .loading-spinner,
  .skeleton {
    animation: none;
  }
  
  .social-follow-section-fullwidth::before,
  .section-cta::before,
  .contact-direct::before {
    animation: none;
  }
  
  .animate-on-scroll,
  .animate-slide-left,
  .animate-slide-right,
  .animate-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .stagger-animation > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* PRINT STYLES - UITGEBREID */
@media print {
  .band-member:hover,
  .usp-card:hover,
  .contact-method:hover,
  .show-card:hover,
  .testimonial-card:hover,
  .story-item:hover,
  .proof-item:hover {
    transform: none;
    box-shadow: none;
  }
  
  .btn {
    background: transparent !important;
    color: var(--black) !important;
    border: 1px solid var(--black) !important;
  }
  
  .shows-section-fullwidth::before,
  .social-follow-section-fullwidth::before,
  .section-cta::before,
  .contact-direct::before {
    background: var(--white) !important;
  }
  
  .social-follow-section-fullwidth {
    background: var(--white) !important;
  }
  
  .countdown-timer,
  .carousel-indicators,
  .shows-tabs,
  .modal-overlay,
  .toast-container,
  .loading-spinner {
    display: none;
  }
  
  .testimonial-slide {
    display: grid !important;
    page-break-inside: avoid;
  }
  
  .contact-cta-full-width,
  .section-cta {
    display: none;
  }
  
  .story-item,
  .proof-item,
  .contact-method {
    page-break-inside: avoid;
  }
  
  .modal {
    position: static;
    background: var(--white);
    border: 2px solid var(--black);
    box-shadow: none;
    page-break-inside: avoid;
  }
}

@media print and (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .bandleden-grid {
    grid-template-columns: 1fr;
  }
  
  .shows-grid {
    grid-template-columns: 1fr;
  }
  
  .social-cards-grid {
    display: none;
  }
  
  .contact-simple-grid {
    grid-template-columns: 1fr;
  }
  
  .proof-stats {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   BROWSER COMPATIBILITY - UITGEBREID
   =================================== */

/* GRID FALLBACKS VOOR OUDERE BROWSERS */
@supports not (display: grid) {
  .shows-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .show-card {
    flex: 1 1 300px;
    margin: 1rem;
  }
  
  @media (max-width: 768px) {
    .show-card {
      flex: 1 1 100%;
      margin: 0.5rem 0;
    }
  }
  
  .social-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .social-card-large {
    flex: 0 0 45%;
    margin: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .social-card-large {
      flex: 0 0 48%;
    }
  }
  
  .bandleden-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .band-member {
    flex: 1 1 250px;
    margin: 1rem;
  }
  
  @media (max-width: 768px) {
    .band-member {
      flex: 1 1 100%;
      margin: 0.5rem 0;
    }
  }
  
  .contact-simple-grid,
  .contact-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .contact-quick,
  .contact-message-simple,
  .contact-method {
    flex: 1 1 300px;
    margin: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .contact-quick,
    .contact-message-simple,
    .contact-method {
      flex: 1 1 100%;
      margin: 0.5rem 0;
    }
  }
  
  .proof-stats,
  .usp-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .proof-item,
  .usp-card {
    flex: 1 1 250px;
    margin: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .proof-item,
    .usp-card {
      flex: 1 1 100%;
      margin: 0.5rem 0;
    }
  }
}

/* FLEXBOX FALLBACKS */
@supports not (display: flex) {
  .hero-buttons,
  .show-action,
  .contact-item,
  .story-item,
  .modal-footer {
    display: block;
  }
  
  .hero-buttons .btn,
  .show-action .show-btn {
    display: block;
    margin-bottom: 1rem;
  }
  
  .contact-item .icon,
  .story-item .story-icon {
    display: inline-block;
    margin-right: 0.5rem;
  }
}

/* BACKDROP-FILTER FALLBACK */
@supports not (backdrop-filter: blur(10px)) {
  .tab-btn,
  .show-card,
  .countdown-item,
  .modal-overlay {
    background: rgba(255, 255, 255, 0.95);
  }
  
  .show-card.featured {
    background: rgba(255, 255, 255, 0.9);
  }
  
  @media (prefers-color-scheme: dark) {
    .tab-btn,
    .show-card,
    .countdown-item {
      background: rgba(26, 26, 26, 0.95);
    }
  }
}

/* BACKGROUND-CLIP FALLBACK */
@supports not (background-clip: text) {
  .social-follow-section h3,
  .proof-number,
  .highlight,
  .hero-content h1 {
    background: none;
    color: var(--gold-warm);
  }
}

/* CSS CUSTOM PROPERTIES FALLBACK */
@supports not (color: var(--gold-warm)) {
  :root {
    color: #DAA520;
  }
  
  .btn-primary {
    background: #DAA520;
  }
  
  .btn-secondary {
    border-color: #DAA520;
    color: #DAA520;
  }
  
  .show-date {
    background: #DAA520;
  }
  
  .social-card-large.facebook {
    background: #1877F2;
  }
  
  .social-card-large.instagram {
    background: #E1306C;
  }
  
  .social-card-large.youtube {
    background: #FF0000;
  }
  
  .social-card-large.bandsintown {
    background: #00D4AA;
  }
}

/* PERFORMANCE OPTIMALISATIES - MOBIEL */
@media (max-width: 768px) {
  .shows-section-fullwidth,
  .social-follow-section-fullwidth,
  .testimonials-section-fullwidth,
  .section-cta,
  .contact-direct {
    will-change: auto;
  }
  
  .show-card,
  .band-member,
  .social-card-large,
  .testimonial-card,
  .usp-card,
  .contact-method,
  .story-item,
  .proof-item {
    will-change: auto;
  }
  
  /* Simplify transforms on mobile */
  .show-card:hover,
  .band-member:hover,
  .social-card-large:hover,
  .testimonial-card:hover,
  .usp-card:hover,
  .contact-method:hover,
  .story-item:hover,
  .proof-item:hover {
    transform: translateY(-3px) scale(1.01);
  }
  
  /* Reduce animation complexity */
  .member-emoji,
  .social-emoji,
  .usp-icon,
  .contact-icon {
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
  }
  
  /* Optimize background effects */
  .social-follow-section-fullwidth::before,
  .section-cta::before,
  .contact-direct::before {
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
  }
}

/* MOBIELE BROWSER SPECIFIC FIXES */
@media (max-width: 768px) {
  /* iOS Safari fixes */
  @supports (-webkit-appearance: none) {
    .show-card,
    .band-member,
    .testimonial-card,
    .usp-card,
    .contact-method,
    .story-item {
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }
    
    .btn,
    .show-btn,
    .tab-btn {
      -webkit-appearance: none;
    }
    
    .modal {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Android Chrome fixes */
  @supports (display: -webkit-box) {
    .member-description,
    .testimonial-text,
    .story-item p,
    .usp-description {
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      display: -webkit-box;
    }
  }
  
  /* Samsung Internet fixes */
  @supports (-webkit-appearance: none) and (not (-webkit-overflow-scrolling: touch)) {
    .modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
}

/* JAVASCRIPT SUPPORT CLASSES - MOBIEL */
@media (max-width: 768px) {
  .js-mobile-menu-open {
    overflow: hidden;
  }
  
  .js-mobile-scroll-lock {
    position: fixed;
    width: 100%;
  }
  
  .js-mobile-tab-active .shows-tab-content {
    display: block;
    animation: mobileSlideIn 0.3s ease;
  }
  
  @keyframes mobileSlideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .js-loading .page-loader {
    opacity: 1;
    visibility: visible;
  }
  
  .js-loaded .page-loader {
    opacity: 0;
    visibility: hidden;
  }
  
  .js-modal-open {
    overflow: hidden;
  }
  
  .js-toast-show .toast {
    transform: translateX(0);
  }
}

/* EXTRA KLEIN MOBIEL - FINAL TWEAKS */
@media (max-width: 360px) {
  .hero-container,
  .shows-container,
  .proof-container,
  .social-follow-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .show-card,
  .band-member,
  .testimonial-card,
  .contact-quick,
  .contact-message-simple,
  .usp-card,
  .contact-method,
  .story-item,
  .proof-item {
    padding: 1rem 0.75rem;
  }
  
  .btn,
  .show-btn,
  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  
  .modal {
    padding: 1rem;
    width: 98%;
  }
  
  .toast {
    padding: 0.75rem 1rem;
    min-width: auto;
  }
  
  .section-cta {
    padding: 1rem 0.75rem;
  }
  
  .contact-direct {
    padding: 1rem 0.75rem;
  }
  
  .file-upload {
    padding: 1rem 0.75rem;
  }
  
  .multi-step-form {
    max-width: 280px;
  }
  
  .step-indicator {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

/* ULTRA KLEIN MOBIEL - 320px */
@media (max-width: 320px) {
  .container {
    padding: 0 0.5rem;
  }
  
  .hero-container,
  .shows-container,
  .proof-container,
  .social-follow-container {
    padding: 0 0.5rem;
  }
  
  .section-header {
    margin-bottom: 1.5rem;
  }
  
  .btn,
  .show-btn,
  .tab-btn {
    font-size: 0.8rem;
    padding: 0.625rem 0.875rem;
  }
  
  .modal {
    width: 100%;
    height: 100%;
    border-radius: 0;
    max-height: 100vh;
  }
  
  .toast-container {
    top: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
  }
  
  .multi-step-form {
    max-width: 260px;
  }
}

/* ===================================
   UTILITY CLASSES - UITGEBREID
   =================================== */

/* SPACING UTILITIES */
.m-0 { margin: 0; }
.m-1 { margin: 0.5rem; }
.m-2 { margin: 1rem; }
.m-3 { margin: 1.5rem; }
.m-4 { margin: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }

/* DISPLAY UTILITIES */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* TEXT UTILITIES */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.fw-light { font-weight: 300; }
.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.fw-black { font-weight: 900; }

.fs-small { font-size: 0.875rem; }
.fs-normal { font-size: 1rem; }
.fs-large { font-size: 1.125rem; }
.fs-xl { font-size: 1.25rem; }
.fs-2xl { font-size: 1.5rem; }

/* COLOR UTILITIES */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-gold { color: var(--gold-warm); }
.text-gold-bright { color: var(--gold-bright); }
.text-bordeaux { color: var(--bordeaux-warm); }
.text-pink { color: var(--dusty-pink); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }

.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-gold { background: var(--gold-gradient); }
.bg-bordeaux { background: var(--bordeaux-gradient); }
.bg-party { background: var(--party-gradient); }
.bg-transparent { background-color: transparent; }

/* BORDER UTILITIES */
.border { border: 1px solid var(--border-color); }
.border-gold { border: 1px solid var(--gold-warm); }
.border-bordeaux { border: 1px solid var(--bordeaux-warm); }
.border-none { border: none; }

.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: 1rem; }
.rounded-xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 50%; }
.rounded-none { border-radius: 0; }

/* SHADOW UTILITIES */
.shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.shadow { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); }
.shadow-gold { box-shadow: var(--gold-shadow); }
.shadow-bordeaux { box-shadow: var(--bordeaux-shadow); }
.shadow-none { box-shadow: none; }

/* POSITION UTILITIES */
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

/* OVERFLOW UTILITIES */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-visible { overflow: visible; }

/* FLEX UTILITIES */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }

.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }
.align-stretch { align-items: stretch; }

.flex-1 { flex: 1; }
.flex-auto { flex: auto; }
.flex-none { flex: none; }

/* MOBILE SPECIFIC UTILITIES */
@media (max-width: 768px) {
  .mobile-hidden { display: none !important; }
  .mobile-visible { display: block !important; }
  .mobile-center { text-align: center !important; }
  .mobile-left { text-align: left !important; }
  .mobile-full-width { width: 100% !important; }
  .mobile-stack { flex-direction: column !important; }
  .mobile-no-gap { gap: 0 !important; }
  .mobile-small-gap { gap: 0.5rem !important; }
  .mobile-padding { padding: var(--mobile-padding) !important; }
  .mobile-margin { margin: var(--mobile-padding) 0 !important; }
  .mobile-text-sm { font-size: 0.875rem !important; }
  .mobile-rounded { border-radius: 0.75rem !important; }
}

/* ===================================
   EINDE MAIN-OPTIMIZED CSS
   =================================== */

/* 
====================================
FAUTE BENDT MAIN-OPTIMIZED CSS
Versie: 2025.1 - ZONDER DUPLICATIE + MOBIEL GEOPTIMALISEERD
Auteur: Penn (Copywriter AI)
Datum: Augustus 2025
Voor: Joeri De Decker - Faute Bendt
====================================

Core layout, componenten, forms & buttons
10-jaar jubileum branding
Volledig mobiel geoptimaliseerd

ALLE CRITICAL-INLINE SECTIES VERWIJDERD:
❌ Hero sectie - Nu alleen in critical-inline.css
❌ Band Members sectie - Nu alleen in critical-inline.css
❌ Shows sectie - Nu alleen in critical-inline.css
❌ Testimonials sectie - Nu alleen in critical-inline.css
❌ Social Follow sectie - Nu alleen in critical-inline.css
❌ Contact sectie - Nu alleen in critical-inline.css
❌ USP sectie - Nu alleen in critical-inline.css
❌ Forms & Buttons basis - Nu alleen in critical-inline.css

TOEGEVOEGD IN MAIN-OPTIMIZED:
✅ Uitgebreide loading animations
✅ Advanced foto bescherming
✅ Uitgebreide grid layouts & components
✅ Advanced animations & effects
✅ Social proof & testimonials extras
✅ Advanced form components (multi-step, validation)
✅ Modal & overlay components
✅ Toast notifications
✅ Uitgebreide accessibility features
✅ Performance optimalisaties
✅ Browser compatibility
✅ Utility classes
✅ Mobile-specific fixes

Onderdeel van 5-file CSS architectuur:
1. critical-inline.css ✅ (alle secties hersteld)
2. header-footer.css ✅  
3. main-optimized.css ✅ (dit bestand - geen duplicatie)
4. non-critical.css ✅
5. pages-branded.css ✅

3237 regels - Geen duplicatie met critical-inline.css
Alle advanced features en mobiele optimalisaties behouden

"We will give there a lap on!!" 🎪
*/

