body{
    font-family: system-ui, Arial;
    background:#f3f4f6;
    margin:0;
    padding:20px;
    color:#222;
}

/* NADPIS */
h1,h2{
    font-weight:700;
}

/* GRID */
.albums{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap:25px;
    margin-top:20px;
}

/* KARTA */
.album{
    display:block;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    color:#222;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
    transition:0.25s;
}

.album:hover{
    transform:translateY(-8px);
    box-shadow:0 14px 30px rgba(0,0,0,0.15);
}

/* OBRAZOK */
.album img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.album:hover img{
    transform:scale(1.08);
}

/* TEXT POD OBRAZKOM */
.album div{
    padding:14px;
    font-size:16px;
    font-weight:600;
    text-align:center;
    background:#fff;
}

/* GALÉRIA FOTIEK */
.gallery{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap:15px;
    margin-top:20px;
}

.gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:14px;
    transition:0.25s;
    display:block;
}

.gallery img:hover{
    transform:scale(1.05);
    filter:brightness(0.9);
}

/* SPÄŤ */
a{
    color:#2563eb;
}
.hero-gallery{
    background:#1f5f9c;
    color:white;
    padding:25px 30px;
    border-radius:18px;
    margin-bottom:35px;
    text-align:center;
	border-top:4px solid #1f5f9c;
}
.hero-gallery h1{
    margin:0;
    font-size:3rem;
    color:white;
    letter-spacing:1px;
}

.hero-gallery p{
    margin-top:10px;
   color:rgba(255,255,255,.85);
    font-size:1rem;
}
 .year-title{
    font-size:2rem;
    color:#1f5f9c;
    margin:50px 0 25px;
    padding-left:15px;
    border-left:6px solid #1f5f9c;
}
.album-info{
    padding:14px;
}

.album-title{
    font-size:1.05rem;
    font-weight:700;
    margin-bottom:8px;
}

.album-count{
    display:inline-block;
    padding:4px 10px;
    border-radius:20px;
    background:#eef4ff;
    color:#1f5f9c;
    font-size:0.85rem;
}
.back-link{
    display:inline-block;
    padding:8px 14px;
    border-radius:20px;
    text-decoration:none;
	 color:white;
}

.back-link:hover{
    text-decoration:underline;
}
.gallery img:hover{
    transform:scale(1.03);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}