/* Auxiliary Pages Styling */

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gold) 100%);
  padding: 24px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.page-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.page-nav a {
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.page-nav a:hover {
  color: var(--vermilion);
  background-color: rgba(230, 0, 18, 0.05);
}

.page-nav a.active {
  color: var(--indigo);
  background-color: rgba(45, 27, 105, 0.1);
  font-weight: 600;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--dark-indigo) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Page Main Content */
.page-main {
  min-height: 60vh;
}

.content-section {
  padding: 80px 0;
}

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

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

.content-block h2 {
  color: var(--indigo);
  margin-bottom: 24px;
  position: relative;
}

.content-block h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--vermilion) 100%);
  border-radius: 2px;
}

.content-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.placeholder-content {
  background-color: var(--soft-gray);
  border: 2px dashed var(--border-light);
  border-radius: 12px;
  padding: 64px 32px;
  text-align: center;
  margin: 48px 0;
}

.placeholder-content p {
  color: #666;
  font-style: italic;
  font-size: 1.1rem;
}

/* Page Footer */
.page-footer {
  background: linear-gradient(135deg, var(--dark-indigo) 0%, var(--indigo) 100%);
  color: white;
  padding: 48px 0 24px;
  margin-top: auto;
}

.page-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.page-footer .footer-section h4 {
  color: var(--gold);
  margin-bottom: 16px;
}

.page-footer .footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
  text-decoration: none;
}

.page-footer .footer-section a:hover {
  color: var(--gold);
}

.page-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* About Page Specific Styles */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.about-text h2 {
  text-align: left;
}

.about-text h2::after {
  left: 0;
  transform: none;
}

.about-image {
  width: 100%;
  height: 280px;
}

.svg-illustration {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--soft-gray) 0%, var(--border-light) 100%);
  border-radius: 12px;
  padding: 24px;
}

.svg-illustration svg {
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 200px;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
  .page-header .container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .page-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .page-hero {
    padding: 48px 0;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .content-section {
    padding: 48px 0;
  }
  
  .content-block {
    margin-bottom: 48px;
  }
  
  .placeholder-content {
    padding: 48px 24px;
    margin: 32px 0;
  }
  
  .page-footer .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .about-image,
  .svg-illustration {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .page-nav {
    gap: 12px;
  }
  
  .page-nav a {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .placeholder-content {
    padding: 32px 16px;
  }
}