/* =============================================
   BeHer — Shared Styles
   Accent colour: --coral: #8B5A6B
   ============================================= */

:root {
  --coral: #8B5A6B;
  --bg: #1a0f1e;
  --text: #f5efe6;
  --muted: #6B7280;
  --border: #E5E7EB;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Typography ─────────────────────────────── */

h1, h2, h3 {
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.6;
}

a {
  color: var(--coral);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Navigation ─────────────────────────────── */

nav {
  padding: 28px 48px;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-logo-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ── Footer ─────────────────────────────────── */

footer {
  margin-top: auto;
  padding: 40px 24px;
  text-align: center;
  border-top: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 14px;
  color: #f5efe6;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-sep {
  color: #f5efe6;
  font-size: 18px;
  user-select: none;
}

.footer-copy {
  font-size: 13px;
  color: #f5efe6;
}

/* ── Inner page shared ───────────────────────── */

.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  flex: 1;
}

.page-content h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.page-date {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 48px;
}

.page-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.page-content p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content li {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.6;
}

/* ── Contact form ───────────────────────────── */

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: #2a1a2e;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s ease;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: #2a1a2e;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  cursor: pointer;
  transition: opacity 0.15s ease;
  align-self: flex-start;
}

.form-submit:hover {
  opacity: 0.88;
}

/* ── Responsive ─────────────────────────────── */

@media (max-width: 640px) {
  nav {
    padding: 20px 24px;
  }
}
