/* --- RADIOX V1_2 FLAT THEME --- */

:root {
    --bg-main: #13131a; /* Very Dark Grey/Black */
    --bg-secondary: #1c1c24; /* Slightly Lighter Dark Grey */
    --accent: #ff4757; /* Vibrant Coral/Red */
    --accent-hover: #ff6b81;
    --text-main: #f1f2f6;
    --text-muted: #a4b0be;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --player-height: 80px;
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: var(--player-height);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-dark { color: var(--bg-main); }
.mt-3 { margin-top: 1rem; }
.ms-2 { margin-left: 0.5rem; }

/* Backgrounds */
.bg-main { background-color: var(--bg-main); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-accent { background-color: var(--accent); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}
.btn-accent { background-color: var(--accent); color: white; }
.btn-accent:hover { background-color: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3); }
.btn-dark { background-color: var(--bg-main); color: white; }
.btn-dark:hover { background-color: var(--bg-secondary); }
.btn-large { font-size: 1.2rem; padding: 15px 40px; }
.btn-block { width: 100%; }

/* Typography */
.section { padding: 100px 0; }
.section-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; letter-spacing: 2px; }
.title-line { height: 4px; width: 60px; background-color: var(--accent); margin: 15px 0 30px 0; }
.center-line { margin: 15px auto 30px auto; }
.dark-line { background-color: var(--bg-main); }

/* TOPBAR */
.topbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background-color: rgba(19, 19, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar-container {
    display: flex; justify-content: space-between; align-items: center; height: 80px;
}
.logo { font-family: var(--font-heading); font-weight: 900; font-size: 1.8rem; color: white; text-decoration: none; letter-spacing: 1px; }
.logo img { max-height: 40px; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; transition: var(--transition); }
.nav-links a:hover { color: var(--accent); }
.mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* HERO */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background-image: url('../../v1_1/assets/images/hero.png');
    background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(19,19,26,0.8), rgba(19,19,26,1)); }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.mega-title { font-family: var(--font-heading); font-size: 5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; letter-spacing: -2px; }
.hero-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }
.live-indicator { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 71, 87, 0.1); color: var(--accent); padding: 8px 16px; border-radius: 30px; font-weight: 700; margin-bottom: 20px; border: 1px solid rgba(255, 71, 87, 0.3); }
.pulse-dot { width: 10px; height: 10px; background-color: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); animation: pulse 1.5s infinite alternate; }
@keyframes pulse { from { opacity: 0.5; transform: scale(0.8); } to { opacity: 1; transform: scale(1.2); } }

/* ABOUT & STATS */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box { background-color: var(--bg-main); padding: 30px; border-radius: 8px; text-align: center; transition: var(--transition); border-bottom: 4px solid var(--bg-main); }
.stat-box:hover { border-bottom-color: var(--accent); transform: translateY(-5px); }
.stat-box i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.stat-box h3 { font-size: 2rem; font-family: var(--font-heading); font-weight: 900; }
.stat-box span { color: var(--text-muted); text-transform: uppercase; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; }

/* SCHEDULE TIMELINE */
.day-selector { display: flex; justify-content: center; gap: 10px; margin-bottom: 50px; flex-wrap: wrap; }
.day-btn { background: var(--bg-secondary); border: none; color: var(--text-muted); padding: 12px 24px; font-weight: 700; border-radius: 4px; cursor: pointer; transition: var(--transition); }
.day-btn:hover { color: white; background: rgba(255,255,255,0.1); }
.day-btn.active { background: var(--accent); color: white; }

