/* Wangu — Bright Clean Professional Theme */
:root{
  --bg:#f5f7fa;          /* light gray background */
  --panel:#ffffff;       /* white panels */
  --card:#ffffff;        
  --text:#000000;        /* BLACK TEXT (as requested) */
  --muted:#6b7280;       /* soft gray text */
  --accent:#4f46e5;      /* nice modern indigo */
  --accent-2:#06b6d4;    /* cyan highlight */
  --border:#e5e7eb;      /* light border */
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* NAVBAR */
.navbar{
  display:flex; 
  justify-content:space-between; 
  align-items:center;
  padding:12px 16px;
  background:#ffffff;
  border-bottom:1px solid var(--border);
  position:sticky; 
  top:0;
}

.nav-left{
  display:flex; 
  align-items:center; 
  gap:10px;
}

.logo{
  width:34px; 
  height:34px; 
  object-fit:contain;
}

.brand .name{
  font-weight:700;
}

.brand .motto{
  font-size:12px; 
  color:var(--muted);
}

.nav-right{
  display:flex; 
  gap:8px; 
  align-items:center;
}

/* LAYOUT */
.container{
  max-width:1100px; 
  margin:18px auto; 
  padding:0 14px;
}

.container.narrow{
  max-width:800px;
}

.page-title{
  margin:6px 0 14px 4px; 
  font-weight:600; 
  color:var(--muted);
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

/* CARD */
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
  transition:0.2s;
}

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

.card .title{
  font-weight:700; 
  margin-bottom:6px;
}

.card .meta{
  font-size:12px; 
  color:var(--muted); 
  margin-bottom:8px;
}

.excerpt{
  color:#111; 
  line-height:1.5;
}

/* ACTIONS */
.actions{
  display:flex; 
  gap:8px; 
  margin-top:10px; 
  flex-wrap:wrap;
}

/* BUTTONS */
.btn{
  border:1px solid var(--border);
  background:#f9fafb;
  color:#000;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
}

.btn:hover{
  background:#e5e7eb;
}

.btn.primary{
  background:var(--accent);
  color:#fff;
  border:none;
  font-weight:600;
}

.btn.primary:hover{
  background:#4338ca;
}

/* INPUTS */
textarea, input{
  width:100%;
  background:#ffffff;
  color:#000;
  border:1px solid var(--border);
  border-radius:10px;
  padding:10px;
  margin:6px 0 10px 0;
}

/* COMMENTS */
.comments{
  margin-top:14px;
}

.comment{
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px;
  margin-bottom:8px;
  background:#ffffff;
}

.comment .meta{
  font-size:12px; 
  color:var(--muted);
}

.comment-box{
  margin-top:10px;
}

/* RESPONSIVE */
@media (max-width:800px){
  .grid{
    grid-template-columns:1fr;
  }
}