/* ===================================
   ALGEMENE VOORWAARDEN PAGINA - FAUTE BENDT BRANDED
   =================================== */

.privacy-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg-primary);
  min-height: 100vh;
}

@media (max-width: 768px) {
  .privacy-page-container {
    padding: 1rem;
  }
}

/* HEADER SECTIE */
.privacy-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: var(--bordeaux-party-gradient);
  border-radius: 25px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .privacy-header {
    padding: 2rem 1.5rem;
    margin-bottom: 2.5rem;
    border-radius: 20px;
  }
}

.privacy-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 165, 165, 0.15) 0%, transparent 50%);
  animation: sparkleMove 8s ease-in-out infinite;
  pointer-events: none;
}

.privacy-header h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.privacy-intro {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 500;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* CONTENT LAYOUT */
.privacy-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .privacy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* TABLE OF CONTENTS */
.privacy-toc {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  position: sticky;
  top: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
  .privacy-toc {
    position: static;
    order: 2;
  }
}

@media (max-width: 768px) {
  .privacy-toc {
    padding: 1.5rem;
    border-radius: 16px;
  }
}

.privacy-toc h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-warm);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-toc li {
  margin-bottom: 0.75rem;
}

.privacy-toc a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.privacy-toc a:hover {
  background: var(--gold-warm);
  color: var(--white);
  border-left-color: var(--gold-bright);
  transform: translateX(5px);
}

/* MAIN CONTENT */
.privacy-main-content {
  background: var(--bg-primary);
}

@media (max-width: 1024px) {
  .privacy-main-content {
    order: 1;
  }
}

/* SECTIONS */
.privacy-section {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .privacy-section {
    padding: 1.5rem 1rem;
  }
}

.privacy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(218, 165, 32, 0.03),
    transparent
  );
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

.privacy-section:hover::before {
  left: 100%;
}

.privacy-section > * {
  position: relative;
  z-index: 2;
}

.privacy-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-warm);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .privacy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.privacy-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .privacy-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.privacy-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-section li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.privacy-section li::before {
  content: '🎵';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--gold-warm);
}

@media (max-width: 768px) {
  .privacy-section li {
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.75rem;
  }
}

.privacy-section a {
  color: var(--gold-warm);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.privacy-section a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* CONTACT DETAILS SECTIE */
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .contact-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contact-info,
.company-info {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .contact-info,
  .company-info {
    padding: 1.5rem;
  }
}

.contact-info h3,
.company-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  padding-left: 0;
  margin-bottom: 0.75rem;
}

.contact-info li::before {
  display: none;
}

.company-info p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* FOOTER */
.privacy-footer {
  background: var(--bordeaux-gradient);
  color: var(--white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .privacy-footer {
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 2rem;
  }
}

.privacy-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.privacy-footer p {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.privacy-footer p:last-child {
  margin-bottom: 0;
  font-style: italic;
  opacity: 0.9;
}

/* SMOOTH SCROLLING VOOR ANCHOR LINKS */
html {
  scroll-behavior: smooth;
}

/* HIGHLIGHT EFFECT VOOR TARGETED SECTIONS */
.privacy-section:target {
  border-color: var(--gold-bright);
  box-shadow: 0 8px 30px rgba(218, 165, 32, 0.2);
  transform: scale(1.01);
  transition: all 0.3s ease;
}

/* RESPONSIVE VERBETERINGEN */
@media (max-width: 480px) {
  .privacy-page-container {
    padding: 0.75rem;
  }
  
  .privacy-header {
    padding: 1.5rem 1rem;
  }
  
  .privacy-toc {
    padding: 1rem;
  }
  
  .privacy-section {
    margin-bottom: 1.5rem;
  }
}

/* PRINT STYLES */
@media print {
  .privacy-toc {
    display: none;
  }
  
  .privacy-page-container {
    max-width: none;
    padding: 1rem;
  }
  
  .privacy-section {
    break-inside: avoid;
    margin-bottom: 1rem;
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .privacy-header {
    background: none !important;
    color: #000 !important;
  }
  
  .privacy-header h1 {
    color: #000 !important;
    background: none !important;
    -webkit-text-fill-color: #000 !important;
  }
}
