  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.6;
  }

  header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
  }

  header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88)),
      url('hero.jpg') center/cover no-repeat;
    filter: grayscale(85%);
    z-index: 0;
  }

  .hero {
    position: relative;
    z-index: 1;
    max-width: 800px;
  }

  h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 1.1rem;
    color: #cfcfcf;
    margin-bottom: 1rem;
  }

  .quote {
    font-size: 1.4rem;
    margin: 1.5rem 0;
  }

  .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.9rem 1.6rem;
    background: #ffffff;
    color: #111111;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
  }

  .btn:hover {
    background: #dddddd;
  }

  section {
    max-width: 1100px;
    margin: auto;
    padding: 4rem 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
  }

  .albums {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .album {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 16px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* KLJUČNO */

    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .album:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }

  .album img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1rem;
  }

  .album h3 {
    margin: 0.0rem 0 0.3rem 0;
  }

  .album p {
    margin: 0;
    font-size: 0.95rem;
    color: #cccccc;
  }

  .album a {
    display: inline-block;
    margin-right: 0.7rem;
    margin-top: 0.6rem;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #666;
    font-size: 0.9rem;
  }

  .album a:hover {
    color: #bbbbbb;
  }

  footer {
    text-align: center;
    padding: 2rem;
    color: #aaaaaa;
    border-top: 1px solid #222;
    font-size: 0.9rem;
  }

  .follow-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .follow-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  /* črta samo pod tekstom */
  .follow-links a span {
    display: inline-block;
    border-bottom: 1px solid #555;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
  }

  .follow-links a:hover {
    color: #fff;
  }

  .follow-links a:hover span {
    border-color: #aaa;
  }

  /* pika */
  .follow-links a::after {
    content: "•";
    margin-left: 1rem;
    /* manj kot prej, lepše */
    color: #666;
  }

  .follow-links a:last-child::after {
    content: "";
  }

  .about-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
  }

  .about-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .about-images img:hover {
    transform: scale(1.03);
  }

  #lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  #lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
  }

  .album-links {
    margin-top: 0.8rem;
    display: flex;
    gap: 1.2rem;
  }

  .album-links a {
    color: #888;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
    /* pomembno */
    border: none;
    /* odstrani črto */
  }

  .album-links a:hover {
    color: #ffffff;
    transform: scale(1.2);
  }

  .follow-links a i {
    margin-right: 8px;
    opacity: 0.8;
  }