/* Cosmic Sound – Shared Styles for Subpages */

/* Base layout & typography */
body {
  background: #0a0a0a;
  color: #e5e7eb; /* High contrast: 13.57:1 on #0a0a0a */
  font-family: 'Exo 2', system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

/* Enhanced keyboard focus indicators (WCAG 2.1 AA) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(0, 191, 255, 0.9);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Container */
.container {
  max-width: 1100px;
  margin-inline: auto;
}

/* Section divider */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,191,255,0.4), transparent);
  margin: 3rem 0;
}

/* Link styles */
a {
  color: #93c5fd;
}

.link {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.link:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0,191,255,0.6), 0 0 12px rgba(0,191,255,0.35);
}

.back-link {
  color: #93c5fd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.back-link::before {
  content: '\2190';
  opacity: 0.9;
}

.back-link:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(0,191,255,0.6);
}

/* Page header & footer for subpages */
.page-header {
  border-bottom: 1px solid rgba(0,191,255,0.2);
}

.page-footer {
  border-top: 1px solid rgba(0,191,255,0.2);
  margin-top: 1.25rem;
}

.page-header .container,
.page-footer .container {
  padding-block: 1.25rem;
}

/* Contact form fields */
label {
  display: block;
  margin-bottom: 0.5rem;
  color: #d1d5db;
}

.field {
  width: 100%;
  background: #0b0b0c;
  border: 1px solid rgba(0,191,255,0.25);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: #e5e7eb;
}

.field::placeholder {
  color: #9ca3af;
}

.btn {
  background: rgba(0,191,255,0.18);
  border: 1px solid rgba(0,191,255,0.35);
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  color: #eaf6ff;
  transition: background 0.2s ease;
}

.btn:hover {
  background: rgba(0,191,255,0.28);
}

/* Prose content (centered for legal pages) */
.prose,
.prose h1,
.prose h2,
.prose h3,
.prose p,
.prose ul,
.prose ol,
.prose li {
  text-align: center;
}

.prose h2,
.prose h3 {
  color: #fff;
}

.prose ul,
.prose ol {
  list-style-position: inside;
  padding-left: 0;
}

/* Utility */
.mail-link {
  display: inline-block;
  margin-left: 0.5rem;
}

@media (min-width: 768px) {
  .mail-link {
    margin-left: 0.75rem;
  }
}

