body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: #1f1f1f;
    color: #fff;
  }
  
  .header {
    padding: 40px;
    background: linear-gradient(to bottom, #1c1c1c, #111);
   width: 100%;
   
  }
  
  .top-bar {
    color: #ccc;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  
  .header-image {
    width: 100%;
    height: 100vh; /* ili 100vh ako želiš pun ekran */
    position: relative;
  }
  
  .header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .left-image img {
    max-width: 500px;
    height: auto;
    filter: grayscale(100%) contrast(120%);
  }
  
  .right-text {
    text-align: center;
    max-width: 600px;
  }
  
  .autor-label {
    font-size: 18px;
    color: #f4e0a3;
    margin-bottom: 10px;
    letter-spacing: 2px;
  }
  
  .autor-name {
    font-family: 'UnifrakturCook', cursive;
    font-size: 48px;
    color: #e7c061;
    margin: 10px 0;
  }
  
  .subtitle {
    font-size: 18px;
    font-style: italic;
    color: #ddd;
    margin-top: 20px;
  }
  
  .email {
    font-size: 14px;
    color: #ccc;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
  }
  body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #111;
    color: #d4af37;
  }
  
  .blog-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-card {
    background-color: #1a1a1a;
    border: 1px solid #d4af37;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #d4af37;
    transition: transform 0.2s ease;
  }
  
  .blog-card:hover {
    transform: scale(1.03);
  }
  
  .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .blog-card h3 {
    padding: 15px;
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    text-align: center;
    border-top: 1px solid #d4af37;
  }
  
  @media (min-width: 768px) {
    .blog-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
body {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  background-color: #1a1a1a;
  color: #f0f0f0;
  line-height: 1.6;
}
.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}
h1 {
  color: #d4af37;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 0.5rem;
}
img {
  width: 100%;
  max-width: 100%;
  margin: 1rem 0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.navigation {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}
a {
  color: #d4af37;
  text-decoration: none;
}

  
  