/* ===== Reset & basis ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --primary: #1da1f2;
  --text: #1f2933;
  --muted: #6b7280;
  --border: #e5e7eb;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ===== Layout ===== */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 1rem;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar h1 {
  font-size: 1.2rem;
}

.navbar a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* ===== Post card ===== */
.post {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ccc;
}

.username {
  font-weight: 600;
}

.time {
  font-size: 0.85rem;
  color: var(--muted);
}

.post-content {
  margin: 0.75rem 0;
  line-height: 1.5;
}

/* ===== Acties ===== */
.post-actions {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
}

.post-actions button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-actions button:hover {
  color: var(--primary);
}

/* ===== Profiel ===== */
.profile {
  text-align: center;
  padding: 2rem 1rem;
}

.profile .avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 0.5rem;
}

.profile h2 {
  margin-bottom: 0.25rem;
}

.profile p {
  color: var(--muted);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .container {
    padding: 0.5rem;
  }

  .post {
    border-radius: 0;
  }
}



/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;

 width: 100%;
  height: auto;
  clip-path: inset(30% 0 30% 0); /* top, right, bottom, left */


}



.textcenter{
text-align: center;    

}