/* Legal Pages Stylesheet */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #374151;
  background-color: #ffffff;
  font-size: 16px;
}

/* Navigation */
.legal-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
}

.brand-subtitle {
  font-size: 12px;
  color: #6b7280;
  line-height: 1;
}

.back-link {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #7c3aed;
  text-decoration: underline;
}

/* Main Content */
.legal-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.legal-container {
  background: #ffffff;
}

/* Header */
.legal-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f3f4f6;
}

.legal-title {
  font-family: "Fraunces", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.1;
}

.legal-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.effective-date,
.last-updated {
  font-size: 14px;
  color: #6b7280;
}

/* Table of Contents */
.toc {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 50px;
}

.toc-title {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
}

.toc-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 8px;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list a {
  color: #8b5cf6;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.toc-list a:hover {
  color: #7c3aed;
  background: #ede9fe;
}

/* Content Sections */
.legal-content {
  font-size: 16px;
  line-height: 1.7;
}

.legal-section {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f3f4f6;
}

.legal-section:last-child {
  border-bottom: none;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
  padding-top: 20px;
  scroll-margin-top: 100px;
}

.subsection-title {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin: 30px 0 15px 0;
}

.legal-section p {
  margin-bottom: 16px;
  color: #374151;
}

.legal-list {
  margin: 16px 0 16px 20px;
  padding-left: 0;
}

.legal-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 0;
}

.legal-list li::marker {
  color: #8b5cf6;
}

/* Contact Information */
.contact-info {
  background: #f9fafb;
  border-left: 4px solid #8b5cf6;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Footer */
.legal-footer {
  margin-top: 60px;
  padding: 30px;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #fbbf24;
}

.legal-footer p {
  font-style: italic;
  color: #6b7280;
  margin-bottom: 0;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .legal-title {
    font-size: 2.5rem;
  }

  .legal-meta {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  .toc-list {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .subsection-title {
    font-size: 1.125rem;
  }

  .legal-main {
    padding: 20px 15px 60px;
  }

  .toc {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .legal-title {
    font-size: 2rem;
  }

  body {
    font-size: 15px;
  }

  .section-title {
    font-size: 1.375rem;
  }

  .legal-list {
    margin-left: 16px;
  }

  .contact-info {
    padding: 15px;
  }

  .legal-footer {
    padding: 20px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .legal-nav {
    display: none;
  }

  .toc {
    break-inside: avoid;
  }

  .legal-section {
    break-inside: avoid;
  }

  .section-title {
    break-after: avoid;
  }

  body {
    font-size: 12pt;
    line-height: 1.6;
  }

  .legal-title {
    font-size: 24pt;
  }

  .section-title {
    font-size: 16pt;
  }
}
