/* CONTACT */

.contact-box{

max-width:600px;
margin:auto;

text-align:center;

background:#1a1a1a;

padding:40px;

border-radius:8px;

border:1px solid rgba(255,255,255,0.05);

}

.contact-email{

font-size:1.2rem;
margin:20px 0;

}

.contact-email a{

color:var(--accent);
text-decoration:none;

}

.contact-email a:hover{

text-decoration:underline;

}


.social-link{

color:var(--accent);

text-decoration:underline;

font-weight:500;

}

.social-link:hover{

color:#e0c48a;

}

/* VIDEO GRID */

.video-grid{

display:grid;

grid-template-columns:repeat(auto-fit, minmax(320px,1fr));

gap:40px;

}
@media (min-width:900px){

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

}
.video-section{

margin-top:60px;
margin-bottom:20px;

font-weight:normal;
color:#ddd;

border-bottom:1px solid rgba(255,255,255,0.08);
padding-bottom:8px;

}

.video-title{

font-size:1rem;

margin-bottom:10px;

color:#ddd;

letter-spacing:.03em;

}

.video{

transition:transform .25s ease, box-shadow .25s ease;

}

.video:hover{

transform:translateY(-6px);

box-shadow:0 18px 40px rgba(0,0,0,.6);

}


/* KEEPS VIDEO SHAPE */

.video iframe{

width:100%;
aspect-ratio:16/9;

border-radius:6px;

}


/* DESCRIPTION keeps them from getting too tall */
.video-desc{

font-size:.9rem;

color:#bbb;

margin-bottom:12px;

}


/* GOLD UNDERLINE VIDEO TITLES */
.video-title{

color:#ddd;

margin-bottom:6px;

border-bottom:1px solid rgba(200,164,107,.35);

padding-bottom:4px;

}

/* Music */

.song{

margin-top:0;
padding:25px;

background:#1a1a1a;

border-radius:8px;

border:1px solid rgba(255,255,255,0.05);

transition:all .25s ease;

}


.song h2{
margin-top:0;
}

/* HOVER LIFT */

.song:nth-child(odd):hover{

transform:translateY(-6px) rotate(-0.2deg);

box-shadow:0 18px 35px rgba(0,0,0,.7);

border-color:rgba(200,164,107,0.25);

}

.song:nth-child(even):hover{

transform:translateY(-6px) rotate(0.2deg);

box-shadow:0 18px 35px rgba(0,0,0,.7);

border-color:rgba(200,164,107,0.25);

}

}

.song{

transition:transform .25s ease, box-shadow .25s ease;

}

@media (min-width:900px){

.song:nth-child(odd){
transform:rotate(-0.6deg);
}

.song:nth-child(even){
transform:rotate(0.6deg);
}

}



.song button{

background:var(--accent);
color:#111;

border:none;

padding:8px 16px;

border-radius:4px;

cursor:pointer;

font-weight:600;

margin-top:10px;

}

.song button:hover{
opacity:.85;
}

.song.playing{

border-left:4px solid var(--accent);

box-shadow:0 0 12px rgba(200,164,107,0.35);

background:#202020;

}

/* Expandable Section */

.song-info{

display:none;

margin-top:14px;
padding-top:14px;

border-top:1px solid rgba(255,255,255,0.08);

font-size:.95rem;
color:#bdbdbd;

}

.song-info.open{
display:block;
}

.info-btn{

background:transparent;
border:1px solid rgba(255,255,255,0.15);
color:#ccc;

padding:6px 12px;
margin-left:8px;

border-radius:4px;
cursor:pointer;

font-size:.8rem;

}

.info-btn:hover{
border-color:var(--accent);
color:var(--accent);
}

/* FOR LYRICS BUTTON */

.lyrics-btn{

background:transparent;
border:1px solid rgba(255,255,255,0.15);
color:#ccc;

padding:6px 12px;
margin-left:8px;

border-radius:4px;
cursor:pointer;

font-size:.8rem;

}

.lyrics-btn:hover{
border-color:var(--accent);
color:var(--accent);
}

/* LYRICS CLOSE */

.lyrics-close{

position:absolute;

top:12px;
right:14px;

font-size:20px;

background:#111;

color:var(--accent);

border:1px solid var(--accent);

padding:4px 10px;

border-radius:4px;

cursor:pointer;

}

