/* ============================================================
   Simply Andreea — Global Styles
   ============================================================ */

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

:root {
  --off-white: #FFF5F7;
  --forest:    #3D1F2D;
  --rose:      #E8638C;
  --sand:      #F9D6E3;
  --muted:     #9A7080;
  --card-bg:   #FFFFFF;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--forest);
  font-size: 16px;
  line-height: 1.6;
}

/* ---- NAV ---- */
nav.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: var(--off-white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--sand);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

/* ---- FOOTER ---- */
footer.site-footer {
  background: var(--forest);
  color: #C8C5C0;
  padding: 3rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

footer.site-footer .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: white;
}

footer.site-footer nav a {
  color: #C8C5C0;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

footer.site-footer nav a:hover { color: var(--rose); }

/* ---- SHARED UTILITIES ---- */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.5rem;
  display: block;
}

.btn-primary {
  display: inline-block;
  background: var(--forest);
  color: #fff;
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--rose); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  padding: 0.75rem 1.8rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-outline:hover { background: var(--forest); color: white; }

/* ---- POST CARDS (shared) ---- */
.post-card {
  background: var(--card-bg);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s;
}

.post-card:hover { transform: translateY(-4px); }

.post-thumb-placeholder {
  width: 100%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-thumb-placeholder.tall  { aspect-ratio: 3/4; }
.post-thumb-placeholder.short { aspect-ratio: 4/3; }
.post-thumb-placeholder.wide  { aspect-ratio: 16/7; }

.post-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.post-cat {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.post-excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}

.post-meta {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ---- NEWSLETTER (shared) ---- */
.newsletter {
  padding: 7rem 5%;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.newsletter h2 em { font-style: italic; color: var(--rose); }

.newsletter p {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid var(--sand);
  border-right: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: white;
  color: var(--forest);
  outline: none;
}

.newsletter-form input:focus { border-color: var(--rose); }

.newsletter-form button {
  padding: 0.85rem 1.5rem;
  background: var(--rose);
  color: white;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--forest); }

/* ---- PAGE HERO BANNER (About / Blog) ---- */
.page-banner {
  background: var(--forest);
  color: white;
  padding: 5rem 5% 4rem;
  text-align: center;
}

.page-banner .section-label { color: var(--rose); margin-bottom: 1rem; }

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
}

.page-banner h1 em { font-style: italic; color: var(--rose); }

.page-banner p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  color: #C8C5C0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .nav-links { display: none; }
  footer.site-footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  footer.site-footer nav a:first-child { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .post-card { transition: none; }
}
