/* Assama • Marylou Evers Personal Journal */
/* Completely new design system: editorial minimal with generous whitespace */
/* Ice-blue + warm terracotta accents on warm cream background */

:root {
  --bg: #F7F4EF;
  --text: #25231F;
  --accent: #5E7C8A;
  --accent-warm: #B87D5E;
  --card: #FFFFFF;
  --border: #E8E2D9;
  --muted: #6B665E;
  --light: #F0EBE3;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: 3.1rem; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-top: 2.8rem; }
h3 { font-size: 1.45rem; }

p { margin-bottom: 1.35rem; }

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* New Header Style - cleaner, more editorial */
header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.logo {
  font-family: "Georgia", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.nav-links a:hover {
  color: var(--accent-warm);
}

.nav-links a.active {
  color: var(--accent);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-warm);
}

/* New Hero - split layout for uniqueness */
.hero {
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text .subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-visual {
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  border-radius: 8px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: "Georgia", serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Sections with different spacing */
.section {
  padding: 80px 0;
}

.section-narrow {
  padding: 60px 0;
}

/* New article grid - 3 equal columns with bigger gaps */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 2.5rem;
}

.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.article-card .meta {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  line-height: 1.3;
}

.article-card p {
  flex: 1;
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.8rem;
}

.article-card .read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-card .read-more:hover {
  color: var(--accent-warm);
}

/* Article pages - more spacious reading */
.article-header {
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--border);
}

.article-header h1 {
  max-width: 860px;
}

.article-meta {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-content {
  max-width: 780px;
  margin: 60px auto 0;
}

.article-content h2 {
  font-size: 1.75rem;
  margin-top: 3.2rem;
}

.pull-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--accent);
  border-left: 4px solid var(--accent-warm);
  padding-left: 2rem;
  margin: 2.8rem 0;
  max-width: 640px;
}

/* About page - new layout */
.about-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: start;
  margin-top: 40px;
}

.about-text {
  max-width: 720px;
}

.about-aside {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  position: sticky;
  top: 100px;
}

.about-aside h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.about-aside p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Contact form - spacious */
.contact-form {
  max-width: 640px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  transition: border 0.2s ease;
}

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

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

.btn {
  padding: 16px 42px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: #4A6575;
}

/* Completely new Footer style - light, editorial, spacious */
footer {
  background: #F7F4EF;
  border-top: 1px solid var(--border);
  padding: 70px 0 50px;
  margin-top: 90px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer-info {
  text-align: right;
}

.footer-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

.footer-info .address {
  margin-top: 1.2rem;
  font-size: 0.92rem;
}

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-legal a {
  color: var(--muted);
  margin-right: 1.8rem;
}

.footer-legal a:hover {
  color: var(--text);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-visual {
    height: 320px;
    font-size: 2.2rem;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    flex-direction: column;
    text-align: left;
  }
  
  .footer-info {
    text-align: left;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* Small decorative elements */
.decor {
  height: 3px;
  width: 48px;
  background: linear-gradient(to right, var(--accent), var(--accent-warm));
  margin: 2.2rem 0;
  border-radius: 2px;
}