*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --text:#e5e5e5;
  --muted:rgba(229,229,229,0.70);
  --stroke:rgba(255,255,255,0.10);
}

body{
  min-height:100vh;
  font-family:"Georgia",serif;
  color:var(--text);
  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.88)),
    url("tlo.jpg");
  background-size:cover;
  background-position:center 20%;
}

/* ===== HEADER ===== */
.site-header{
  padding:50px 20px 20px;
  text-align:center;
}

.brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.logo{
  font-size:44px;
  letter-spacing:2px;
}

.tag{
  font-size:14px;
  opacity:0.7;
  letter-spacing:4px;
  text-transform:uppercase;
}

/* ===== WRAP ===== */
.wrap{
  max-width:900px;
  margin:0 auto;
  padding:20px;
}

/* ===== PROFILE ===== */
.profile-main{
  text-align:center;
  margin-top:50px;
}

.profile-main img{
  width:200px;
  height:200px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 10px 40px rgba(0,0,0,0.6);
  transition:0.3s;
}

.profile-main img:hover{
  transform:scale(1.04);
}

/* ===== NAV ===== */
.profile-nav{
  max-width:900px;
  margin:40px auto 0;
  padding:0 20px;
  border-bottom:1px solid rgba(255,255,255,0.06);
  padding-bottom:14px;
}

.profile-nav-inner{
  display:flex;
  justify-content:center;
  gap:30px;
}

.nav-item{
  font-size:14px;
  letter-spacing:1px;
  opacity:0.5;
  text-decoration:none;
  color:inherit;
  transition:0.2s;
}

.nav-item:hover{
  opacity:0.8;
}

.nav-item.active{
  opacity:1;
  border-bottom:1px solid var(--text);
  padding-bottom:6px;
}

.nav-item.disabled{
  opacity:0.25;
  pointer-events:none;
}

/* ===== POSTS LIST ===== */
.posts-list{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* LINK CAŁEGO POSTA */
.post-link{
  text-decoration:none;
  color:inherit;
}

/* POJEDYNCZY POST */
.post-item{
  padding:20px 22px;
  border:1px solid var(--stroke);
  border-radius:14px;
  background:rgba(255,255,255,0.02);
  transition:0.25s;
  backdrop-filter:blur(4px);
}

/* HOVER = ŻYCIE */
.post-item:hover{
  background:rgba(255,255,255,0.05);
  transform:translateY(-2px);
  border-color:rgba(255,255,255,0.20);
}

/* TYTUŁ */
.post-title{
  display:block;
  font-size:18px;
  line-height:1.5;
}

/* OPIS */
.post-desc{
  display:block;
  margin-top:6px;
  font-size:14px;
  color:var(--muted);
}

/* ===== FOOTER ===== */
.site-footer{
  padding:40px;
  text-align:center;
  opacity:0.7;
  font-size:14px;
}

/* ===== POST VIEW (dopasowanie do post-01.html) ===== */

.topic{
  max-width:720px;
  margin:20px auto 0;
  padding:0 20px;
}

.topic-card{
  background:rgba(255,255,255,0.02);
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:16px;
  text-align:center;
}

.topic-card h2{
  font-size:20px;
  font-weight:400;
}

.topic-card p{
  margin-top:6px;
  color:var(--muted);
  line-height:1.6;
}

/* PROFILE (POST) */
.profile{
  margin-top:20px;
}

.profile-card{
  display:flex;
  align-items:center;
  gap:16px;
  background:rgba(255,255,255,0.02);
  border:1px solid var(--stroke);
  border-radius:14px;
  padding:14px;
}

.profile-card img{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:10px;
}

.profile-line{
  color:var(--muted);
  line-height:1.6;
}

/* RESPONSES */
.responses{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.response-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:rgba(255,255,255,0.02);
  border:1px solid var(--stroke);
  border-radius:12px;
  padding:12px;
}

.response-avatar{
  width:48px;
  height:48px;
  border-radius:8px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  text-align:center;
}

.response-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:8px;
}

.no-avatar{
  background:rgba(255,255,255,0.04);
  border:1px solid var(--stroke);
  color:rgba(255,255,255,0.4);
  padding:4px;
}

.response-name{
  font-size:13px;
  opacity:0.6;
  display:block;
  margin-bottom:4px;
}

.section-title{
  text-align:center;
  font-size:18px;
  font-weight:400;
  margin:60px 0 24px;
  letter-spacing:2px;
  opacity:0.6;
  text-transform:uppercase;
}

/* ===== RWD (NIE RUSZAMY — jak chciałeś) ===== */
@media (max-width: 900px) {
  .hero__wrap { padding: 56px 0; }
  .hero__content {
    margin-left: 0;
    text-align: center;
    padding: 40px 24px;
  }
}

@media (max-width: 520px) {
  .hero__wrap { width: calc(100% - 26px); }
  .hero__content { padding: 34px 18px; border-radius: 16px; }
  .hero__kicker-text { letter-spacing: 4px; font-size: 14px; }
  .btn { width: 100%; justify-content: center; }
}