/* Fancier Boutiq — Brand Overrides
   Edit colors/fonts here or in hugo.toml params.
   This file overrides the Ananke theme defaults. */

:root {
  --fb-blush: #F5B7B1;
  --fb-blush-dark: #E88E85;
  --fb-charcoal: #2C2C2C;
  --fb-mauve: #6B5B5B;
  --fb-linen: #FAF0E6;
  --fb-white: #FFFFFF;
  --fb-warmblush: #F0E0D6;
  --fb-heading: 'Cormorant Garamond', Georgia, serif;
  --fb-body: 'Inter', sans-serif;
}

/* Base overrides */
body {
  font-family: var(--fb-body);
  color: var(--fb-charcoal);
  background: var(--fb-linen);
}

/* Ananke theme overrides */
.bg-primary { background-color: var(--fb-linen) !important; }
.bg-dark-60 { background-color: rgba(44, 44, 44, 0.6) !important; }
.nav a, .nav a:link { color: var(--fb-mauve) !important; }
.nav a:hover { color: var(--fb-charcoal) !important; }
header .f1 { font-family: var(--fb-heading) !important; color: var(--fb-charcoal) !important; }
.nested-links a { color: var(--fb-blush-dark); }
.nested-links a:hover { color: var(--fb-blush); }

/* Hero */
.fb-hero {
  padding: 100px 24px 80px;
  background: var(--fb-linen);
}
.fb-hero-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}
.fb-hero-title {
  font-family: var(--fb-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  color: var(--fb-charcoal);
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.fb-hero-sub {
  font-size: 18px;
  color: var(--fb-mauve);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.fb-divider {
  width: 64px;
  height: 1px;
  background: var(--fb-blush);
  margin: 0 auto;
}

/* Sections */
.fb-section {
  padding: 80px 24px;
}
.fb-bg-white {
  background: var(--fb-white);
}
.fb-container {
  max-width: 800px;
  margin: 0 auto;
}
.fb-center {
  text-align: center;
}
.fb-section-title {
  font-family: var(--fb-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: var(--fb-charcoal);
  margin: 0 0 24px;
}
.fb-body-text {
  font-size: 16px;
  color: var(--fb-mauve);
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.fb-btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--fb-blush);
  color: var(--fb-charcoal);
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 16px;
}
.fb-btn:hover {
  background: var(--fb-blush-dark);
}

/* Links */
.fb-link {
  color: var(--fb-blush-dark);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
}
.fb-link:hover {
  color: var(--fb-blush);
}

/* Blog post cards */
.fb-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
  text-align: left;
}
.fb-post-card {
  display: block;
  padding: 20px;
  background: var(--fb-linen);
  border: 1px solid var(--fb-warmblush);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.fb-post-card:hover {
  border-color: var(--fb-blush);
}
.fb-post-card-full {
  padding: 24px 0;
  border-bottom: 1px solid var(--fb-warmblush);
  text-align: left;
}
.fb-post-title {
  font-family: var(--fb-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--fb-charcoal);
  margin: 0 0 8px;
}
.fb-post-desc {
  font-size: 14px;
  color: var(--fb-mauve);
  margin: 0 0 8px;
  line-height: 1.5;
}
.fb-post-date {
  font-size: 12px;
  color: var(--fb-warmblush);
}
.fb-post-link {
  color: var(--fb-charcoal);
  text-decoration: none;
}
.fb-post-link:hover {
  color: var(--fb-blush-dark);
}

/* Article */
.fb-article {
  text-align: left;
}
.fb-article-meta {
  font-size: 14px;
  color: var(--fb-mauve);
  margin-bottom: 32px;
}
.fb-article-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fb-charcoal);
}
.fb-article-body p {
  margin: 0 0 20px;
}
.fb-article-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--fb-warmblush);
}

/* Social links */
.fb-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.fb-social-link {
  font-size: 14px;
  color: var(--fb-mauve);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--fb-warmblush);
  border-radius: 6px;
  transition: all 0.2s;
}
.fb-social-link:hover {
  border-color: var(--fb-blush);
  color: var(--fb-blush-dark);
}

/* Footer overrides */
footer {
  background: var(--fb-linen) !important;
  border-top: 1px solid var(--fb-warmblush);
}
footer a { color: var(--fb-mauve) !important; }
footer a:hover { color: var(--fb-blush-dark) !important; }

/* Nav */
.fb-body { margin: 0; }
.fb-nav {
    padding: 16px 24px;
    background: var(--fb-linen);
    border-bottom: 1px solid var(--fb-warmblush);
}
.fb-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fb-nav-logo { height: 32px; }
.fb-nav-links { display: flex; gap: 24px; }
.fb-nav-link {
    font-size: 14px;
    color: var(--fb-mauve);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}
.fb-nav-link:hover { color: var(--fb-charcoal); }

/* Footer */
.fb-footer {
    padding: 32px 24px;
    background: var(--fb-linen);
    border-top: 1px solid var(--fb-warmblush);
    text-align: center;
}
.fb-footer-inner { max-width: 1200px; margin: 0 auto; }
.fb-footer-brand {
    font-family: var(--fb-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--fb-charcoal);
    margin: 0 0 4px;
}
.fb-footer-copy {
    font-size: 13px;
    color: var(--fb-mauve);
    margin: 0;
}