.timeline-container { max-width: 800px; margin: 0 auto; position: relative; }
.timeline-container::before { content: ''; position: absolute; top: 0; bottom: 0; left: 150px; width: 2px; background: rgba(255,255,255,0.1); }
.timeline-item { display: flex; margin-bottom: 40px; position: relative; }
.time-stamp { width: 150px; padding-right: 30px; text-align: right; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--accent); padding-top: 5px; }
.timeline-content { flex: 1; padding-left: 30px; position: relative; }
.timeline-content::before { content: ''; position: absolute; left: -6px; top: 12px; width: 14px; height: 14px; background: var(--bg-secondary); border: 2px solid var(--accent); border-radius: 50%; z-index: 1; transition: var(--transition); }
.timeline-item.is-live .timeline-content::before { background: var(--accent); box-shadow: 0 0 15px var(--accent); }
.timeline-content h3 { font-size: 1.5rem; margin-bottom: 10px; display: flex; align-items: center; gap: 15px; }
.timeline-content p { color: var(--text-muted); }
.live-tag { background: var(--accent); color: white; font-size: 0.7rem; padding: 3px 8px; border-radius: 4px; font-weight: 800; }
.empty-msg { text-align: center; color: var(--text-muted); font-style: italic; }

/* PROGRAMMERS */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.team-member { text-align: center; }
.avatar-wrapper { width: 200px; height: 200px; margin: 0 auto 20px auto; border-radius: 50%; overflow: hidden; border: 4px solid var(--bg-main); outline: 2px solid var(--accent); outline-offset: 5px; transition: var(--transition); }
.team-member:hover .avatar-wrapper { outline-offset: 10px; transform: scale(1.05); }
.avatar-img { width: 100%; height: 100%; object-fit: cover; }
.placeholder { background: var(--bg-main); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--bg-secondary); }
.member-name { font-size: 1.4rem; font-family: var(--font-heading); }
.member-role { display: block; color: var(--accent); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 15px; }
.member-socials a { color: var(--text-muted); font-size: 1.2rem; margin: 0 10px; transition: var(--transition); }
.member-socials a:hover { color: white; }

/* REQUEST FORM */
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.flat-form input, .flat-form textarea { width: 100%; background: white; border: none; padding: 15px; margin-bottom: 20px; font-family: var(--font-body); font-size: 1rem; border-radius: 4px; color: var(--bg-main); }
.flat-form input:focus, .flat-form textarea:focus { outline: 2px solid var(--bg-main); }
.form-status { margin-top: 15px; font-weight: 600; text-align: center; color: var(--bg-main); }

/* FOOTER */
.site-footer { background-color: #0b0b0f; padding: 60px 0 20px 0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 40px; margin-bottom: 20px; }
.footer-info h3 { font-family: var(--font-heading); margin-bottom: 20px; letter-spacing: 2px; }
.footer-info p { color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 15px; }
.footer-info i { color: var(--accent); }
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; transition: var(--transition); text-decoration: none; }
.footer-socials a:hover { background: var(--accent); transform: scale(1.1); }
.footer-bottom p { color: var(--text-muted); font-size: 0.9rem; }

/* FIXED BOTTOM PLAYER */
.bottom-player {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    height: var(--player-height);
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.05);
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}
.player-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.player-track { display: flex; align-items: center; gap: 15px; }
.player-thumb { width: 50px; height: 50px; border-radius: 4px; object-fit: cover; }
.live-badge { background: var(--accent); color: white; font-size: 0.65rem; padding: 2px 6px; border-radius: 3px; font-weight: 800; letter-spacing: 1px; }
.track-details h4 { margin: 0; font-family: var(--font-heading); font-size: 1.1rem; }
.player-controls { display: flex; align-items: center; gap: 30px; }
.player-btn { background: var(--accent); color: white; border: none; width: 45px; height: 45px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.player-btn:hover { transform: scale(1.1); background: var(--accent-hover); }
.volume-control { display: flex; align-items: center; gap: 10px; color: var(--text-muted); }
.volume-control input[type=range] { width: 100px; accent-color: var(--accent); cursor: pointer; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid, .form-split, .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .mega-title { font-size: 3.5rem; }
}
@media (max-width: 768px) {
    .timeline-container::before { left: 0; }
    .timeline-item { flex-direction: column; }
    .time-stamp { width: 100%; text-align: left; padding-right: 0; padding-left: 20px; margin-bottom: 10px; }
    .timeline-content { padding-left: 20px; }
    .timeline-content::before { left: -7px; top: 0; }
    
    .nav-links { display: none; } /* Could add JS toggle later */
    .mobile-menu-btn { display: block; }
    .player-controls { gap: 15px; }
    .volume-control { display: none; } /* Hide volume on mobile to save space */
}
