/* Page-Specific Layout */

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--color-bg-transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-text-bright);
  text-decoration: none;
}

.navbar-brand svg {
  color: var(--color-primary);
}

.navbar-brand:hover {
  color: var(--color-text-bright);
}

.navbar-brand:hover svg {
  color: var(--color-primary-hover);
}

.navbar-brand svg {
  width: 28px;
  height: 28px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-nav a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.navbar-nav a:hover {
  color: var(--color-text-bright);
}

.navbar-nav a.active {
  color: var(--color-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding-top: calc(64px + var(--space-2xl));
  padding-bottom: var(--space-xl);
  text-align: center;
}

/* Hero logo options */
.hero-logo {
  margin-bottom: var(--space-lg);
}

.hero-logo-img {
  height: 80px;
  width: auto;
}

.hero-logo-full {
  height: 120px;
  width: auto;
  max-width: 100%;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-text-bright) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero-logo-img {
    height: 60px;
  }

  .hero-logo-full {
    height: 80px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.125rem;
  }
}

/* Highlights Section - key value props without section title */
.highlights {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-2xl);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--border-radius);
  transition: background-color var(--transition-fast);
}

.highlight:hover {
  background-color: var(--color-bg-alt);
}

.highlight h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-bright);
}

.highlight p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .highlight {
    padding: var(--space-md);
  }
}

/* Demo Section */
.demo {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  background-color: var(--color-bg-alt);
}

.demo-window {
  /* Video is 2400px wide, constrain for layout. Adjust as needed. */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Install Section */
.quickstart {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.quickstart-content {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.quickstart h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.quickstart h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

/* Documentation Section */
.docs {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  background-color: var(--color-bg-alt);
}

.docs-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.docs h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.docs h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.docs h3:first-of-type {
  margin-top: 0;
}

.docs p {
  color: var(--color-text-muted);
}

.docs-table {
  margin-top: var(--space-md);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.docs-table .table th,
.docs-table .table td {
  padding: var(--space-md);
}

/* Imprint Page */
.imprint {
  padding-top: calc(64px + var(--space-2xl));
  padding-bottom: var(--space-2xl);
}

.imprint-content {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.imprint h1 {
  margin-bottom: var(--space-lg);
}

.imprint h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
}

.imprint h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.imprint p {
  color: var(--color-text-muted);
}

/* Footer */
.footer {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-credit {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-credit a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-credit a:hover {
  color: var(--color-primary);
}

.footer-heart {
  color: var(--color-primary);
}
