/* Global Typography */
:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --accent-color: #a85751;
  /* Terra cotta / Warm Red */
}

body {
  font-family: var(--font-body);
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: var(--font-heading);
}

.navbar-brand img {
  max-height: 60px;
  width: auto;
  transition: transform 0.2s;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Navbar Polish */
.navbar-nav .nav-link {
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.navbar-nav .nav-link:hover {
  opacity: 0.8;
}

/* Card & Link Hover Effects */
a.text-dark:hover {
  color: var(--accent-color) !important;
  transition: color 0.2s ease;
}

.hover-underline:hover {
  text-decoration: underline !important;
  text-decoration-color: var(--accent-color) !important;
}

/* Button Polish */
.btn-dark {
  background-color: #333;
  border: none;
  transition: all 0.2s;
}

.btn-dark:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px);
}

/* Newsletter Section Polish */
.widget.bg-light {
  background-color: #f8f9fa !important;
  border: 1px solid #eee;
  transition: transform 0.2s;
}

.widget.bg-light:hover {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .05);
}

/* Article Specific */
.article-content {
  font-size: 1.15rem;
  /* Larger comfortable reading size */
  line-height: 1.8;
}

.article-content p {
  margin-bottom: 1.5rem;
}

/* Utility */
.letter-spacing-1 {
  letter-spacing: 1px;
}