*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Cinzel', serif;
}

body{
background:#0a0a0a;
color:white;
}

/* MEDIEVAL HEADINGS */

h1,h2,h3{
font-family:'UnifrakturCook', cursive;
letter-spacing:3px;
}


/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 10%;
background:#000;
border-bottom:3px solid #8b0000;
}

.logo h1{
color:#e63946;
text-shadow:0 0 20px red;
}

.logo p{
color:#aaa;
font-size:12px;
}

nav a{
margin-left:25px;
color:white;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:#e63946;
}


/* LOGO */

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo-text{
display:flex;
flex-direction:column;
}

.site-logo{
width:70px;
height:70px;
object-fit:contain;
border-radius:6px;
}


/* HERO */

.hero{
height:80vh;
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:60px;
margin-bottom:20px;
}

.hero p{
color:#bbb;
margin-bottom:25px;
}

.btn{
background:#e63946;
padding:14px 30px;
color:white;
text-decoration:none;
border-radius:4px;
}


/* ARTISTS */

.artists{
padding:80px 10%;
background:#111;
text-align:center;
}

.artist-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:40px;
}


/* CARD */

.card{
height:420px;
perspective:1000px;
cursor:pointer;
}

.card-inner{
position:relative;
width:100%;
height:100%;
transition:transform .6s;
transform-style:preserve-3d;
}

.card.flipped .card-inner{
transform:rotateY(180deg);
}

.card-front,
.card-back{
position:absolute;
width:100%;
height:100%;
backface-visibility:hidden;
background:#1a1a1a;
border-radius:10px;
padding:30px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
box-shadow:0 0 20px rgba(0,0,0,.7);
}

.card-back{
transform:rotateY(180deg);
background:#140000;
}

.card img{
width:160px;
height:160px;
border-radius:50%;
border:4px solid #e63946;
object-fit:cover;
margin-bottom:20px;
}


/* SOCIAL ICONS */

.artist-socials{
display:flex;
gap:12px;
margin-top:12px;
}

.artist-socials a{
color:#e63946;
font-size:20px;
}

.artist-socials a:hover{
color:white;
transform:scale(1.2);
text-shadow:0 0 10px red;
}


/* HIRING CARDS */

.hiring{
border:2px dashed #e63946;
}

.hire-front{
background:#111;
}


/* HOURS */

.hours{
padding:120px 10%;
text-align:center;
background:#050505;
}

.hours-card{
max-width:500px;
margin:auto;
padding:40px;
background:#111;
border-radius:12px;
border:2px solid #e63946;
box-shadow:0 0 20px red;
}

.hours-row{
display:flex;
justify-content:space-between;
padding:14px 0;
border-bottom:1px solid #333;
}


/* CONTACT */

.contact{
padding:100px 10%;
background:#111;
text-align:center;
}

.tattoo-form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:18px;
}

.tattoo-form input,
.tattoo-form textarea,
.tattoo-form select{
padding:14px;
background:#000;
border:1px solid #333;
color:white;
border-radius:4px;
}

.tattoo-form button{
background:#e63946;
border:none;
padding:14px;
color:white;
font-weight:bold;
border-radius:4px;
cursor:pointer;
}


/* FOOTER */

footer{
text-align:center;
padding:20px;
background:black;
color:#777;
}

/* FLOATING SPIN WHEEL BUTTON */

.spin-wheel-button{

position:fixed;

right:30px;
bottom:30px;

background:#e63946;
color:white;

padding:16px 22px;

font-weight:bold;

border-radius:40px;

text-decoration:none;

box-shadow:
0 0 20px rgba(230,57,70,.8),
0 0 40px rgba(230,57,70,.6);

z-index:999;

transition:all .3s ease;

}

/* HOVER EFFECT */

.spin-wheel-button:hover{

transform:scale(1.1);

box-shadow:
0 0 25px red,
0 0 60px red;

}

/* PULSE ANIMATION */

@keyframes spinPulse{

0%{
box-shadow:0 0 10px rgba(230,57,70,.5);
}

50%{
box-shadow:0 0 35px rgba(230,57,70,1);
}

100%{
box-shadow:0 0 10px rgba(230,57,70,.5);
}

}

.spin-wheel-button{

animation:spinPulse 2.5s infinite;

}

/* FLOATING SPIN WHEEL BUTTON */

.spin-wheel-button{

position:fixed;

right:30px;
bottom:30px;

background:#e63946;
color:white;

padding:16px 22px;

font-weight:bold;

border-radius:40px;

text-decoration:none;

box-shadow:
0 0 20px rgba(230,57,70,.8),
0 0 40px rgba(230,57,70,.6);

z-index:999;

transition:all .3s ease;

}

/* HOVER EFFECT */

.spin-wheel-button:hover{

transform:scale(1.1);

box-shadow:
0 0 25px red,
0 0 60px red;

}

/* PULSE ANIMATION */

@keyframes spinPulse{

0%{
box-shadow:0 0 10px rgba(230,57,70,.5);
}

50%{
box-shadow:0 0 35px rgba(230,57,70,1);
}

100%{
box-shadow:0 0 10px rgba(230,57,70,.5);
}

}

.spin-wheel-button{

animation:spinPulse 2.5s infinite;

}

/* SPECIAL EVENTS BANNER */

.special-banner{

width:100%;

background:#8b0000;

color:white;

text-align:center;

padding:10px;

font-weight:bold;

letter-spacing:1px;

border-bottom:2px solid #e63946;

box-shadow:0 0 15px rgba(230,57,70,.6);

font-size:14px;

}

/* SHOP SOCIAL LINKS */

.shop-socials{
margin-top:30px;
display:flex;
flex-direction:column;
align-items:center;
gap:12px;
}

.follow-text{
color:#aaa;
font-size:14px;
letter-spacing:1px;
}

.shop-socials a{
display:flex;
align-items:center;
gap:10px;

color:white;
text-decoration:none;

background:#1a1a1a;
padding:10px 20px;

border-radius:6px;

border:1px solid #333;

transition:all .3s;
}

.shop-socials a i{
color:#e63946;
font-size:18px;
}

.shop-socials a:hover{
background:#e63946;
box-shadow:0 0 15px red;
transform:scale(1.05);
}

.shop-socials a:hover i{
color:white;
}

/* FAQ */

.faq{
padding:100px 10%;
background:#0a0a0a;
text-align:center;
}

.faq-hint{
color:#aaa;
margin-bottom:40px;
font-size:14px;
}

.faq-list{
max-width:800px;
margin:auto;
display:flex;
flex-direction:column;
gap:12px;
}

.faq-item{
background:#111;
border:1px solid #333;
border-radius:6px;
overflow:hidden;
}

.faq-question{
padding:18px;
font-weight:bold;
cursor:pointer;
text-align:left;
}

.faq-answer{
padding:18px;
border-top:1px solid #222;
color:#bbb;
display:none;
}

.faq-item.active .faq-answer{
display:block;
}
