/*
Theme Name: Music Portal
Author: <a href="https://www.facebook.com/sarnavskyiserhii>Serhii Sarnavskyi</a>
Version: 1.0
Description: Тема для музичного порталу.
*/

:root {
    --primary-color: #1DB954;
    --bg-dark: #121212;
    --bg-panel: #282828;
    --text-main: #FFFFFF;
    --text-muted: #B3B3B3;
    --border-color: #333333;
    --hover-bg: #3E3E3E;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    padding-bottom: 90px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

a:hover {
    color: #1ed760;
}

/* Header & Navigation */
header {
    background-color: var(--bg-panel);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

header h1 a {
    color: var(--text-main);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

nav a {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
}

nav a:hover {
    color: var(--text-main);
}

/* Main Content & Blog Layout */
main {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    main {
        grid-template-columns: 3fr 1fr;
    }
}

article {
    background-color: var(--bg-panel);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
}

article h2 {
    margin-top: 0;
}

article h2 a {
    color: var(--text-main);
}

article h2 a:hover {
    color: var(--primary-color);
}

.post-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Music Player Container (Plugin UI Placeholder) */
.music-player-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: var(--bg-panel);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 999;
}

/* Forms & Upload Buttons */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 4px;
    margin-bottom: 15px;
}

button, 
.upload-btn {
    background-color: var(--primary-color);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.1s ease;
}

button:hover, 
.upload-btn:hover {
    background-color: #1ed760;
    transform: scale(1.02);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 14px;
}
