:root {

    --yellow:#FFD200;
    --black:#050505;
    --dark:#111;
    --white:#fff;
    --gray:#aaa;

}



* {

    margin:0;
    padding:0;
    box-sizing:border-box;

}



body {

    background:var(--black);

    color:var(--white);

    font-family:Arial, Helvetica, sans-serif;

}



/* FEJLÉC */

header {

    text-align:center;

    padding:35px 15px;

    border-bottom:3px solid var(--yellow);

    background:#000;

}



header h1 {

    color:var(--yellow);

    font-size:42px;

    letter-spacing:4px;

}



header h2 {

    margin-top:15px;

    color:white;

}






/* ALBUM BORÍTÓ OLDAL */


.album-cover-page {

    min-height:75vh;

    display:flex;

    justify-content:center;

    align-items:center;

}



.album-card {

    width:350px;

    background:#111;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 0 30px #000;

}



.album-cover {

    width:100%;

    height:300px;

    object-fit:cover;

}



.album-card h2 {

    padding:20px 10px 5px;

}



.album-card p {

    color:#aaa;

    line-height:1.7;

}



button {

    background:var(--yellow);

    color:#000;

    border:0;

    padding:14px 35px;

    border-radius:30px;

    margin:25px;

    font-weight:bold;

    cursor:pointer;

    font-size:16px;

}



button:hover {

    transform:scale(1.05);

}







/* GALÉRIA */


.gallery {

    width:95%;

    max-width:1400px;

    margin:40px auto;

    display:grid;

    grid-template-columns:

    repeat(auto-fill,minmax(220px,1fr));

    gap:15px;

}



.photo {

    aspect-ratio:4/3;

    overflow:hidden;

    border-radius:12px;

    cursor:pointer;

    background:#111;

}



.photo img {

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.3s;

}



.photo:hover img {

    transform:scale(1.08);

}



#loading {

    text-align:center;

    color:var(--yellow);

    padding:20px;

}



#loadMore {

    display:block;

    margin:20px auto 50px;

}








/* NAGY KÉP */


#viewer {

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.96);

    z-index:999;

    align-items:center;

    justify-content:center;

    flex-direction:column;

}



#bigImage {

    max-width:90%;

    max-height:80vh;

    object-fit:contain;

}



#close {

    position:absolute;

    top:20px;

    right:30px;

    background:none;

    color:white;

    font-size:45px;

}



#prev,
#next {

    position:absolute;

    top:50%;

    background:none;

    color:white;

    font-size:50px;

}



#prev {

    left:25px;

}



#next {

    right:25px;

}



#counter {

    color:var(--yellow);

    margin:15px;

}




/* FOOTER */


footer {

    text-align:center;

    padding:40px;

    border-top:1px solid #333;

}



footer a {

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:white;

    text-decoration:none;

    margin-top:15px;

}



footer img {

    width:30px;

}







/* MOBIL */


@media(max-width:700px){


header h1 {

    font-size:28px;

}


.gallery {

    grid-template-columns:repeat(2,1fr);

    gap:8px;

}


#prev,
#next {

    font-size:35px;

}



}
