/* ============================================
   PRÁVNÍ DOKUMENTY STYLES (Obchodní podmínky, Ochrana osobních údajů)
   ============================================ */

/* Hlavní kontejner právních dokumentů */
.legal-document {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

/* Header právního dokumentu */
.legal-header {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.legal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15 5v20M5 15h20" stroke="rgba(255,255,255,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-pattern)"/></svg>');
}

.legal-header-content {
  position: relative;
  z-index: 1;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.legal-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-date {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Sekce právního dokumentu */
.legal-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
}

.legal-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.legal-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid #3b82f6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.legal-section h2::before {
  content: '';
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border: 2px solid #3b82f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e40af;
}

.legal-section:nth-child(1) h2::before { content: '1'; }
.legal-section:nth-child(2) h2::before { content: '2'; }
.legal-section:nth-child(3) h2::before { content: '3'; }
.legal-section:nth-child(4) h2::before { content: '4'; }
.legal-section:nth-child(5) h2::before { content: '5'; }
.legal-section:nth-child(6) h2::before { content: '6'; }
.legal-section:nth-child(7) h2::before { content: '7'; }
.legal-section:nth-child(8) h2::before { content: '8'; }
.legal-section:nth-child(9) h2::before { content: '9'; }
.legal-section:nth-child(10) h2::before { content: '10'; }

.legal-section h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #334155;
  margin: 2rem 0 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid #3b82f6;
  position: relative;
}

.legal-section p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

/* Seznamy v právních dokumentech */
.legal-section ul,
.legal-section ol {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.legal-section li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
  list-style: none;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  transform: translateY(-50%);
}

.legal-section ol {
  counter-reset: legal-counter;
}

.legal-section ol li {
  counter-increment: legal-counter;
}

.legal-section ol li::before {
  content: counter(legal-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Zvýrazněné kontaktní informace */
.contact-highlight {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid #3b82f6;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

.contact-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
}

.contact-highlight strong {
  color: #1e40af;
  font-weight: 700;
}

.contact-highlight p {
  margin-bottom: 0.75rem;
}

.contact-highlight p:last-child {
  margin-bottom: 0;
}

/* Důležité upozornění */
.legal-notice {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #f59e0b;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
}

.legal-notice::before {
  content: '⚠️';
  position: absolute;
  top: -8px;
  left: 1rem;
  background: #f59e0b;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.legal-notice p {
  color: #92400e;
  margin-bottom: 0;
  font-weight: 500;
}

/* Navigace v dokumentu */
.legal-nav {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 2rem;
  z-index: 10;
}

.legal-nav-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-nav-title svg {
  color: #3b82f6;
  width: 20px;
  height: 20px;
}

.legal-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-nav-item {
  margin-bottom: 0.5rem;
}

.legal-nav-link {
  color: #475569;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.legal-nav-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #1e40af;
  text-decoration: none;
  transform: translateX(4px);
}

.legal-nav-link.active {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
}

/* Responsive design */
@media (max-width: 768px) {
  .legal-document {
    padding: 1rem;
  }
  
  .legal-header {
    padding: 2rem 1.5rem;
  }
  
  .legal-title {
    font-size: 2rem;
  }
  
  .legal-subtitle {
    font-size: 1rem;
  }
  
  .legal-section {
    padding: 1.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .legal-section h3 {
    font-size: 1.25rem;
  }
  
  .legal-nav {
    position: static;
    margin-bottom: 2rem;
  }
}

/* Tisk styles */
@media print {
  .legal-nav {
    display: none;
  }
  
  .legal-section {
    box-shadow: none;
    border: 1px solid #ccc;
    page-break-inside: avoid;
  }
  
  .legal-header {
    background: #f5f5f5 !important;
    color: #333 !important;
  }
}