/* ================= BASE ================= */

body{
background:#0a0a0a;
color:white;
font-family:'Cinzel', serif;
line-height:1.6;
letter-spacing:.5px;
}

/* ================= HERO ================= */

.hero{
height:85vh;
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
text-align:center;
padding:0 20px;
}

.artist-hero{
position:relative;

background:
linear-gradient(rgba(0,0,0,.88),rgba(0,0,0,.96)),
url("../images/image3.jpeg");

background-size:cover;
background-position:center;
}

/* subtle ambient glow instead of harsh */
.hero-overlay{
position:absolute;
inset:0;
background:
radial-gradient(circle at center, rgba(230,57,70,0.08), transparent 70%);
}

.hero-content{
position:relative;
z-index:2;
max-width:800px;
}

.hero-content h2{
font-size:clamp(38px,6vw,64px);
margin-bottom:12px;

letter-spacing:2px;

text-shadow:
0 0 8px rgba(230,57,70,0.6),
0 0 20px rgba(230,57,70,0.25);
}

.hero-content p{
color:#aaa;
font-size:15px;
}

/* SOCIALS (HERO) */

.hero-socials{
margin-top:25px;
display:flex;
justify-content:center;
gap:22px;
}

.hero-socials a{
color:#e63946;
font-size:20px;
transition:.3s ease;
}

.hero-socials a:hover{
transform:translateY(-3px) scale(1.15);
color:white;
text-shadow:0 0 12px rgba(230,57,70,0.8);
}

/* ================= PROFILE ================= */

.artist-profile{
padding:110px 8%;
background:
linear-gradient(180deg,#0a0a0a 0%, #111 100%);
text-align:center;
}

/* CARD */

.profile-card{
max-width:950px;
margin:auto;
padding:55px;

background:
linear-gradient(145deg,#0f0f0f,#050505);

border:1px solid rgba(230,57,70,0.25);
border-radius:18px;

backdrop-filter: blur(6px);

box-shadow:
0 25px 60px rgba(0,0,0,0.9),
0 0 20px rgba(230,57,70,0.15);

transition:.35s ease;
}

.profile-card:hover{
transform:translateY(-8px);
box-shadow:
0 35px 80px rgba(0,0,0,1),
0 0 40px rgba(230,57,70,0.25);
}

/* TOP SECTION */

.profile-top{
display:flex;
flex-wrap:wrap;
align-items:center;
justify-content:center;
gap:60px;
margin-bottom:45px;
}

/* IMAGE */

.profile-img{
width:180px;
height:180px;
border-radius:50%;
object-fit:cover;

border:3px solid #e63946;

transition:.3s ease;

box-shadow:
0 0 20px rgba(230,57,70,0.6),
0 0 40px rgba(230,57,70,0.3);
}

.profile-img:hover{
transform:scale(1.05);
box-shadow:
0 0 35px rgba(230,57,70,0.9),
0 0 70px rgba(230,57,70,0.4);
}

/* INFO */

.profile-info{
text-align:left;
max-width:340px;
}

.profile-info h2{
margin-bottom:12px;
font-size:26px;

text-shadow:
0 0 8px rgba(230,57,70,0.5);
}

.role{
color:#e63946;
margin-bottom:10px;
font-weight:600;
letter-spacing:1px;
}

.experience{
color:#999;
margin-bottom:12px;
font-size:14px;
}

/* SOCIALS */

.profile-socials{
display:flex;
gap:16px;
margin-top:10px;
}

.profile-socials a{
color:#e63946;
font-size:18px;
transition:.3s;
}

.profile-socials a:hover{
transform:translateY(-2px) scale(1.15);
color:white;
text-shadow:0 0 10px rgba(230,57,70,0.8);
}

/* BIO */

.bio{
margin-top:35px;
color:#bbb;
max-width:720px;
margin-left:auto;
margin-right:auto;
line-height:1.8;
font-size:15px;
}

/* ================= BUTTON ================= */

.book-btn{
display:inline-block;
margin-top:20px;
padding:13px 28px;

background:linear-gradient(135deg,#e63946,#8b0000);
color:white;
text-decoration:none;
font-weight:600;
letter-spacing:1px;

border-radius:8px;

transition:.3s ease;

box-shadow:
0 0 18px rgba(230,57,70,0.5);
}

.book-btn:hover{
transform:translateY(-2px) scale(1.05);
box-shadow:
0 0 35px rgba(230,57,70,0.9);
}

/* ================= GALLERY ================= */

.gallery{
margin-top:110px;
text-align:center;
padding:0 8%;
}

.gallery h2{
margin-bottom:45px;
color:#e63946;
letter-spacing:1.5px;

text-shadow:
0 0 10px rgba(230,57,70,0.6);
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:28px;
}

/* IMAGE CARDS */

.gallery-grid a{
display:block;
overflow:hidden;
border-radius:14px;
position:relative;
}

.gallery-grid img{
width:100%;
height:260px;
object-fit:cover;

border-radius:14px;

transition:.4s ease;

box-shadow:
0 15px 30px rgba(0,0,0,0.9);
}

/* overlay effect (PRO TOUCH) */
.gallery-grid a::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(to top, rgba(0,0,0,0.6), transparent);
opacity:0;
transition:.3s;
}

.gallery-grid a:hover::after{
opacity:1;
}

.gallery-grid img:hover{
transform:scale(1.1);
filter:brightness(1.1);

box-shadow:
0 0 35px rgba(230,57,70,0.5);
}

/* ================= FOOTER BASE ================= */

.site-footer{
width:100%;
background:#000;
color:#aaa;

padding:60px 20px 30px;
text-align:center;

border-top:1px solid rgba(255,255,255,0.05);
}

/* ================= SOCIALS ================= */

.shop-socials{
margin-top:10px;
margin-bottom:40px;
}

.follow-text{
color:#e63946;
font-weight:600;
margin-bottom:15px;
letter-spacing:1px;
}

/* your box style (cleaned up) */
.shop-socials a{
display:flex;
align-items:center;
justify-content:center;
gap:10px;

background:#111;
border:1px solid #333;

padding:14px;
margin:10px auto;
width:230px;

border-radius:10px;

color:white;
text-decoration:none;
font-weight:bold;

transition:.3s ease;
}

.shop-socials a i{
color:#e63946;
}

/* hover upgrade */
.shop-socials a:hover{
border-color:#e63946;
transform:translateY(-3px) scale(1.02);

box-shadow:
0 0 15px rgba(230,57,70,0.5);
}

/* ================= INFO ================= */

.footer-info{
margin-bottom:30px;
}

.footer-info h3{
color:#e63946;
margin-bottom:15px;

text-shadow:0 0 10px rgba(230,57,70,0.4);
}

.footer-info p{
margin-bottom:6px;
font-size:14px;
color:#bbb;
}

/* ================= COPYRIGHT ================= */

.footer-copy{
font-size:13px;
color:#666;
margin-top:10px;
}

/* MOBILE */
@media(max-width:768px){

.footer-content{
flex-direction:column;
text-align:center;
align-items:center;
}

.shop-socials{
align-items:center;
}

}

/* ================= MOBILE ================= */

@media(max-width:768px){

.hero{
height:70vh;
}

.profile-top{
flex-direction:column;
text-align:center;
gap:30px;
}

.profile-info{
text-align:center;
}

.gallery{
padding:0 5%;
}

}