/* Osnovno */
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fafafa;
  }
  
  .container {
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
  }
  
  /* Hero sekcija */
  .hero {
    background: url('img/hero.jpg') no-repeat center center/cover;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .hero .overlay {
    background: rgba(0,0,0,0.55);
    padding: 20px 30px;
    border-radius: 12px;
  }
  .hero h1 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.3;
  }
  
  /* Glavni tekst */
  .content {
    padding: 60px 0;
  }
  .content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #444;
  }
  
  /* Video card */
  .video-card {
    margin: 40px 0;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
  }
  .video-card video {
    width: 100%;
    max-width: 720px;
    border-radius: 10px;
  }
  
  /* Info box */
  .info-box {
    background: #fff8e6;
    border-left: 5px solid #f5b700;
    padding: 20px;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .info-box p {
    margin: 6px 0;
  }
  .info-box .note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
  }
  
  /* Footer */
  .footer {
    background: #222;
    color: #eee;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 1.6rem;
    }
    .content {
      padding: 40px 15px;
    }
  }
  