/* =====================================================
   GLOBAL
===================================================== */

body{
margin:0;
font-family:'Outfit',sans-serif;
color:#f3f3f3;

background-image:
linear-gradient(rgba(0,0,0,0.88),rgba(0,0,0,0.88)),
url("../imgs/background.png");

background-size:cover;
background-position:center top;
background-repeat:no-repeat;
background-attachment:fixed;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

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

a:hover{
color:#fff176;
}


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

.header{
background:rgba(0,0,0,0.35);
border-bottom:1px solid rgba(255,255,255,0.08);
padding-top:10px;
}

.header-inner{
display:flex;
align-items:flex-start;
justify-content:space-between;
gap:40px;
padding:10px 0 5px 0;
}

.logo img{
height:160px;
width:auto;
display:block;
}


/* =====================================================
   NOW PLAYING (HEADER RIGHT)
===================================================== */

.header-nowplaying{
display:flex;
align-items:flex-start;
gap:20px;
margin-top:10px;
}

.header-nowplaying .np-art img{
width:145px;
height:145px;
object-fit:cover;
border-radius:6px;
box-shadow:0 8px 20px rgba(0,0,0,0.6);
}

.np-text{
text-align:right;
max-width:320px;
}

.np-label{
font-size:13px;
color:#ffd54a;
margin-bottom:6px;
}

.np-song{
font-weight:700;
font-size:18px;
color:#ffd54a;
}

.np-artist{
font-size:14px;
color:#ffffff;
}

.recent-played{
margin-top:10px;
font-size:12px;
color:#ff5252;
}
.np-request{
font-size:13px;
color:#ffd54a;
margin-top:6px;
}

.np-message{
font-size:12px;
color:#ccc;
margin-top:4px;
font-style:italic;
}

/* =====================================================
   NAVIGATION
===================================================== */

.nav{
display:flex;
gap:30px;
padding:12px 0;
border-top:1px solid rgba(255,255,255,0.08);
}

.nav a{
text-decoration:none;
color:#eee;
font-weight:600;
transition:all .25s ease;
}

.nav a:hover{
color:#ffd54a;
text-shadow:0 0 8px rgba(255,213,74,0.6);
}


/* =====================================================
   PLAYER BAR
===================================================== */

#scs-player{
margin-top:10px;
margin-bottom:20px;
border-radius:6px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.7);
}


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

.content{
padding:30px 0;
}

.layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
}
#main-content{
opacity:1;
transform:translateY(0);
transition:
opacity .65s ease,
transform .65s ease;
}

#main-content.loading{
opacity:0;
transform:translateY(12px) scale(.995);
}

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

.feature-box{

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

backdrop-filter:blur(10px);

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

border-radius:10px;

padding:25px;

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

margin-bottom:15px;
}

.feature-box h2{
color:#ffd54a;
margin-top:0;
}

/* =====================================================
   REGGAE FEATURE SPLIT
===================================================== */

.rm-split-inner{
display:grid;
grid-template-columns:1.3fr 1fr;
gap:25px;
align-items:center;
}

/* TEXT */

.rm-split-text p{
color:#e5e5e5;
line-height:1.65;
}

/* IMAGE */

.rm-split-image{
text-align:center;
position:relative;
}

.rm-split-image img{
max-width:100%;
max-height:520px;
width:auto;
height:auto;
object-fit:contain;
}

.rm-split-image.large img{
max-height:520px;
}

.rm-split-image.small img{
max-height:260px;
}

/* MOBILE */

@media(max-width:800px){

.rm-split-inner{
grid-template-columns:1fr;
}

.rm-split-image{
order:-1;
margin-bottom:15px;
}

.rm-split-text{
text-align:center;
}

}


/* GRID */
.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:30px;
}

/* CARD BASE */
.why-card{
position:relative;
border-radius:14px;
overflow:hidden;
background:#d6a62b;
padding:25px;
text-align:center;
cursor:pointer;
transition:.3s ease;
}

/* FRONT CONTENT */
.why-front{
position:relative;
z-index:2;
transition:.3s ease;
}

.why-icon{
width:70px;
height:70px;
margin:0 auto 15px;
border-radius:50%;
background:#1b5e20;
display:flex;
align-items:center;
justify-content:center;
}

.why-icon img{
width:40px;
height:auto;
}

.why-card h3{
margin:10px 0;
color:#000;
font-size:22px;
}

