/* WPCraft.ai — Main Stylesheet */
/* Palette D: Slate + Terracotta */

:root {
    --wpcraft-stone-950: #1c1917;
    --wpcraft-stone-800: #292524;
    --wpcraft-stone-700: #44403c;
    --wpcraft-stone-600: #57534e;
    --wpcraft-stone-500: #78716c;
    --wpcraft-stone-400: #a8a29e;
    --wpcraft-stone-300: #d6d3d1;
    --wpcraft-stone-200: #e7e5e4;
    --wpcraft-stone-100: #f5f5f4;
    --wpcraft-cream: #faf9f7;
    --wpcraft-terra: #b45636;
    --wpcraft-terra-light: #dc7e5a;
    --wpcraft-terra-dark: #923f26;
    --wpcraft-terra-bg: rgba(180, 86, 54, 0.08);
    --wpcraft-white: #ffffff;
    --wpcraft-radius-sm: 8px;
    --wpcraft-radius-md: 12px;
    --wpcraft-radius-lg: 20px;
}

/* Base */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
.wp-site-header {
    background: rgba(250, 249, 247, 0.92) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--wpcraft-stone-200);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo mark */
.wpcraft-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--wpcraft-stone-950);
    border-radius: 8px;
    color: var(--wpcraft-terra-light);
    font-family: var(--wp--preset--font-family--outfit);
    font-weight: 800;
    font-size: 14px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Nav CTA button style */
.nav-cta,
.wp-block-navigation-item.nav-cta .wp-block-navigation-item__content {
    background: var(--wpcraft-stone-950) !important;
    color: var(--wpcraft-white) !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    transition: background 0.2s;
}
.nav-cta:hover,
.wp-block-navigation-item.nav-cta:hover .wp-block-navigation-item__content {
    background: var(--wpcraft-stone-800) !important;
}

/* ===== LABELS / TAGS ===== */
.wpcraft-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--wpcraft-terra-bg);
    color: var(--wpcraft-terra);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem !important;
}

.wpcraft-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--wpcraft-terra);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.wpcraft-section {
    padding: clamp(5rem, 8vw, 8rem) 0;
}

.wpcraft-section-dark {
    background-color: var(--wpcraft-stone-950);
    color: var(--wpcraft-stone-300);
}

.wpcraft-section-dark h1,
.wpcraft-section-dark h2,
.wpcraft-section-dark h3 {
    color: var(--wpcraft-white);
}

/* ===== CARDS ===== */
.wpcraft-card {
    background: var(--wpcraft-white);
    border: 1px solid var(--wpcraft-stone-200);
    border-radius: var(--wpcraft-radius-lg);
    padding: 2.25rem;
    transition: all 0.3s ease;
}

.wpcraft-card:hover {
    border-color: var(--wpcraft-stone-300);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.wpcraft-card-dark {
    background: var(--wpcraft-stone-950) !important;
    border-color: var(--wpcraft-stone-800) !important;
    color: var(--wpcraft-stone-300);
}

.wpcraft-card-dark h3 {
    color: var(--wpcraft-white) !important;
}

.wpcraft-card-accent {
    background: var(--wpcraft-terra) !important;
    border-color: var(--wpcraft-terra) !important;
    color: rgba(255, 255, 255, 0.85);
}

.wpcraft-card-accent h3 {
    color: var(--wpcraft-white) !important;
}

.wpcraft-card-accent .wpcraft-label {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.wpcraft-card-accent .wpcraft-label::before {
    background: white;
}

.wpcraft-card-dark .wpcraft-label {
    background: rgba(180, 86, 54, 0.2);
    color: var(--wpcraft-terra-light);
}

.wpcraft-card-dark .wpcraft-label::before {
    background: var(--wpcraft-terra-light);
}

/* ===== METRIC ===== */
.wpcraft-metric {
    font-family: var(--wp--preset--font-family--outfit);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ===== TERRACOTTA INLINE COLOR ===== */
.has-terra-color {
    color: var(--wpcraft-terra) !important;
}

.has-terra-light-color {
    color: var(--wpcraft-terra-light) !important;
}

/* ===== BUTTONS ===== */
.wp-block-button.is-style-outline .wp-block-button__link {
    border: 2px solid var(--wpcraft-stone-200);
    color: var(--wpcraft-stone-600);
    background: transparent;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    border-color: var(--wpcraft-stone-950);
    color: var(--wpcraft-stone-950);
    background: transparent;
}

/* ===== FEATURED BADGE ===== */
.wpcraft-badge-popular {
    background: var(--wpcraft-terra);
    color: white;
    padding: 4px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
}

/* ===== FOOTER ===== */
.wp-site-footer {
    border-top: 1px solid var(--wpcraft-stone-200);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--wpcraft-stone-100); }
::-webkit-scrollbar-thumb { background: var(--wpcraft-stone-400); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--wpcraft-stone-500); }

/* ===== RESPONSIVE ===== */
@media (max-width: 782px) {
    .wpcraft-card {
        padding: 1.5rem;
    }
}
