/* ================= FONT IMPORT ================= */
@font-face {
  font-family: 'TattooShop';
  src: url('fonts/ModernPrestige.otf') format('opentype');
}

/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Cinzel', serif;
}

body{
background:#0a0a0a;
color:white;
}

/* HEADINGS (UPDATED FONT) */
h1,h2,h3{
font-family:'TattooShop', serif;
letter-spacing:3px;
text-shadow:0 0 8px rgba(230,57,70,0.6);
}

/* HEADER */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:rgba(0,0,0,0.85);
border-bottom:2px solid #8b0000;
position:sticky;
top:0;
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.site-logo{
width:100px;
height:100px;
border-radius:50%;
border:2px solid #e63946;
background:rgba(0,0,0,0.6);
padding:6px;
box-shadow:0 0 15px rgba(230,57,70,0.5);
}

/* NAV */
nav{
display:flex;
gap:20px;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
position:relative;
}

nav a.active{
color:#e63946;
text-shadow:0 0 10px red;
}

/* HERO */
.hero{
height:70vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

background:
linear-gradient(rgba(0,0,0,.8),rgba(0,0,0,.9)),
url("https://static.wixstatic.com/media/6d6e01_6371a8f7cd184598bfb14cac8b673163~mv2.jpg");

background-size:cover;
}

.hero h2{
font-size:50px;
margin-bottom:20px;
}

/* ARTISTS */
.artists{
padding:100px 10%;
background:#111;
text-align:center;
}

.artists h2{
color:#e63946;
margin-bottom:60px;
text-shadow:0 0 20px red;
}

/* GRID */
.artist-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
}

/* CARD */
.card{
height:420px;
perspective:1200px;
cursor:pointer;
}

.card-inner{
position:relative;
width:100%;
height:100%;
transition:transform .8s;
transform-style:preserve-3d;
}

.card.flipped .card-inner{
transform:rotateY(180deg);
}

.card-front,
.card-back{
position:absolute;
width:100%;
height:100%;
backface-visibility:hidden;

border-radius:14px;
padding:30px;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

background:linear-gradient(145deg,#111,#0a0a0a);
border:1px solid rgba(230,57,70,0.3);
box-shadow:0 0 20px rgba(230,57,70,0.2);
}

.card-back{
transform:rotateY(180deg);
background:linear-gradient(145deg,#140000,#0a0000);
}

.card-link{
text-decoration:none;
color:inherit;
display:block;
}

/* IMAGE */
.card img{
width:150px;
height:150px;
border-radius:50%;
border:3px solid #e63946;
object-fit:cover;
margin-bottom:20px;
}

/* TEXT */
.card h3{
margin-bottom:10px;
}

.card p{
color:#aaa;
}

/* SOCIALS */
.artist-socials{
display:flex;
gap:15px;
margin-top:15px;
}

.artist-socials a{
color:#e63946;
font-size:20px;
}

/* FOOTER */
footer{
text-align:center;
padding:20px;
background:black;
color:#777;
}

/* MOBILE */
@media(max-width:900px){
nav{
display:none;
flex-direction:column;
background:black;
position:absolute;
top:100%;
left:0;
width:100%;
}

nav.active{
display:flex;
}

.menu-toggle{
display:block;
cursor:pointer;
}
}