.why-card p{
font-size:14px;
color:#111;
}

/* OVERLAY */
.why-overlay{
position:absolute;
inset:0;
background:
linear-gradient(rgba(0,0,0,0.85),rgba(0,0,0,0.55)),
var(--bg) center/cover no-repeat;

display:flex;
align-items:center;
justify-content:center;
padding:20px;

opacity:0;
transform:scale(1.05);
transition:.35s ease;

z-index:3;
}

.why-overlay p{
color:#fff;
font-size:14px;
line-height:1.6;
}

/* HOVER EFFECT */
.why-card:hover .why-overlay{
opacity:1;
transform:scale(1);
}

.why-card:hover .why-front{
opacity:0;
transform:translateY(-10px);
}

/* NICE GLOW */
.why-card:hover{
box-shadow:0 10px 35px rgba(255,213,74,0.4);
}

/* MOBILE */
@media(max-width:900px){
.why-grid{
grid-template-columns:1fr;
}
}

/* =====================================================
   BLOG GRID
===================================================== */

.blog-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:15px;
}

/* CARD */
.blog-card{
background:rgba(0,0,0,0.55);
border-radius:10px;
overflow:hidden;
border:1px solid rgba(255,213,74,0.2);
transition:.25s ease;
}

.blog-card a{
text-decoration:none;
color:#fff;
display:block;
}

/* IMAGE */
.blog-img{
height:180px;
overflow:hidden;
}

.blog-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s ease;
}

/* CONTENT */
.blog-content{
padding:15px;
}

.blog-date{
font-size:12px;
color:#ffd54a;
margin-bottom:6px;
}

.blog-card h3{
margin:0 0 8px;
font-size:18px;
color:#fff;
}

.blog-card p{
font-size:14px;
color:#ddd;
line-height:1.5;
}

/* HOVER */
.blog-card:hover{
transform:translateY(-4px);
border-color:#ffd54a;
box-shadow:0 10px 30px rgba(255,213,74,0.25);
}

.blog-card:hover img{
transform:scale(1.08);
}

/* MOBILE */
@media(max-width:800px){
.blog-grid{
grid-template-columns:1fr;
}
}


/* =====================================================
   BLOG POST
===================================================== */

.blog-post h1{
color:#ffd54a;
margin-top:0;
margin-bottom:10px;
}

.blog-meta{
font-size:13px;
color:#aaa;
margin-bottom:15px;
}

/* HERO IMAGE */
.blog-hero{
margin-bottom:20px;
}

.blog-hero img{
width:100%;
max-height:350px;
object-fit:cover;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.7);
}

/* CONTENT */
.blog-body p{
font-size:15px;
color:#ddd;
line-height:1.7;
margin-bottom:15px;
}
/* =====================================================
   SIDEBAR
===================================================== */

.sidebar{

}
/* =====================================================
   FORUM CARD
===================================================== */

.forum-card{
margin-top:20px;
background:rgba(0,0,0,0.55);
border:1px solid rgba(255,213,74,0.2);
border-radius:10px;
overflow:hidden;
transition:.25s ease;
}

.forum-link{
display:block;
text-decoration:none;
color:#fff;
}

/* IMAGE */
.forum-img{
height:140px;
overflow:hidden;
position:relative;
}

.forum-img img{
width:100%;
height:100%;
object-fit:cover;
transition:.4s ease;
}

/* TEXT */
.forum-text{
padding:15px;
}

.forum-text h4{
margin:0 0 6px;
color:#ffd54a;
font-size:16px;
}

.forum-text p{
font-size:13px;
color:#ddd;
line-height:1.5;
}

/* HOVER EFFECT */
.forum-card:hover{
transform:translateY(-3px);
border-color:#ffd54a;
box-shadow:0 10px 25px rgba(255,213,74,0.25);
}

.forum-card:hover img{
transform:scale(1.08);
}

/* subtle overlay */
.forum-img::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
to bottom,
transparent,
rgba(0,0,0,0.8)
);
}


.fun-fact{
margin-top:10px;
font-size:14px;
color:#ddd;
line-height:1.6;
}

.fact-date{
color:#ffd54a;
font-weight:700;
margin-bottom:6px;
font-size:15px;
}

.fun-fact strong{
color:#ffd54a;
}


/* =====================================================
   TODAY SHOWS
===================================================== */

.fr-today-shows{
background:rgba(0,0,0,0.55);
border-radius:10px;
padding:20px;
box-shadow:0 12px 35px rgba(0,0,0,0.7);
}