.lyrics-close:hover{

background:var(--accent);
color:#111;

}

/* LYRICS MODAL */

.lyrics-modal{

display:none;

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.8);

z-index:2000;

justify-content:center;
align-items:center;

}

/* centered lyrics panel */

.lyrics-box{

background:#1a1a1a;

max-width:700px;
width:90%;

padding:30px;

border-radius:8px;

box-shadow:0 20px 40px rgba(0,0,0,.8);

position:relative;

}

/* close button */

.lyrics-close{

position:absolute;

top:12px;
right:14px;

font-size:20px;

background:#111;

color:var(--accent);

border:1px solid var(--accent);

padding:4px 10px;

border-radius:4px;

cursor:pointer;

}

.lyrics-close:hover{

background:var(--accent);
color:#111;

}


.lyrics-content{

background:#1a1a1a;

padding:40px;
max-width:700px;
width:90%;

border-radius:8px;

color:#ddd;

line-height:1.7;

}

.close-lyrics{

position:absolute;
top:20px;
right:30px;

font-size:28px;
cursor:pointer;

}

.lyrics-data{
display:none;
}



/* COLUMN LYRICS */

.lyrics-columns{

display:grid;

grid-template-columns:1fr 1fr;

column-gap:40px;

margin:12px 0;

}

.lyrics-columns span{

display:block;

}


/* FOR LONG LYRICS modal scrolls nicely on phones */

.lyrics-content{
max-height:80vh;
overflow-y:auto;
}

/* FOR Column Collapse on phones */

@media (max-width:600px){

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

}


/* PROGRESS BAR */

.progress-bar{

width:100%;
height:4px;

background:#2a2a2a;

margin-top:16px;

border-radius:2px;

overflow:hidden;

}

.progress{

width:0%;
height:100%;

background:var(--accent);

transition:width .15s linear;

}


/* tiny divider line between songs.*/
.song + .song{
margin-top:50px;
}



body{
margin:0;
font-family: Arial, Helvetica, sans-serif;
line-height:1.6;
color:#e6e6e6;
background:#121212;
}
.bio-text p{
margin-bottom:1.2rem;
}

:root{
--accent:#c8a46b;
}

/* HERO IMAGE */

.hero{
position:relative;
width:100%;
height:75vh;
overflow:hidden;
}


/* Better Cropping on phones - */

.hero img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-text{
position:absolute;
bottom:40px;
left:30px;
color:white;
background:rgba(0,0,0,0.35);
padding:15px 20px;
}

.hero-text h1{
margin:0;
font-size:2rem;
letter-spacing:1px;
}

.hero-text h1{
text-shadow:0 2px 10px rgba(0,0,0,0.8);
}

.hero-text p{
margin:5px 0 0 0;
font-size:1rem;
}

/* Hero image gradient overlay */

.hero::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:70%;
background:linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

/* PAGE HEADER WITH SUBTITLES */

.page-header{

text-align:center;
margin-top:30px;
margin-bottom:40px;

}


/* UPPERCASE TITLES */

.music-title{

font-size:1.5rem;

letter-spacing:.08em;

text-transform:uppercase;

margin-bottom:10px;

}

/* centers the paragraph nicely, limits width so it reads well, softens color */

..page-subtitle{

color:#b8b8b8;

font-size:.95rem;

max-width:600px;

margin:auto;

line-height:1.5;

}

.page-subtitle{

font-style:italic;

}

/* divider under the header */
.page-header::after{

content:"";

display:block;

width:380px;

height:4px;

margin:20px auto 0;

background:linear-gradient(
to right,
transparent,
var(--accent),
transparent
);

}


.music-title{
text-align:center;
margin-top:30px;
}

/* Captions */

.bio-images figcaption{

font-size:0.8rem;
color:#aaa;

margin-top:6px;

line-height:1.4;

}

/* Caption block for phone view */

.bio-images figcaption{
display:none;
}


.bio-text{
max-width:720px;
width:100%;
}


/* This prevents paragraphs from feeling crowded */

.bio-text p{

margin-bottom:1.4rem;

}

/* Navigation */

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 28px;
background:#0b0b0b;
color:#ffffff;
position:sticky;
top:0;
z-index:1000;
}

.nav-title{
font-size:1.1rem;
letter-spacing:1px;
}

.nav-links a{
color:#cccccc;
text-decoration:none;
margin-left:22px;
font-size:0.9rem;
}

