/* 
  Patrine.site - Unique Minimal Archive Style for Auma Flossy
  Completely different from previous: cleaner, more minimal, vertical rhythm, muted palette, smaller radii
*/

:root {
  --bg: #F8F6F1;
  --bg-alt: #F0EDE6;
  --text: #25231F;
  --text-light: #5C574F;
  --accent: #B87D4B;
  --accent-light: #D4A37A;
  --secondary: #4A6359;
  --border: #D9D3C8;
  --card: #FFFFFF;
  --shadow: 0 4px 12px -4px rgba(37, 35, 31, 0.08);
  --radius: 8px;
  --radius-sm: 4px;
  --max-content: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 16.5px;
}

/* Headings - more modern, slightly condensed */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.65rem, 3.8vw, 2.25rem);
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

p {
  margin-bottom: 1.25rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-light);
}

/* Header - clean minimal with bottom line */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo span {
  color: var(--accent);
  font-weight: 500;
}

nav ul {
  display: flex;
  gap: 1.85rem;
  list-style: none;
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* Hero - centered, minimal, with decorative line */
.hero {
  padding: 5.5rem 1.75rem 4.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.35rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 52ch;
  margin: 0 auto 2.25rem;
}

.hero-line {
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 0 auto;
}

/* Buttons - minimal rectangular with thin border */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn:hover {
  background: var(--accent);
  color: #F8F6F1;
  border-color: var(--accent);
}

.btn-secondary {
  border-color: var(--secondary);
  color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: #F8F6F1;
}

/* Section */
.section {
  padding: 4.5rem 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Archive / Notes list - vertical, numbered style for uniqueness */
.notes-archive {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.note-preview {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.65rem 1.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.note-preview:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.note-number {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 42px;
  padding-top: 2px;
}

.note-content {
  flex: 1;
}

.note-content h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.note-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.9rem;
}

.note-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Article page - clean prose */
.article-header {
  padding: 3.75rem 1.75rem 2.75rem;
  max-width: var(--max-content);
  margin: 0 auto;
  text-align: left;
}

.article-header .meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
}

.article-header h1 {
  margin-bottom: 1.25rem;
}

.article-body {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 2rem 1.75rem 5rem;
}

.article-body h2 {
  margin-top: 2.75rem;
  margin-bottom: 1.1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.article-body blockquote {
  margin: 2.25rem 0;
  padding: 1.75rem 2rem;
  background: var(--bg-alt);
  border-top: 3px solid var(--accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
}

.article-body ul {
  margin: 1.35rem 0 2rem 1.25rem;
}

/* Form - clean minimal */
.form-container {
  max-width: 580px;
  margin: 0 auto;
}

form {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--text-light);
}

input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer - minimal, two line */
footer {
  background: var(--bg-alt);
  padding: 3.5rem 1.75rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-address {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.35rem 2rem;
  margin-bottom: 1.75rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.82rem;
}

.footer-disclaimer {
  max-width: 560px;
  margin: 0 auto 1.25rem;
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.55;
}

.copyright {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* Thank you */
.thank-you {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.thank-you-content h1 {
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Legal pages */
.legal-page {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 3.5rem 1.75rem;
}

.legal-page h1 {
  margin-bottom: 1.75rem;
}

.legal-page h2 {
  margin-top: 2.25rem;
  margin-bottom: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 0.85rem;
  }
  
  nav ul {
    gap: 1.35rem;
  }
  
  .note-preview {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero {
    padding: 4rem 1.5rem 3.5rem;
  }
}