.fr-today-title{
font-size:20px;
font-weight:700;
margin-bottom:18px;
letter-spacing:1px;
color:#ffd54a;
}

.fr-show-list{
list-style:none;
margin:0;
padding:0;
display:flex;
flex-direction:column;
gap:10px;
}

.fr-show-item{
display:flex;
flex-direction:column;
gap:8px;
padding:14px;
border-radius:8px;
background:rgba(0,0,0,0.35);
transition:all .25s ease;
}

.fr-show-item:hover{
background:rgba(0,0,0,0.55);
transform:translateX(3px);
}

.fr-show-time{
font-weight:700;
color:#ffd54a;
font-size:14px;
}

.fr-show-name{
font-weight:600;
font-size:15px;
color:#fff;
}

.fr-no-show{
text-align:center;
opacity:.7;
padding:10px;
}


/* =====================================================
   SHOW PROGRESS BAR
===================================================== */

.fr-progress{
width:100%;
height:6px;
background:rgba(255,255,255,0.1);
border-radius:6px;
margin-top:8px;
overflow:hidden;
}

.fr-progress-bar{
height:100%;
background:linear-gradient(90deg,#ff0000,#ffd54a,#2e7d32);
border-radius:6px;
transition:width .5s ease;
}


/* =====================================================
   LIVE SHOW STYLE
===================================================== */

.fr-live{

background:rgba(255,213,74,0.12);
border:1px solid rgba(255,213,74,0.6);

box-shadow:
0 0 15px rgba(255,213,74,0.6),
0 0 30px rgba(255,213,74,0.3);
}

.fr-live-badge{
background:#ffd54a;
color:#000;
font-size:11px;
font-weight:700;
padding:4px 8px;
border-radius:4px;
margin-left:10px;
animation:fr-live-pulse 1.4s infinite;
}

@keyframes fr-live-pulse{
0%{opacity:1}
50%{opacity:0.4}
100%{opacity:1}
}

/* =====================================================
   REGGAE SCHEDULE
===================================================== */

.schedule-section{
background:rgba(0,0,0,0.35);
border-radius:10px;
padding:20px;
overflow-x:auto;
box-shadow:0 12px 35px rgba(0,0,0,0.7);
}

/* GRID */

.schedule{
display:grid;
grid-template-columns:repeat(7,1fr);
grid-auto-rows:40px;
gap:6px;
margin-top:10px;
}

/* DAY HEADERS */

.day{
text-align:center;
font-weight:700;
padding:14px 0;
color:#ffd54a;
letter-spacing:1px;
text-transform:uppercase;
font-size:14px;
border-radius:6px;

background:linear-gradient(
90deg,
#c62828,
#ffd54a,
#2e7d32
);
color:#000;
}

/* SHOW BLOCK */

.show{
padding:8px;
border-radius:6px;
font-size:13px;
background:rgba(0,0,0,0.55);
border-left:4px solid #ffd54a;
transition:all .25s ease;
}

.show:hover{
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(0,0,0,0.6);
}

.show strong{
display:block;
font-weight:700;
color:#ffd54a;
}

.show span{
font-size:12px;
opacity:.85;
color:#fff;
}

/* REGGAE COLOUR TYPES */

.morning{
background:rgba(255,213,74,0.15);
border-left:4px solid #ffd54a;
}

.roots{
background:rgba(198,40,40,0.18);
border-left:4px solid #c62828;
}

.lovers{
background:rgba(255,105,180,0.18);
border-left:4px solid #ff6b9a;
}

.classics{
background:rgba(46,125,50,0.18);
border-left:4px solid #2e7d32;
}

.dub{
background:rgba(0,0,0,0.45);
border-left:4px solid #c62828;
}

.weekend{
background:rgba(46,125,50,0.18);
border-left:4px solid #ffd54a;
}

.default{
background:rgba(255,213,74,0.1);
border-left:4px solid #ffd54a;
}

/* =====================================================
   MOBILE TODAY SHOWS
===================================================== */

.today-shows{
display:none;
margin-top:10px;
}

.today-show{
padding:16px;
margin-bottom:10px;
background:rgba(0,0,0,0.55);
border-radius:8px;
border-left:4px solid #ffd54a;
}

.today-show strong{
display:block;
font-size:18px;
margin-bottom:4px;
color:#ffd54a;
}

.today-show .time{
font-size:13px;
opacity:.8;
color:#ffffff;
}

.today-show p{
margin-top:6px;
font-size:13px;
opacity:.85;
color:#ffffff;
}

/* MOBILE SWITCH */

@media(max-width:800px){

.schedule{
display:none;
}

.today-shows{
display:block;
}

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

footer{
background:rgba(0,0,0,0.8);
color:white;
text-align:center;
padding:30px 0;
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.08);
}

.footer-inner{
display:flex;
justify-content:space-between;
align-items:center;
}

.footer-right a{
color:#ffd54a;
}

.footer-right a:hover{
color:#fff176;
}

/* =====================================================
   FOOTER TOP (4 COLUMN)
===================================================== */

.footer-top{
margin-top:40px;
padding:50px 0;
background:rgba(0,0,0,0.75);
border-top:1px solid rgba(255,255,255,0.08);
}

.footer-top-inner{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
align-items:flex-start;
}

/* LOGO + TEXT */
.footer-brand img{
width:120px;
margin-bottom:15px;
}

.footer-brand p{
font-size:14px;
color:#ddd;
line-height:1.6;
}

/* HEADINGS */
.footer-col h4{
color:#ffd54a;
margin-bottom:15px;
font-size:18px;
}

/* LINKS */
.footer-col a{
display:block;
margin-bottom:8px;
color:#eee;
font-size:14px;
transition:.25s;
}

.footer-col a:hover{
color:#ffd54a;
transform:translateX(3px);
}

/* SOCIALS */
.socials{
display:flex;
gap:12px;
margin-top:10px;
}

.socials a{
width:42px;
height:42px;
border-radius:50%;
background:#1b5e20;
display:flex;
align-items:center;
justify-content:center;
color:#ffd54a;
font-size:16px;
transition:.25s;
}

.socials a:hover{
background:#ffd54a;
color:#000;
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(255,213,74,0.4);
}

/* MOBILE */
@media(max-width:900px){

.footer-top-inner{
grid-template-columns:1fr;
text-align:center;
}

.footer-brand img{
margin:auto;
}

.socials{
justify-content:center;
}

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

@media(max-width:900px){

.header-inner{
flex-direction:column;
align-items:center;
text-align:center;
}

.header-nowplaying{
flex-direction:column;
align-items:center;
}

.np-text{
text-align:center;
}

.nav{
justify-content:center;
flex-wrap:wrap;
}

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

.logo img{
height:90px;
}

}

/* =========================================================
REQUEST SEARCH (REGGAE STYLE)
========================================================= */

#live-search{
width:96%;
padding:13px 16px;
border-radius:6px;
border:1px solid rgba(255,213,74,0.4);
background:rgba(0,0,0,0.6);
color:#ffd54a;
font-size:14px;
transition:all .25s ease;
margin-bottom:22px;
}

#live-search::placeholder{
color:rgba(255,213,74,0.6);
}

