/* ═══════════════════════════════════════════
   COLIBRIS AROUND THE GLOBE — Shared Styles
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --emerald: #1a4a3a;
  --gold: #c9a96e;
  --cream: #f7f3ed;
  --blush: #e8d5c0;
  --deep: #0f2a1f;
  --text: #2c1f0f;
  --muted: #8a7660;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(247,243,237,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--emerald);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.03em;
}
.nav-logo span { color: var(--gold); font-style: italic; }

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

.nav-links li { position: relative; }

.nav-links > li > a,
.nav-links > li > .nav-parent {
  display: block;
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.nav-links > li > a:hover,
.nav-links > li > .nav-parent:hover { color: var(--emerald); }

.nav-links > li > a.active { color: var(--emerald); }
.nav-links > li > a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1.1rem; right: 1.1rem;
  height: 2px;
  background: var(--gold);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(201,169,110,0.25);
  border-top: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(15,42,31,0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}

.nav-links li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--cream); color: var(--emerald); }
.nav-dropdown .dropdown-label {
  padding: 0.5rem 1.2rem 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ── UTILITIES ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--emerald);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.8rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--emerald);
  color: var(--cream);
  border: none;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--deep); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--emerald);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--emerald); color: var(--cream); transform: translateY(-2px); }

/* ── ARTICLE CARDS (shared) ── */
.article-card-light {
  background: var(--white);
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.article-card-light:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(26,74,58,0.1);
}

.card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.card-thumb-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.article-card-light:hover .card-thumb-inner { transform: scale(1.04); }

.card-body { padding: 1.5rem; }
.card-region {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--emerald);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.card-excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.card-meta {
  font-size: 0.74rem;
  color: rgba(138,118,96,0.7);
  display: flex;
  gap: 1rem;
}

/* ── FADE ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(247,243,237,0.45);
  padding: 2.8rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  text-decoration: none;
}
.footer-logo span { color: var(--gold); font-style: italic; }
footer p { font-size: 0.76rem; }

.footer-links { display: flex; gap: 1.8rem; }
.footer-links a {
  color: rgba(247,243,237,0.45);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .nav-links { display: none; }
}
