/* ==========================================================================
   Vanuatu Theme v2 — Custom CSS (Tailwind handles utilities)
   ========================================================================== */

/* ── GLOBAL BASE ── */
body {
    font-family: 'Public Sans', sans-serif;
    color: #3A3A3A;
}

/* ── NAVIGATION ── */
.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #3A3A3A;
    transition: color 0.2s;
    text-decoration: none;
    white-space: nowrap;
}
.nav-link:hover { color: #7A7A7A; }
.nav-link.active { color: #3A3A3A; font-weight: 500; }

.nav-social {
    color: #7A7A7A;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.nav-social:hover { color: #3A3A3A; }

/* ── POLAROID ── */
.polaroid {
    background: #fff;
    padding: 9px 9px 28px;
    box-shadow: 2px 6px 20px rgba(0,0,0,0.12);
}

/* ── ARCH-TOP IMAGES ── */
.arch-top {
    border-radius: 50% 50% 0 0 / 55% 55% 0 0;
    overflow: hidden;
}

/* ── CATEGORY PILLS (blog list) ── */
.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid #E4E0DA;
    border-radius: 9999px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: #7A7A7A;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}
.cat-pill:hover,
.cat-pill.active {
    background: #C05A4D;
    border-color: #C05A4D;
    color: white;
}
.cat-pill img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

/* ── DOT PATTERN ── */
.dot-pattern {
    background-image: radial-gradient(circle, #5D6B3C 1.5px, transparent 1.5px);
    background-size: 16px 16px;
}

/* ── ARTICLE BODY TYPOGRAPHY (single post) ── */
.article-body p {
    color: #7A7A7A;
    font-size: 0.9375rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #3A3A3A;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #3A3A3A;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.article-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}
.article-body ul li {
    position: relative;
    padding-left: 1.5rem;
    color: #7A7A7A;
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.article-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E16F29;
    font-weight: bold;
}

/* ── WP ADMIN BAR OFFSET ── */
.admin-bar nav[style*="position:fixed"] {
    top: 32px !important;
}
@media screen and (max-width: 782px) {
    .admin-bar nav[style*="position:fixed"] {
        top: 46px !important;
    }
}

/* ── ENTRY CONTENT WP DEFAULTS ── */
.entry-content a { color: #E16F29; }
.entry-content a:hover { text-decoration: underline; }
.entry-content img { max-width: 100%; height: auto; }

/* ── PAGINATION ── */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
    color: #3A3A3A;
    background: #fff;
    border: 1px solid #E4E0DA;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
    background: #E16F29;
    color: #fff;
    border-color: #E16F29;
}