#live-search:focus{
outline:none;
border-color:#ffd54a;
box-shadow:0 0 0 2px rgba(255,213,74,0.2);
}


/* =========================================================
REQUEST SONG CARD
========================================================= */

.request-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-top:15px;
}

.song-card{
display:flex;
align-items:center;
gap:14px;
background:rgba(0,0,0,0.55);
padding:14px;
border-radius:8px;
border:1px solid rgba(255,213,74,0.2);
transition:.25s ease;
min-height:90px;
backdrop-filter:blur(6px);
}

.song-card:hover{
background:rgba(0,0,0,0.7);
border-color:#ffd54a;
transform:translateY(-2px);
}

.song-card img{
width:70px;
height:70px;
object-fit:cover;
border-radius:6px;
box-shadow:0 4px 10px rgba(0,0,0,0.6);
}

.song-meta{
flex:1;
display:flex;
flex-direction:column;
justify-content:center;
}

.song-meta strong{
color:#ffd54a;
font-size:14px;
}

.song-meta p{
margin:3px 0;
font-size:13px;
color:#ffffff;
}

.song-meta span{
font-size:12px;
color:#bbb;
}


/* =========================================================
REQUEST BUTTON
========================================================= */

.request-btn{
margin-left:auto;
padding:8px 13px;
background:#2e7d32;
border:1px solid #ffd54a;
border-radius:6px;
font-size:12px;
font-weight:600;
cursor:pointer;
display:flex;
align-items:center;
gap:6px;
color:#fff;
transition:.25s ease;
}

