/* =========================
RESET
========================= */

*,
*::before,
*::after{
box-sizing:border-box;
}

body{
margin:0;
font-family:system-ui,-apple-system,Arial,sans-serif;
background:#111;
color:#eee;
line-height:1.6;
}

/* =========================
TYPOGRAPHY
========================= */

h1{font-size:32px;}
h2{font-size:26px;}
h3{font-size:20px;}

h1,h2,h3{
margin-top:0;
line-height:1.3;
}

p{
margin-bottom:1rem;
}

/* =========================
LAYOUT
========================= */

.container{
max-width:1100px;
margin:auto;
padding:0 20px;
}

main{
padding:50px 0;
}

/* =========================
LINKS
========================= */

a{
color:#ff4d4d;
text-decoration:none;
}

a:hover{
text-decoration:underline;
}

/* =========================
HEADER
========================= */

.site-header{
background:#000;
border-bottom:1px solid #222;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

/* =========================
LOGO
========================= */

.logo-area{
display:flex;
align-items:center;
gap:14px;
}

.custom-logo{
height:48px;
width:auto;
}

.site-branding{
display:flex;
flex-direction:column;
}

.site-title{
margin:0;
font-size:22px;
font-weight:600;
}

.site-title a{
color:white;
}

.site-tagline{
font-size:13px;
color:#aaa;
margin:0;
}

/* =========================
MENU
========================= */

.menu{
list-style:none;
display:flex;
gap:28px;
margin:0;
padding:0;
}

.menu li{
position:relative;
}

.menu a{
color:#ddd;
font-weight:500;
display:flex;
align-items:center;
gap:6px;
text-shadow:0 1px 2px rgba(0,0,0,.7);
}

.menu a:hover{
color:#ff4d4d;
}

/* submenu arrow */

.menu-item-has-children > a::after{
content:"▼";
font-size:11px;
opacity:.7;
transition:transform .2s ease;
}

.menu-item-has-children.open > a::after{
transform:rotate(180deg);
}

/* desktop dropdown */

.menu li ul{
display:none;
position:absolute;
background:#000;
border:1px solid #333;
padding:10px 0;
top:100%;
left:0;
min-width:170px;
box-shadow:0 4px 10px rgba(0,0,0,.6);
}

.menu li:hover > ul{
display:block;
}

.menu li ul a{
display:block;
padding:8px 14px;
}

/* =========================
CONTENT
========================= */

article{
margin-bottom:50px;
}

/* =========================
WIDGETS
========================= */

.widget{
background:#1a1a1a;
padding:20px;
margin-bottom:20px;
border-radius:4px;
}

.widget-title{
margin-bottom:10px;
}

/* =========================
BUTTONS
========================= */

button,
.wp-block-button__link{
background:#ff4d4d;
color:white;
border:none;
padding:10px 18px;
border-radius:4px;
}

button:hover,
.wp-block-button__link:hover{
background:#ff2c2c;
}

/* =========================
FOOTER
========================= */

.site-footer{
background:#000;
border-top:1px solid #222;
margin-top:60px;
}

.footer-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:40px 0;
}

.footer-col h3{
margin-bottom:12px;
font-size:18px;
}

.footer-col p{
color:#aaa;
}

.social-links{
list-style:none;
padding:0;
margin:0;
}

.social-links li{
margin-bottom:10px;
}

.social-links a{
display:flex;
align-items:center;
gap:10px;
color:#ddd;
font-weight:500;
}

.social-links a:hover{
color:#ff4d4d;
}

.social-links svg{
width:18px;
height:18px;
fill:#aaa;
transition:.2s;
}

.social-links a:hover svg{
fill:#ff4d4d;
}

.footer-bottom{
border-top:1px solid #333;
padding:20px 0;
text-align:center;
font-size:14px;
color:#888;
}

/* =========================
HAMBURGER MENU
========================= */

.menu-toggle{
display:none;
flex-direction:column;
gap:5px;
background:none;
border:none;
cursor:pointer;
}

.menu-toggle span{
width:26px;
height:2px;
background:white;
display:block;
transition:.3s;
}

.menu-toggle.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2){
opacity:0;
}

.menu-toggle.active span:nth-child(3){
transform:rotate(-45deg) translate(5px,-5px);
}

/* =========================
MOBILE
========================= */

