/* Auxiliary Pages Styles */

/* Main Content */
.main-content {
  padding-top: 100px;
  min-height: calc(100vh - 200px);
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 4rem 0;
  background: var(--dark-bg);
  margin-bottom: 2rem;
}

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

.page-subtitle {
  font-size: 1.1rem;
  color: #cccccc;
  margin: 0;
}

/* Content Blocks */
.content-block {
  padding: 3rem 0;
}

.content-block:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.block-content {
  max-width: 800px;
  margin: 0 auto;
}

.block-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.block-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 1.5rem;
}

/* Navigation */
.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Values Grid (About Page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  background: var(--dark-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
}

.value-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-item p {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Team Stats */
.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #cccccc;
  font-weight: 500;
}

/* Legal Content Placeholder */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.placeholder-notice {
  background: var(--dark-bg);
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
}

.placeholder-notice svg {
  margin-bottom: 2rem;
  opacity: 0.7;
}

.placeholder-notice h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.placeholder-notice p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: 1.5rem;
}

.placeholder-notice p:last-child {
  margin-bottom: 0;
}

.placeholder-notice a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.placeholder-notice a:hover {
  color: var(--secondary-color);
}

/* Legal Content Styles */
.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

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

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 1.5rem 0 0.75rem 0;
}

.legal-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: #cccccc;
  line-height: 1.6;
}

.legal-section a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.legal-section a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* About Page Enhancements */
.mission-content,
.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.mission-text,
.team-text {
  text-align: left;
}

.mission-image,
.team-image {
  display: flex;
  justify-content: center;
}

.mission-image .image-placeholder,
.team-image .image-placeholder {
  background: var(--dark-bg);
  border: 2px dashed var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: #cccccc;
  width: 100%;
  max-width: 300px;
}

/* Timeline Styles */
.history-timeline {
  position: relative;
  margin-top: 2rem;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-icon {
  background: var(--dark-bg);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .content-block {
    padding: 2rem 0;
  }
  
  .block-content h2 {
    font-size: 1.7rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .placeholder-notice {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .block-content p {
    font-size: 1rem;
  }
  
  .placeholder-notice {
    padding: 2rem 1rem;
  }
  
  .placeholder-notice h3 {
    font-size: 1.3rem;
  }
  
  .placeholder-notice p {
    font-size: 1rem;
  }
  
  .mission-content,
  .team-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .history-timeline::before {
    left: 15px;
  }
  
  .timeline-item {
    gap: 1rem;
  }
}