body{
margin:0;
font-family:Georgia, serif;
background:#f8f7f4;
color:#222;
}

.hero{
text-align:center;
padding:60px 20px;
background:white;
border-bottom:1px solid #ddd;
}

.logo{
    width:140px;
    height:auto;
    display:block;
    margin:0 auto 20px;
}

.hero h1{
font-size:52px;
margin:0;
font-weight:300;
letter-spacing:2px;
}

.subtitle{
margin-top:15px;
color:#777;
font-size:18px;
}

#search{
margin-top:30px;
padding:14px;
width:320px;
border:1px solid #ccc;
border-radius:10px;
font-size:16px;
}

.filters{
margin-top:20px;
}

.filter-btn{
padding:12px 22px;
margin:5px;
border:none;
background:#ddd;
cursor:pointer;
border-radius:8px;
}

.filter-btn.active{
background:black;
color:white;
}

.alphabet{
text-align:center;
padding:20px;
background:white;
border-bottom:1px solid #ddd;
}

.alphabet a{
padding:8px;
text-decoration:none;
color:#444;
font-weight:bold;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
padding:50px;
max-width:1600px;
margin:auto;
}

.card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.card h3{
    padding:20px;
    margin:0;
    font-size:18px;
    text-align:center;
    color:#1a1a1a;
}

.card a{
text-decoration:none;
color:black;
}

.artist-page{
max-width:1400px;
margin:auto;
padding:50px;
}

.artist-gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
gap:25px;
}

.artist-gallery img{
width:100%;
cursor:pointer;
transition:.3s;
}

.artist-gallery img:hover{
transform:scale(1.02);
}

.bio{
max-width:900px;
margin:50px auto;
font-size:18px;
line-height:1.8;
}

.lightbox{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.95);
z-index:9999;
}

.lightbox img{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
max-width:90%;
max-height:90%;
}
