/* Styles specific to auxiliary pages */

.main-content {
  min-height: calc(100vh - 200px);
  padding: 2rem 0;
}

.page-header {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.content-section {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.content-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-light);
}

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

.empty-content {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.empty-content p {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1rem;
}

.empty-content p:last-child {
  margin-bottom: 0;
}

/* About page specific styles */
.content-section.centered {
  text-align: center;
}

.about-visual {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.about-illustration {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.about-image-placeholder {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}

.about-image {
  max-width: 500px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Header link styling for pages */
.header .brand-name {
  text-decoration: none;
  color: var(--text-primary);
}

.header .brand-name:hover {
  color: var(--primary-color);
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1.125rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .empty-content {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 2rem 0;
  }
  
  .page-header h1 {
    font-size: 1.75rem;
  }
  
  .content-section {
    padding: 0 0.5rem;
  }
}