/*
Theme Name: Christlike Theme
Author: Christlike.id
Description: Custom lightweight WordPress theme for Christlike.id
Version: 1.0.0
Text Domain: christlike
*/

:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.78);
    --ink: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;

    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-900: #134e4a;

    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
    --shadow-glass: 0 12px 40px rgba(13, 148, 136, 0.14);

    --max-w: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, var(--teal-100) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.65;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    right: -10%;
    bottom: -20%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.16) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.75;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: min(var(--max-w), calc(100% - 48px));
    margin-inline: auto;
}

/* NAVIGATION */

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--teal-400), var(--teal-600));
    z-index: 9999;
}

.nav-wrapper {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    padding: 0 24px;
}

body.admin-bar .nav-wrapper {
    top: 56px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    background: var(--surface-glass);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--teal-900);
    white-space: nowrap;
}

.brand span {
    color: var(--teal-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* BUTTON */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--teal-600);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.26);
}

.btn-secondary {
    background: #ffffff;
    color: var(--ink);
    border-color: var(--border);
}

/* HERO */

.hero {
    min-height: 92vh;
    padding: 190px 0 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: var(--teal-50);
    border: 1px solid rgba(45, 212, 191, 0.25);
    color: var(--teal-600);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.045em;
    color: var(--ink);
}

h1 {
    max-width: 920px;
    margin: 0 auto 24px;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 1.06;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(120deg, var(--teal-600), var(--teal-400));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    max-width: 640px;
    margin: 0 auto 40px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* SECTION */

section {
    padding: 100px 0;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.kicker {
    margin-bottom: 12px;
    color: var(--teal-600);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.small-lead {
    font-size: 1rem;
}

/* BENTO */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 24px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.bento-icon {
    width: 56px;
    height: 56px;
    margin-bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--teal-50);
    font-size: 2rem;
}

.bento-item h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.bento-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--teal-900), var(--teal-600));
    border: none;
}

.bento-large h3,
.bento-large p {
    color: #ffffff;
}

.bento-large p {
    opacity: 0.84;
}

.bento-large .bento-icon {
    background: rgba(255, 255, 255, 0.12);
}

.bento-wide {
    grid-column: span 2;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
}

.tag {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--bg);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
}

.bento-large .tag {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* JOURNEY */

.journey-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.journey-container::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--teal-500);
    box-shadow: 0 0 0 8px var(--bg);
    color: var(--teal-600);
    font-size: 1.25rem;
    font-weight: 800;
}

.step h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.step p {
    color: var(--muted);
    font-size: 0.92rem;
}

/* SPLIT */

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.personal-lead {
    margin-bottom: 24px;
    font-size: 1rem;
}

.check-list {
    margin-bottom: 32px;
    color: var(--muted);
    line-height: 2;
}

.mock-form {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: var(--ink);
    color: #ffffff;
}

.mock-form h3 {
    margin-bottom: 24px;
    color: #ffffff;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 700;
}

.input-fake {
    padding: 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 0.92rem;
}

.form-demo-btn {
    width: 100%;
    background: #ffffff;
    color: var(--ink);
}

/* FOOTER */

.footer {
    padding: 80px 0 40px;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 16px;
}

.footer-desc {
    max-width: 360px;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-title {
    margin-bottom: 20px;
    color: var(--ink);
    font-weight: 800;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.875rem;
}

/* ANIMATION */

.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .journey-container::before {
        display: none;
    }

    .split-section {
        grid-template-columns: 1fr;
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 32px, var(--max-w));
    }

    .nav {
        gap: 16px;
        padding: 12px 16px;
    }

    .nav-links,
    .nav-actions .btn-secondary {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 70px;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    section {
        padding: 74px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 1;
        grid-row: auto;
    }

    .bento-item {
        min-height: 260px;
    }

    .journey-container {
        grid-template-columns: 1fr;
    }

    .split-section {
        padding: 28px;
        border-radius: 24px;
    }

    .mock-form {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
/* =========================
   BLOG / ARTICLE TEMPLATE
========================= */

.blog-main,
.article-main {
    background: var(--bg);
}

.blog-hero {
    padding: 180px 0 72px;
    text-align: center;
}

.blog-hero h1 {
    max-width: 880px;
}

.blog-section {
    padding: 40px 0 100px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--teal-50);
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-body {
    padding: 26px;
}

.article-card-meta,
.article-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--teal-600);
    font-size: 0.82rem;
    font-weight: 800;
}

.article-card h2,
.article-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.article-card p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 0.95rem;
}

.read-link {
    display: inline-flex;
    color: var(--teal-600);
    font-size: 0.95rem;
    font-weight: 800;
}

.read-link:hover {
    color: var(--teal-500);
}

.pagination-wrap {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--ink);
    font-weight: 800;
}

.pagination .page-numbers.current {
    background: var(--teal-600);
    color: #ffffff;
    border-color: var(--teal-600);
}

.empty-state {
    max-width: 640px;
    margin: 0 auto;
    padding: 56px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

/* SINGLE ARTICLE */

.article-container {
    width: min(860px, calc(100% - 48px));
    margin: 0 auto;
    padding: 180px 0 90px;
}

.article-header {
    text-align: center;
    margin-bottom: 48px;
}

.article-meta-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.article-category {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    background: var(--teal-50);
    color: var(--teal-600);
    border: 1px solid rgba(45, 212, 191, 0.25);
    font-size: 0.82rem;
    font-weight: 800;
}

.article-title {
    max-width: 880px;
    margin-bottom: 22px;
    font-size: clamp(2.7rem, 6vw, 5rem);
}

.article-excerpt {
    max-width: 720px;
    margin: 0 auto 24px;
    color: var(--muted);
    font-size: 1.18rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.article-thumbnail {
    overflow: hidden;
    margin-bottom: 52px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.article-thumbnail img {
    width: 100%;
    height: auto;
}

.article-content {
    color: #263244;
    font-size: 1.08rem;
    line-height: 1.85;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    margin: 56px 0 18px;
    font-size: clamp(1.8rem, 4vw, 2.35rem);
    line-height: 1.18;
}

.article-content h3 {
    margin: 42px 0 16px;
    font-size: 1.55rem;
}

.article-content ul,
.article-content ol {
    margin: 0 0 26px 24px;
    color: #263244;
}

.article-content ul {
    list-style: disc;
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    margin: 42px 0;
    padding: 28px 32px;
    border-left: 5px solid var(--teal-600);
    background: var(--surface);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 700;
}

.article-content a {
    color: var(--teal-600);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-weight: 800;
}

.article-tags a {
    display: inline-flex;
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--teal-600);
    font-size: 0.85rem;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.article-nav-item a {
    display: inline-flex;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--ink);
    font-weight: 800;
}

.related-section {
    padding: 80px 0 110px;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 150px 0 50px;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-container {
        width: min(100% - 32px, 860px);
        padding: 150px 0 72px;
    }

    .article-meta {
        flex-direction: column;
        gap: 4px;
    }

    .article-navigation {
        flex-direction: column;
    }

    .empty-state {
        padding: 36px 24px;
    }
}