/* ===== Vortix Kitchen Blog Styles (shared) ===== */
:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #c9a227;
    --accent-hover: #d4af37;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0f0f23;
    --border-color: #e5e5e5;
    --success: #2d7a4f;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

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

/* ===== Navbar ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(26,26,46,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #1a1a2e; font-weight: 700; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
}
.logo-text { font-size: 19px; font-weight: 700; color: #fff; letter-spacing: .3px; }
.logo-text span { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-menu a { color: rgba(255,255,255,0.82); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent); }
.nav-cta {
    background: var(--accent); color: #1a1a2e !important;
    padding: 9px 18px; border-radius: 8px; font-weight: 600;
    transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* ===== Blog Hero / Header ===== */
.blog-hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f0f23 100%);
    color: #fff; padding: 80px 24px 64px; text-align: center;
}
.blog-hero .badge {
    display: inline-block; padding: 6px 16px; border-radius: 20px;
    background: rgba(201,162,39,0.15); color: var(--accent);
    font-size: 13px; font-weight: 600; letter-spacing: .5px; margin-bottom: 18px;
    border: 1px solid rgba(201,162,39,0.3);
}
.blog-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.blog-hero p { color: rgba(255,255,255,0.72); font-size: 17px; max-width: 640px; margin: 0 auto; }

/* ===== Article Grid ===== */
.blog-wrap { max-width: 1140px; margin: 0 auto; padding: 56px 24px 40px; }
.article-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.article-card {
    background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    overflow: hidden; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.article-card .thumb { width: 100%; height: 180px; object-fit: cover; display: block; }
.card-cat {
    display: inline-block; margin: 18px 20px 0; padding: 4px 12px; border-radius: 14px;
    background: rgba(201,162,39,0.12); color: #9c7b1a; font-size: 12px; font-weight: 600; width: fit-content;
}
.article-card h3 { font-size: 19px; font-weight: 600; margin: 12px 20px 8px; color: var(--text-dark); line-height: 1.35; }
.article-card .excerpt { color: var(--text-light); font-size: 14px; margin: 0 20px 16px; flex: 1; }
.article-card .card-meta { margin: 0 20px 20px; font-size: 13px; color: var(--text-light); display: flex; gap: 14px; }
.article-card .read-more { color: var(--accent); font-weight: 600; font-size: 14px; margin: 0 20px 22px; }

/* ===== Article Page ===== */
.article-header { margin-top: 70px; background: linear-gradient(135deg, #1a1a2e, #0f0f23); color: #fff; padding: 70px 24px 54px; }
.article-header .wrap { max-width: 820px; margin: 0 auto; }
.article-header .cat {
    display: inline-block; padding: 5px 14px; border-radius: 16px;
    background: rgba(201,162,39,0.15); color: var(--accent);
    font-size: 12px; font-weight: 600; letter-spacing: .5px; margin-bottom: 16px;
    border: 1px solid rgba(201,162,39,0.3);
}
.article-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px; font-weight: 700; line-height: 1.25; margin-bottom: 18px;
}
.article-header .meta { color: rgba(255,255,255,0.65); font-size: 14px; display: flex; gap: 18px; flex-wrap: wrap; }
.article-cover { width: 100%; max-height: 420px; object-fit: cover; display: block; }

.article-body { max-width: 820px; margin: 0 auto; padding: 48px 24px 20px; }
.article-body h2 {
    font-size: 26px; font-weight: 700; color: var(--primary); margin: 38px 0 14px; line-height: 1.3;
}
.article-body h3 { font-size: 20px; font-weight: 600; color: var(--text-dark); margin: 26px 0 10px; }
.article-body p { color: var(--text-medium); font-size: 16.5px; margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; color: var(--text-medium); font-size: 16.5px; }
.article-body li { margin-bottom: 9px; }
.article-body strong { color: var(--text-dark); }
.article-body blockquote {
    border-left: 4px solid var(--accent); background: var(--bg-light);
    padding: 16px 22px; margin: 24px 0; border-radius: 0 10px 10px 0;
    color: var(--text-medium); font-style: italic;
}
.article-body table {
    width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px;
}
.article-body th, .article-body td { border: 1px solid var(--border-color); padding: 12px 14px; text-align: left; }
.article-body th { background: var(--bg-light); color: var(--primary); font-weight: 600; }
.article-body td { color: var(--text-medium); }

/* CTA box inside article */
.article-cta {
    max-width: 820px; margin: 30px auto; padding: 0 24px;
}
.cta-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: var(--radius-lg); padding: 32px; text-align: center; color: #fff;
}
.cta-box h3 { font-size: 22px; margin-bottom: 10px; color: #fff; }
.cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 20px; font-size: 15px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-wa, .btn-mail {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px;
    border-radius: 9px; font-weight: 600; font-size: 15px; transition: transform .2s, background .2s;
}
.btn-wa { background: var(--accent); color: #1a1a2e; }
.btn-wa:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-mail { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-mail:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* Related */
.related { max-width: 1140px; margin: 40px auto; padding: 0 24px 30px; }
.related h3.section-title { font-size: 24px; color: var(--primary); margin-bottom: 22px; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== Footer ===== */
.footer { background: var(--bg-dark); color: #fff; padding: 56px 24px 24px; margin-top: 30px; }
.footer-container { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand .logo-text { font-size: 20px; font-weight: 700; color: #fff; }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 14px 0; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: background .2s; }
.social-link:hover { background: rgba(201,162,39,0.25); }
.footer-column h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 28px; margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }

/* WhatsApp float */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .article-grid, .related-grid { grid-template-columns: 1fr 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: flex; }
    .blog-hero h1 { font-size: 30px; }
    .article-header h1 { font-size: 27px; }
    .article-grid, .related-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
}
