@import url("/assets/css/base/tokens.css");

/* Synced core variables with blog.css */
:root {
  --brand-dark: var(--surface-dark);
  --brand: var(--accent);
  --text: var(--text);
  --line: var(--line);
}

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

/* Hero (matching style base with blog list) */
.b-hero {
  position: relative;
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg) 100%);
  color: var(--ink, #eaf6ff);
  padding: 120px 0 80px;
  overflow: hidden;
  text-align: center;
}

.b-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--surface-dark);
  clip-path: polygon(0 65%, 100% 0, 100% 100%, 0% 100%);
}

.badge-cat {
  background: #f0efea;
  color: #7a5a15;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 10px;
}

.b-cover {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Siyah başlık ve tarih */
.rel-title,
.info-title,
.date-white {
  color: var(--surface) !important;
}

/* Blog içerik yazıları siyah */
.content,
.content p,
.content div,
.content span,
.content li {
  color: var(--surface) !important;
  opacity: 1 !important;
  line-height: 1.6;
  font-size: 17px;
}

.content h1,
.content h2,
.content h3,
.content h4 {
  color: var(--surface) !important;
  font-weight: 700;
}
.navbar .nav-menu li a {
  color: var(--text);
}

.container .btn {
  color: var(--text);
}
.container .btn:hover {
  background: var(--text);
  color: var(--surface);
}
