/* styles.css - Jesus Rave full neon theme with animated players & lyric modal */
/* Colors, layout, neon headers, form, player animation, modal */
:root{
  --bg:#06060b;
  --panel:#0f1220;
  --muted:#9aa0b2;
  --neon1:#ff2d95;
  --neon2:#5df0ff;
  --neon3:#9b5dff;
  --accent:#ffd166;
  --light-blue:#cbeeff;
  --max-width:1200px;
}

/* base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(900px 400px at 10% 10%, rgba(155,93,255,0.06), transparent 8%),
    radial-gradient(700px 300px at 90% 90%, rgba(93,240,255,0.03), transparent 6%),
    var(--bg);
  color:#e6eef8;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  padding-bottom:80px;
}

/* container */
.container{width:92%; max-width:var(--max-width); margin:20px auto;}

/* header/logo */
.site-header{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:8px;
}
.logo-container{flex:0 0 auto}
.site-logo{
  display:block; height:auto;
  width:3in; /* desktop ~3in */
  max-width:100%;
  object-fit:contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.8));
}
@media (max-width:600px){
  .site-logo{width:50vw;}
}

/* titles */
h1, h2, h3 {
  margin:0 0 8px 0;
  font-weight:900;
  letter-spacing:1px;
  display:inline-block;
}

/* Neon header style for H1 & H2 per request */
.neon-h1, .neon-h2 {
  color:#fff;
  background: linear-gradient(90deg, var(--neon1), var(--neon2), var(--neon3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 2px 8px rgba(157,45,149,0.12),
    0 6px 26px rgba(93,240,255,0.04);
  font-size: clamp(1.2rem, 4vw, 2.2rem);
}

/* small neon white headers inside panels (white text on colored bg per request) */
.rave-panel-header {
  font-size:1.6rem;
  font-weight:900;
  color:#ffffff;
  padding:8px 12px;
  border-radius:8px;
  background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display:inline-block;
}

/* nav - top & bottom */
.main-nav{
  display:flex;
  gap:12px;
  margin:12px 0 18px 0;
  flex-wrap:wrap;
}
.main-nav a{
  text-decoration:none;
  padding:8px 14px;
  border-radius:10px;
  color:var(--muted);
  background:transparent;
  border:1px solid transparent;
  transition:all .16s ease;
  font-weight:700;
}
.main-nav a.active{
  color:#06060b;
  background:linear-gradient(90deg,var(--neon1),var(--neon2));
  box-shadow:0 6px 28px rgba(93,240,255,0.06), inset 0 -2px 12px rgba(255,45,149,0.06);
}
.main-nav a:hover{transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,0,0,0.5)}

/* panels */
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:14px;
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border:1px solid rgba(255,255,255,0.03);
  margin-bottom:18px;
}

/* mission list */
.mission-list{list-style:none; padding:0; margin:12px 0 0 0}
.mission-list li{
  margin-bottom:10px;
  padding:10px;
  background: rgba(255,255,255,0.02);
  border-radius:8px;
}

/* contact form vertical per request */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:720px;
}
.contact-form label{ color:#eaf6ff; font-weight:700; }
.contact-form input, .contact-form textarea, .contact-form select{
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.08);
  background: var(--light-blue);
  color:#03040a;
  font-size:1rem;
  width:100%;
}
.btn-submit{
  background: linear-gradient(90deg,var(--neon1),var(--neon2));
  border:none; color:#06060b; padding:12px 18px; border-radius:12px; font-weight:800;
  cursor:pointer;
}

/* songs list */
.song-list-grid{list-style:none; padding:0; margin:12px 0 0 0; display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:12px}
.song-card{
  padding:12px;
  border-radius:12px;
  background: linear-gradient(90deg, rgba(255,255,255,0.01), rgba(93,240,255,0.01));
  border:1px solid rgba(255,255,255,0.02);
  transition: transform .12s ease, box-shadow .12s ease;
}
.song-card a{ text-decoration:none; color:var(--neon2); font-weight:800; display:block; }
.song-card:hover{ transform: translateY(-6px); box-shadow:0 18px 50px rgba(93,240,255,0.06); }

/* animated player */
.player {
  position:relative;
  padding:16px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(155,93,255,0.04), rgba(93,240,255,0.02));
  border:1px solid rgba(155,93,255,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.55);
  overflow:hidden;
}
.player:before {
  content:"";
  position:absolute;
  left:-40%;
  top:-50%;
  width:300px;
  height:300px;
  background: radial-gradient(circle at 30% 30%, rgba(93,240,255,0.06), transparent 30%);
  transform: rotate(25deg);
  animation: floaty 10s linear infinite;
  z-index:0;
}
@keyframes floaty { 0%{ transform: translateX(0) rotate(0deg);} 50%{ transform: translateX(40px) rotate(6deg);} 100%{ transform: translateX(0) rotate(0deg);} }

.player .player-inner{ position:relative; z-index:2; display:flex; gap:16px; align-items:center; }
.player .cover{
  width:110px; height:110px; border-radius:10px;
  background: linear-gradient(135deg, var(--neon1), var(--neon2));
  display:flex; align-items:center; justify-content:center; font-weight:900; color:#05060a;
  box-shadow:0 10px 40px rgba(93,240,255,0.06);
}
.player audio{ width:100%; outline:none; }

/* view lyrics button */
.btn-lyrics{
  margin-top:10px;
  display:inline-block;
  padding:10px 12px;
  border-radius:10px;
  background: linear-gradient(90deg,var(--neon2),var(--neon3));
  color:#06060b; font-weight:800; text-decoration:none;
  border:none; cursor:pointer;
}

/* lyric modal (right side) */
.lyric-modal {
  position:fixed;
  top:12vh;
  right:24px;
  width:380px;
  max-width:40%;
  max-height:72vh;
  overflow:auto;
  background: linear-gradient(180deg, rgba(6,6,11,0.98), rgba(20,20,28,0.98));
  border: 2px solid rgba(93,240,255,0.12);
  padding:16px;
  border-radius:12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  z-index:9999;
  display:none;
}
.lyric-modal h4{margin-top:0}
.lyric-modal .close-lyric{display:inline-block; margin-bottom:8px; cursor:pointer; padding:6px 8px; background:rgba(255,255,255,0.03); border-radius:8px;}

/* animated background graphic for song pages (subtle) */
.song-graphic {
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,45,149,0.04), transparent 6%),
    radial-gradient(circle at 90% 80%, rgba(93,240,255,0.03), transparent 6%);
  mix-blend-mode:screen;
}

/* big FB button */
.big-fb-btn {
  display:inline-block; margin-top:18px; padding:14px 20px; font-weight:800;
  border-radius:12px; text-decoration:none; color:#06060b;
  background: linear-gradient(90deg, #5df0ff, #ff2d95, #9b5dff);
  box-shadow: 0 8px 25px rgba(93,240,255,0.18);
}

/* bottom nav/footer */
.bottom-nav{
  display:flex; gap:12px; justify-content:center; margin-top:24px; flex-wrap:wrap;
}
.footer { text-align:center; color:var(--muted); margin-top:30px; padding-bottom:30px }

/* responsive */
@media (max-width:900px){
  .lyric-modal{ left:4vw; right:4vw; top:10vh; width:auto; max-width:92%;}
  .player .cover{ width:88px; height:88px;}
}
