/* ============================================
   RADYO 2026 - Ana Sayfa CSS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    --dark-bg: #0d0d0d;
    --sidebar-bg: #111827;
    --accent: #e63946;
    --accent2: #457b9d;
    --text: #f1faee;
    --text-muted: #a8b2c1;
    --card-bg: #1d2433;
    --border: rgba(255,255,255,0.08);
    --radius: 12px;
}

* { margin:0; padding:0; box-sizing:border-box; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--dark-bg);
    color: var(--text);
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-content {
    scroll-behavior: smooth;
}

/* MARQUEE */
.marquee-bar {
    position: fixed;
    top: 0;
    left: 260px;
    right: 0;
    background: linear-gradient(90deg, #e63946, #c1121f);
    color: #fff;
    padding: 9px 0;
    z-index: 1000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.marquee-bar marquee { display: block; }

/* SIDEBAR */
.sidebar {
    width: 260px;
    min-height: 100vh;
    background: var(--sidebar-bg);
    position: fixed;
    left: 0; top: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
}

.sidebar-logo {
    padding: 24px 20px 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo img {
    width: 44px; height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.sidebar-logo .logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: var(--accent);
    letter-spacing: 2px;
    line-height: 1.2;
}

.sidebar-logo .logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PLAYER KART */
.now-playing {
    margin: 16px 12px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    border-radius: 10px;
    padding: 14px;
    position: relative;
    overflow: hidden;
}
.now-playing::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.now-playing .np-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin-bottom: 4px;
}
.now-playing .np-song {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.now-playing .np-listeners {
    font-size: 11px;
    opacity: 0.8;
}
.now-playing .np-listeners i { margin-right: 4px; }

audio#radio-player { display: none; }

.play-btn {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.25);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    position: absolute;
    bottom: 14px; right: 14px;
    transition: background 0.2s;
}
.play-btn:hover { background: rgba(255,255,255,0.4); }

/* NAV */
.sidebar nav { flex: 1; padding: 8px 0; overflow-y: auto; }

.nav-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 12px 20px 4px;
}

.sidebar nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s;
    border-radius: 0;
    position: relative;
}
.sidebar nav a i {
    width: 18px;
    font-size: 14px;
    color: var(--accent);
}
.sidebar nav a:hover,
.sidebar nav a.active {
    color: #fff;
    background: rgba(230,57,70,0.12);
    padding-left: 28px;
}
.sidebar nav a.active::before {
    content: '';
    position: absolute;
    left: 0; top: 6px; bottom: 6px;
    width: 3px;
    background: var(--accent);
    border-radius: 0 3px 3px 0;
}

.btn-special {
    margin: 4px 12px;
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #fff !important;
}
.btn-special:hover { opacity: 0.9; padding-left: 14px !important; }
.btn-request { background: linear-gradient(135deg, #e67e22, #d35400) !important; }
.btn-voice   { background: linear-gradient(135deg, #8e44ad, #6c3483) !important; }
.btn-wp      { background: linear-gradient(135deg, #25d366, #1a9e4a) !important; }
.btn-apply   { background: linear-gradient(135deg, #457b9d, #1d3557) !important; }

/* MAIN CONTENT */
.main-content {
    margin-left: 260px;
    margin-top: 38px;
    flex: 1;
    padding: 28px;
    min-height: calc(100vh - 38px);
}

/* SECTION */
.section {
    scroll-margin-top: 50px;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--text);
    padding-left: 14px;
    border-left: 4px solid var(--accent);
    margin-bottom: 20px;
}
.section-title i { color: var(--accent); margin-right: 8px; }

/* SLIDER */
.main-slider {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #1d3557 0%, #0d0d0d 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-slider .slider-placeholder {
    text-align: center;
}
.main-slider .slider-placeholder h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    letter-spacing: 4px;
    color: var(--accent);
}
.main-slider .slider-placeholder p {
    color: var(--text-muted);
    font-size: 14px;
}

/* DJ GRID */
.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 16px;
}
.dj-card {
    background: #141d2b;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, border-color 0.2s;
}
.dj-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.dj-card img {
    width: 100%; height: 170px;
    object-fit: cover;
}
.dj-card .dj-info { padding: 12px; }
.dj-card h4 { font-size: 14px; font-weight: 800; color: var(--text); }
.dj-card p { font-size: 11px; color: var(--accent); margin-top: 3px; font-weight: 600; }
.dj-card .dj-time { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* SCHEDULE ACCORDION */
.schedule-item {
    margin-bottom: 8px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.schedule-item summary {
    padding: 13px 16px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13.5px;
    background: #141d2b;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    transition: background 0.2s;
}
.schedule-item summary:hover { background: #1a2535; }
.schedule-item summary::after {
    content: '\f067';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 12px;
}
.schedule-item[open] summary::after { content: '\f068'; }
.schedule-content {
    padding: 12px 16px;
    background: #0d1420;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 2;
}
.schedule-content .time-slot {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding: 4px 0;
}
.schedule-content .time-slot:last-child { border: none; }
.time-badge {
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* TOP 20 */
.top20-list { display: flex; flex-direction: column; gap: 8px; }
.top20-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #141d2b;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: border-color 0.2s;
}
.top20-item:hover { border-color: var(--accent); }
.rank-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: var(--accent);
    width: 34px;
    text-align: center;
    line-height: 1;
}
.top20-info { flex: 1; }
.top20-info .artist { font-size: 13px; color: var(--text-muted); }
.top20-info .song { font-size: 14px; font-weight: 700; color: var(--text); }
.video-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.video-btn:hover { opacity: 0.85; }

/* NEWS */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.news-card {
    background: #141d2b;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
    transition: transform 0.2s, border-color 0.2s;
}
.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}
.news-card img { width: 100%; height: 155px; object-fit: cover; }
.news-body { padding: 14px; }
.news-body h4 { font-size: 14px; line-height: 1.5; font-weight: 700; }
.news-body .news-date { font-size: 11px; color: var(--text-muted); margin-top: 6px; }

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 28px;
    width: 94%;
    max-width: 500px;
    border: 1px solid var(--border);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.2s;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-box h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 18px;
}
.modal-close {
    position: absolute;
    top: 14px; right: 18px;
    background: none; border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    background: #0d1420;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-submit {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.9; }

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}
.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.2s;
    cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); }

/* VIDEO GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.video-thumb {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    position: relative;
}
.video-thumb img { width: 100%; height: 160px; object-fit: cover; }
.video-thumb .play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.video-thumb:hover .play-overlay { opacity: 1; }
.play-overlay i { font-size: 48px; color: var(--accent); }
.video-title { padding: 10px 12px; font-size: 13px; font-weight: 600; }

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.contact-card {
    background: #141d2b;
    border-radius: 10px;
    padding: 18px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--accent); }
.contact-card i { font-size: 22px; color: var(--accent); width: 28px; }
.contact-card .cc-label { font-size: 11px; color: var(--text-muted); }
.contact-card .cc-val { font-size: 14px; font-weight: 700; }

/* SOCIAL */
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.social-links a:hover { transform: translateY(-2px); opacity: 0.85; }
.s-fb { background: #1877f2; }
.s-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.s-yt { background: #ff0000; }

/* ALERT */
.alert {
    padding: 10px 16px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.alert-success { background: rgba(37,211,102,0.15); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.alert-error   { background: rgba(230,57,70,0.15); color: var(--accent); border: 1px solid rgba(230,57,70,0.3); }

@media (max-width: 768px) {
    .sidebar { width: 220px; }
    .main-content { margin-left: 220px; padding: 16px; }
    .marquee-bar { left: 220px; }
}