@media (max-width:768px){

.header-inner{
flex-direction:row;
justify-content:space-between;
padding-left:15px;
padding-right:15px;
}

.menu-toggle{
display:flex;
}

/* mobile nav */

.main-nav{
position:absolute;
top:70px;
left:0;
width:100%;
background:#0b0b0b;
border-top:1px solid #222;
max-height:0;
overflow:hidden;
transition:max-height .3s ease;
box-shadow:0 8px 20px rgba(0,0,0,0.6);
z-index:999;
}

.main-nav.active{
max-height:600px;
}

/* mobile menu */

.menu{
flex-direction:column;
padding:20px;
gap:12px;
}

.menu li{
background:#111;
border-radius:6px;
box-shadow:0 2px 6px rgba(0,0,0,.5);
}

.menu a{
padding:14px 18px;
font-size:18px;
}

/* mobile submenu */

.menu li ul{
display:block;
position:relative;
border:none;
background:#181818;
box-shadow:none;
margin-top:6px;
max-height:0;
overflow:hidden;
transition:max-height .3s ease;
}

.menu li.open > ul{
max-height:300px;
}

.menu li ul a{
padding:10px 20px;
font-size:16px;
}

/* footer */

.footer-grid{
grid-template-columns:1fr;
}

}

/* =========================
AUDIO PLAYER
========================= */

.olm-player{
background:#181818;
padding:20px;
border-radius:8px;
margin-bottom:25px;
box-shadow:0 5px 15px rgba(0,0,0,.4);
}

.olm-player h3{
margin-bottom:10px;
}

.olm-player audio{
width:100%;
margin-top:10px;
}

.session-info{
font-size:14px;
color:#aaa;
margin-top:8px;
}

/* playlist */

.olm-playlist{
background:#181818;
padding:25px;
border-radius:8px;
max-width:700px;
margin:auto;
}

.olm-playlist ul{
list-style:none;
padding:0;
margin:15px 0;
}

.olm-playlist li{
padding:10px;
border-bottom:1px solid #333;
cursor:pointer;
}

.olm-playlist li:hover{
background:#222;
}

.olm-playlist audio{
width:100%;
margin-top:15px;
}

/* =========================
MUSICIAN PROFILE
========================= */

.artist-card{
background:#181818;
border-radius:10px;
padding:25px;
display:flex;
align-items:center;
gap:20px;
max-width:700px;
margin:auto;
box-shadow:0 6px 20px rgba(0,0,0,.6);
}

.artist-photo img{
width:110px;
height:110px;
object-fit:cover;
border-radius:50%;
border:3px solid #222;
}

.artist-info h1{
margin-bottom:4px;
}

.artist-role{
color:#ff4d4d;
font-weight:600;
margin-bottom:2px;
}

.artist-instruments{
color:#aaa;
margin-bottom:12px;
}

.artist-card .social-links{
display:flex;
gap:16px;
flex-wrap:wrap;
}

/* =========================
ARTIST PROFILE
========================= */

.artist-header{
background:#181818;
padding:30px;
border-radius:10px;
display:flex;
flex-direction:column;
align-items:center;
text-align:center;
gap:15px;
}

.artist-avatar img{
width:110px;
height:110px;
border-radius:50%;
object-fit:cover;
}

.artist-role{
color:#ff4d4d;
font-weight:600;
}

.artist-instruments{
color:#aaa;
}

.musician-profile .social-links{
display:flex;
gap:18px;
flex-wrap:wrap;
justify-content:center;
margin-top:10px;
}


/* =========================
DESKTOP IMPROVEMENT
========================= */

@media (min-width:900px){

.artist-header{
display:grid;
grid-template-columns:160px 1fr;
align-items:center;
text-align:left;
gap:35px;
padding:40px 50px;
}

.artist-avatar{
display:flex;
justify-content:center;
}

.artist-avatar img{
width:150px;
height:150px;
}

.artist-meta{
max-width:700px;
}

.artist-meta h1{
font-size:36px;
margin-bottom:6px;
}

.artist-role{
font-size:18px;
}

.artist-instruments{
margin-bottom:18px;
}

.musician-profile .social-links{
justify-content:flex-start;
}

}
.gig-page{
    background:#181818;
    padding:25px;
    border-radius:8px;
}
