@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
body {
  font-family: "Roboto Mono", monospace;
  max-width: 600px;
  margin: auto;
  padding: 2em;
  background-image: url('tlo.png.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 150vh;
}
input, textarea {
  width: 100%;
  margin-bottom: 1em;
}
.banner-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: auto;
  z-index: 1000;
}
.overlay {
  position: absolute;
  top: 0; height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 50px;
}
.content-box {
    background-color: rgba(255, 255, 255, 0.85);
    width: 85%;
    max-width: 1000px;
    margin: 100px auto 50px auto; /* odsunięcie od góry ze względu na navbar */
    padding: 60px 70px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    height: 70vh;
    overflow-y: auto;
}

.content-box a {
    color: #0044cc;
    text-decoration: none;
}

.content-box a:hover {
    text-decoration: underline;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

/* Logo po lewej */
.navbar-logo {
    flex: 1;
}

.logo-img {
    height: 50px;
}

/* Linki na środku */
.navbar-links {
    flex: 1.1;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    opacity: 0.8;
    transition: transform 0.1s ease, opacity 0.2s ease;
    cursor: pointer;
}

.navbar-links a:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Ikony po prawej */
.navbar-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.icon-img {
    height: 40px;
    width: 40px;
    opacity: 0.8;
    transition: transform 0.1s ease, opacity 0.2s ease;
    cursor: pointer;
}

.icon-img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.icon-img:active {
    transform: scale(1.3);
}
.post-card {
    background-color: rgba(255, 255, 255, 0.85); /* półprzezroczyste tło */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);   /* cień dla głębi */
    padding: 25px;
    margin: 40px auto;
    max-width: 800px;
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
    transform: scale(1.02);                     /* lekkie powiększenie przy najechaniu */
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);   /* mocniejszy cień */
}

.post-card h2 {
    margin: 0 0 10px;
    font-size: 28px;
    color: #222;
}

.post-card h2 a {
    text-decoration: none;
    color: #222;
}

.post-card h2 a:hover {
    color: #0055ff;
}

.post-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.post-preview {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: #0055ff;
    font-weight: bold;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}
.post-container {
    max-width: 1000px;
    margin: 100px auto 50px; /* odstęp od góry + centruje */
    background-color: rgba(255, 255, 255, 0.9);
    padding: 60px 70px;
    border-radius: 15px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.post-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
}

.post-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
}

.post-content {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
}

.post-content p {
    margin-bottom: 16px;
}
.ryj-png {
    height: 350px;
}