.nav-links a.active{
color:var(--accent);
}


.nav-links a:hover{
color:var(--accent);
}

/*Footer */

.footer{
margin-top:60px;
padding:40px 20px;
text-align:center;
background:#0b0b0b;
color:#888;
font-size:0.9rem;
border-top:1px solid #222;
}

.footer a{
color:#aaa;
text-decoration:none;
}

.footer a:hover{
color:#ffffff;
}

.footer{
margin-top:80px;
padding:40px 20px;
text-align:center;
background:#0b0b0b;
color:#777;
font-size:0.9rem;
border-top:1px solid #222;
}

.footer a{
color:var(--accent);
text-decoration:none;
}

.footer a:hover{
text-decoration:underline;
}

/* Animation */


.fade-in{
opacity:0;
transform:translateY(30px);
transition:opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible{
opacity:1;
transform:translateY(0);
}

.hero img{

width:100%;
height:100%;

object-fit:cover;
object-position:center 25%;

animation:kenburns 22s ease-out forwards;

}


@keyframes kenburns{

0%{
transform:scale(1);
}

100%{
transform:scale(1.12);
}

}

@media (max-width:799px){

.bio img{
display:none;
}

}


/* Columns Grid Rule with Align */

@media (min-width:900px){

.song-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

align-items:start;

}

}

.container h2{
grid-column:1 / -1;
}

}

/* BUTTON */

#topBtn{
display:none;
position:fixed;
bottom:30px;
right:30px;
z-index:99;
border:none;
outline:none;
background:#111;
color:white;
cursor:pointer;
padding:12px 16px;
border-radius:6px;
font-size:18px;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

#topBtn:hover{
background:#444;
}






/* Audio Player */

#sticky-player{

position:fixed;

bottom:20px;
left:50%;
transform:translateX(-50%);

width:90%;
max-width:700px;

background:#695F5E;

padding:12px 16px;

border-radius:8px;

box-shadow:0 12px 30px rgba(0,0,0,.7);

display:none;

z-index:1000;

}

#global-player{
width:100%;
}



#player-title{

font-size:.85rem;

color:var(--accent);

margin-bottom:6px;

letter-spacing:.04em;

}


/* CONTENT AREA */

.container{
max-width:1000px;
margin:auto;
padding:30px 20px;
}

/* BIO SECTION */

.bio{
display:flex;
flex-direction:column;
gap:25px;
}

.bio img{
width:100%;
max-width:360px;
border-radius:4px;
}

.bio-images{

position:sticky;
top:100px;

}

.bio-images img{

width:100%;
height:auto;

border-radius:4px;

box-shadow:0 30px 35px rgba(0,0,0,0.7);

border:1px solid rgba(255,255,255,0.05);

}

.bio-images img{

transition:transform .25s ease, box-shadow .25s ease;

}

.bio-images img:hover{

transform:translateY(-3px);

box-shadow:0 14px 32px rgba(0,0,0,0.8);

}



.bio-text{
font-size:1.05rem;
line-height:1.7;
color:#e6e6e6;
}

/* DIVIDER  between sections STYLE */

.section-divider{

margin:60px 0;

height:1px;

background:linear-gradient(
to right,
transparent,
rgba(200,164,107,0.4),
transparent
);

}
/* QUOTE STYLE */

.quote{
margin:40px 0;
padding:20px;
font-style:italic;
background:#1e1e1e;
border-left:4px solid var(--accent);
}

@media (max-width:799px){

.hero img{
object-position:25% center;
}

}

/* DESKTOP LAYOUT */

@media (min-width:1000px){

.bio{
flex-direction:row;
align-items:flex-start;
}

.bio-text{
width:65%;
padding-left:30px;
}

.bio-images figcaption{
display:block;
}

.hero-text h1{
font-size:2.6rem;
}

}

/* VINYL TILT */

.song:nth-child(odd){
transform:rotate(-0.6deg);
}

.song:nth-child(even){
transform:rotate(0.6deg);
}

/* ROTATION EFFECT */

@media (min-width:900px){

.song:nth-child(odd){
transform:rotate(-0.6deg);
}

.song:nth-child(even){
transform:rotate(0.6deg);
}

}

/* SONG STAGGER EFFECT */

@media (min-width:900px){

.song-grid .song:nth-child(even){
margin-top:90px;
}

}