/* Content Pages - Extends styles.css */

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted-dark);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: #fff;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: var(--gold);
}

/* Page Header */
.page-header {
  background: var(--black);
  color: #fff;
  padding: 10rem 2rem 6rem;
  text-align: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-header .lead {
  font-size: 1.125rem;
  color: var(--muted-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Content Sections */
.content-section {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-section.wide {
  max-width: 1000px;
}

.content-section.dark {
  background: var(--black);
  color: #fff;
  max-width: none;
}

.content-section.dark .inner {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.content-section h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-light);
  margin-bottom: 1.5rem;
}

.content-section.dark p {
  color: var(--muted-dark);
}

.content-section ul,
.content-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-light);
  margin-bottom: 0.75rem;
}

.content-section.dark li {
  color: var(--muted-dark);
}

.content-section strong {
  color: var(--black);
  font-weight: 500;
}

.content-section.dark strong {
  color: #fff;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  padding: 2rem;
  border: 1px solid rgba(10, 10, 10, 0.1);
}

.dark .feature-card {
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.dark .feature-card h3 {
  color: var(--gold);
}

.feature-card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.dark .comparison-table th,
.dark .comparison-table td {
  border-color: rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-light);
}

.dark .comparison-table th {
  color: var(--muted-dark);
}

.comparison-table td {
  font-size: 0.9375rem;
  color: var(--muted-light);
}

.dark .comparison-table td {
  color: var(--muted-dark);
}

.comparison-table .check {
  color: var(--gold);
}

/* Quote Block */
.quote-block {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.quote-block p {
  font-style: italic;
  font-size: 1.125rem;
}

/* CTA Section */
.cta-section {
  background: var(--black);
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--muted-dark);
  margin-bottom: 2rem;
}

.cta-section .enter-btn {
  display: inline-block;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 2rem;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb a {
  color: var(--muted-dark);
  text-decoration: none;
  font-size: 0.8125rem;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: var(--muted-dark);
  font-size: 0.8125rem;
  margin: 0 0.5rem;
}

/* Code Block */
.code-block {
  background: var(--black);
  color: #fff;
  padding: 1.5rem;
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  overflow-x: auto;
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Integration List */
.integration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.integration-tag {
  padding: 0.5rem 1rem;
  background: rgba(10, 10, 10, 0.05);
  font-size: 0.875rem;
  color: var(--muted-light);
}

.dark .integration-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-dark);
}

/* Related Links */
.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.related-link {
  padding: 1.5rem;
  border: 1px solid rgba(10, 10, 10, 0.1);
  text-decoration: none;
  color: var(--black);
  transition: border-color 0.2s;
}

.dark .related-link {
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.related-link:hover {
  border-color: var(--gold);
}

.related-link h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.related-link p {
  font-size: 0.875rem;
  color: var(--muted-light);
  margin-bottom: 0;
}

.dark .related-link p {
  color: var(--muted-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .page-header {
    padding: 8rem 1.5rem 4rem;
  }

  .content-section {
    padding: 4rem 1.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
