*{margin:0;padding:0;box-sizing:border-box}

body{
font-family:'Montserrat',sans-serif;
background:#0a0a0a;
color:#fff;
overflow:hidden
}

.site-header{
position:fixed;
top:0;
width:100%;
height:80px;
padding:0 60px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:10
}

.logo{
font-family:'Playfair Display',serif;
letter-spacing:4px;
font-size:22px
}

.header-btn{
background:transparent;
border:1px solid #c59d5f;
color:#c59d5f;
padding:10px 28px
}

.hero,.gallery-wrapper{
height:100vh;
overflow:hidden
}

.gallery-track{
display:flex;
height:100vh;
width:max-content
}

.img-card{
position:relative;
flex:0 0 20vw;
height:100vh;
overflow:hidden;
cursor:pointer
}

.img-card img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(60%) grayscale(30%);
transition:transform 1s
}

.img-card:hover img{
transform:scale(1.08)
}

.tattoo-info{
position:absolute;
bottom:0;
width:100%;
padding:18px;
display:flex;
justify-content:space-between;
background:linear-gradient(to top,rgba(0,0,0,.85),transparent)
}

.tattoo-info h5{
font-size:14px;
letter-spacing:1px
}

.tattoo-info span{
color:#c59d5f
}

.img-overlay{
position:absolute;
inset:0;
display:flex;
justify-content:center;
align-items:center;
background:rgba(0,0,0,.6);
opacity:0;
pointer-events:none
}

.img-overlay span{
letter-spacing:4px;
border-bottom:1px solid #c59d5f;
padding-bottom:4px
}

.img-card:hover .img-overlay{
opacity:1
}

.register-modal{
position:fixed;
inset:0;
background:rgba(0,0,0,.9);
display:none;
justify-content:center;
align-items:center;
z-index:50
}

.modal-box{
width:360px;
background:#111;
padding:40px;
text-align:center
}

.modal-box input{
width:100%;
padding:12px;
margin-bottom:12px;
background:#222;
border:none;
color:#fff
}

.submit-btn{
width:100%;
background:#c59d5f;
color:#000
}

@media (max-width:1200px){
.img-card{flex:0 0 25vw}
}

@media (max-width:992px){
.img-card{flex:0 0 33.33vw}
}

@media (max-width:768px){
body{overflow-y:auto}
.img-card{flex:0 0 50vw}
}

@media (max-width:576px){
.img-card{flex:0 0 100vw}
.site-header{padding:0 20px}
}
