/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=Inter:wght@300;400&display=swap');

/* ---------------- Body & Page ---------------- */
body {
  background-color: #f4f1ea; /* solid beige */
  color: #2b2b2b;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

/* Container / Main Box */
main {
  max-width: 800px;
  margin: 4rem auto;
  padding: 3rem;
  background: #ffffff;
  border: 1px solid #e0d7cd;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

/* ---------------- Header & Navigation ---------------- */
header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ccc3b9;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #2b2b2b;
  margin: 0;
}

nav {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

nav a {
  color: #3a3a3a;
  margin: 0 0.8em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

nav a:hover {
  color: #b56a50;
  border-color: #b56a50;
}

/* ---------------- Hero Section ---------------- */
.hero-img {
  width: 100%;
  max-height: 280px; /* original size */
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2b2b2b;
  text-align: center;
  position: relative;
}

/* Hero heading flourish */
.hero h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background-color: #b56a50;
  margin: 0.5rem auto 0;
  border-radius: 1px;
}

.hero p {
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0.5rem auto;
  line-height: 1.6;
  color: #4a4a4a;
  text-align:center;
}

/* Personal music note */
.personal-note {
  font-size: 0.9rem;
  color: #8b5f4b;
  font-style: italic;
  margin-top: 2rem;
  text-align: center;
}

.personal-note a {
  color: #b56a50; /* warm accent */
  text-decoration: none;
  font-style: italic;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.personal-note a:hover {
  color: #8b5f4b;
  text-decoration: underline;
}

/* ---------------- Featured Highlights / Cards ---------------- */
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.card {
  background: rgba(255, 255, 255, 0.95);
  padding: 1.5rem;
  border: 1px solid #e0d7cd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  flex: 1 1 calc(33% - 1rem);
  min-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  position: relative;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card-img {
  width: 100%;
  height: 140px; /* original fixed size */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #2b2b2b;
}

.card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4a4a4a;
}

.card a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  color: #b56a50; /* warm accent */
  transition: color 0.3s ease;
}

.card a:hover {
  color: #8b5f4b; /* darker accent on hover */
  text-decoration: underline;
}

/* ---------------- Mood / Flourish ---------------- */
.mood {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #8b5f4b;
  font-size: 1.05rem;
  margin-top: 8rem; /* extra visible space before "still becoming" */
  margin-bottom: 4rem;
}

/* ---------------- Articles ---------------- */
article {
  margin-bottom: 3rem;
  border-bottom: 1px solid #e0d7cd;
  padding-bottom: 2rem;
}

.entry-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2b2b2b;
  margin-bottom: 0.3rem;
}

.entry-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #8b5f4b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

article p:first-of-type::first-letter {
  font-family: 'Playfair Display', serif;
  float: left;
  font-size: 2.8rem;
  line-height: 1;
  padding-right: 0.1em;
  padding-top: 0.1em;
  color: #b56a50;
}

/* ---------------- Footer ---------------- */
footer {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #6b645e;
  letter-spacing: 0.05em;
  border-top: 1px solid #e0d7cd;
  padding-top: 1rem;
}