.request-btn:hover{
background:#ffd54a;
color:#000;
transform:translateY(-1px);
}


/* =========================================================
PAGINATION
========================================================= */

.pagination{
margin-top:30px;
display:flex;
justify-content:center;
align-items:center;
gap:8px;
flex-wrap:wrap;
}

.pagination a,
.pagination span{
padding:6px 10px;
border-radius:4px;
font-size:13px;
text-decoration:none;
border:1px solid rgba(255,213,74,0.25);
background:rgba(0,0,0,0.6);
color:#ffd54a;
}

.pagination a:hover{
background:#ffd54a;
color:#000;
}

.pagination span.active{
background:#ffd54a;
color:#000;
border-color:#ffd54a;
font-weight:600;
}

.pagination .dots{
border:none;
background:transparent;
color:#aaa;
}


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

@media (max-width:700px){

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

.song-card{
flex-direction:column;
align-items:flex-start;
}

.song-card img{
width:70px;
height:70px;
}

.request-btn{
width:100%;
justify-content:center;
margin-top:10px;
}

.pagination{
flex-direction:column;
gap:8px;
}

}


/* =========================================================
REQUEST MODAL
========================================================= */

.modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
display:none;
align-items:center;
justify-content:center;
z-index:99999;
}

.modal.active{
display:flex;
}

.modal-box{
background:rgba(0,0,0,0.85);
border:1px solid rgba(255,213,74,0.35);
border-top:4px solid #ffd54a;
border-radius:8px;
padding:28px;
width:100%;
max-width:420px;
box-shadow:0 15px 40px rgba(0,0,0,0.8);
animation:modalFade .25s ease;
}

.modal-box h3{
margin:0 0 20px;
font-size:18px;
color:#ffd54a;
}


/* INPUTS */

.modal-box input,
.modal-box textarea{
width:94%;
padding:12px 14px;
margin-bottom:12px;
background:rgba(0,0,0,0.6);
border:1px solid rgba(255,213,74,0.3);
border-radius:6px;
font-size:14px;
color:#fff;
transition:.2s;
}

.modal-box textarea{
resize:none;
min-height:90px;
}

.modal-box input:focus,
.modal-box textarea:focus{
outline:none;
border-color:#ffd54a;
box-shadow:0 0 0 2px rgba(255,213,74,0.2);
}


/* SEND BUTTON */

#send-request{
width:100%;
padding:11px;
margin-top:6px;
border:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
background:#2e7d32;
color:#fff;
transition:.2s;
}

#send-request:hover{
background:#ffd54a;
color:#000;
transform:translateY(-1px);
}


/* CANCEL BUTTON */

#close-modal{
width:100%;
margin-top:8px;
padding:10px;
background:rgba(0,0,0,0.6);
border:1px solid rgba(255,213,74,0.3);
border-radius:6px;
cursor:pointer;
color:#ffd54a;
transition:.2s;
}

#close-modal:hover{
background:#ffd54a;
color:#000;
}


/* STATUS */

.request-status{
margin-top:10px;
padding:10px;
border-radius:6px;
font-size:14px;
display:none;
}

.request-status.success{
background:#1f3d21;
border-left:3px solid #2e7d32;
color:#fff;
display:block;
}

.request-status.error{
background:#3d1f1f;
border-left:3px solid #c62828;
color:#fff;
display:block;
}


/* ANIMATION */

@keyframes modalFade{
from{
opacity:0;
transform:scale(.95);
}
to{
opacity:1;
transform:scale(1);
}
}

.offer-title {
    margin: 30px 0 10px;
}

.offer-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;

    background: linear-gradient(90deg, #16a34a, #eab308, #dc2626);
    color: #fff;

    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* optional subtle hover (non-button feel) */
.offer-badge:hover {
    opacity: 0.9;
}
.offer-title {
    margin: 30px 0 10px;
}

/* BASE PILL */
.offer-pill {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
}

/* LIGHT (Legendary Artists) */
.pill-light {
    background: #e5e7eb;
    color: #065f46;
    border-color: #facc15;
}

/* GOLD (Diverse Sounds) */
.pill-gold {
    background: linear-gradient(145deg, #fbbf24, #d97706);
    color: #fff;
    border-color: #fde68a;
}

/* GREEN (Cultural Impact) */
.pill-green {
    background: #14532d;
    color: #facc15;
    border-color: #facc15;
}