/* =========================================================
   Individua – Root Stylesheet
   Phase 1: Foundation
   ========================================================= */

/* -------------------------
   Reset
   ------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  gap: 2rem;
}

.main-content {
  flex: 3;
}

.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* Main column grows naturally */
.main-content {
  flex: 3;
}

/* Right-side navigation box */
.right-nav {
  flex: 1;
  background-color: #08121f;
  padding: 1rem 1.25rem;
  border: 1px solid #0f1d30;
  border-radius: 4px;
  position: sticky;
  top: 2rem;
  max-height: fit-content;
}

/* Heading inside the box */
.right-nav h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #cdd7e3;
}

/* List styling */
.right-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-nav li {
  margin-bottom: 0.5rem;
}

/* Links styled to match your existing nav aesthetic */
.right-nav a {
  color: #9fb3c8;
  text-decoration: none;
}

.right-nav a:hover {
  text-decoration: underline;
}


ul{
  margin-left:30px;
}

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--background-dark);
  color: var(--text-offwhite);
  font-family: var(--font-sans);
  line-height: 1.6;
}

/* -------------------------
   Variables (from your data)
   ------------------------- */
:root {
  --background-dark: #08121f;

  --text-offwhite: #f2f0e9;
  --text-magnolia: #f6f1e4;

  --highlight-gold: #c8a96a;
  --highlight-rose: #d7c4b7;

  --neutral-soft: #b8b8b0;
  --neutral-faint: #8a8a84;

  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Verdana, Arial, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 20px;
  --space-5: 32px;
  --space-6: 50px;

  /* Layout */
  --max-width: 900px;
}

/* -------------------------
   Typography
   ------------------------- */
h1, h2, h3, h4 {
  color: var(--text-magnolia);
  font-family: var(--font-serif);
  line-height: 1.3;
  margin-bottom: var(--space-1);
}

h1 { font-size: 2.0rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: var(--space-2);
}

/* -------------------------
   Links
   ------------------------- */
a {
  color: var(--highlight-gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* -------------------------
   Layout Containers
   ------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4) var(--space-3);
}

/* -------------------------
   Header / Footer
   ------------------------- */
header, footer {
  padding: var(--space-4) 0;
}

nav a {
  margin-right: var(--space-3);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

/* -------------------------
   Minimal Grid Utilities
   ------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.divider {
  border-bottom: 1px solid var(--neutral-faint);
  margin: var(--space-5) 0;
}
