body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background-color: #1b0f0a;
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 320px;
    background: url('../images/leather-bg.jpg') repeat;
    padding: 10px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-bottom: 12px;
}

.nav-item a {
    display: block;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-item a:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
}

.nav-item svg {
    width: 100%;
    height: auto;
}

/* Content area */
.content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header uses your background image */
.site-header .header-image {
    width: 100%;
    height: 260px;
    background: url('../images/background.jpg') center top no-repeat;
    background-size: cover;
}

/* Page content */
.page-content {
    padding: 20px;
    color: #f4e3c0;
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding: 10px 20px;
    background: url('../images/footer-texture.jpg') repeat-x #2b170e;
    color: #f4d28a;
    font-size: 0.9rem;
}

/* Admin cards */
.admin-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.admin-card {
    background: #2b170e;
    border: 1px solid #8b5a2b;
    padding: 16px;
    text-decoration: none;
    color: #f4e3c0;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 10px #f4d28a;
}

/* Responsive */
@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }
}
.block {
    margin-bottom: 24px;
}

.block h2 {
    margin-top: 0;
    color: #f4d28a;
    letter-spacing: 0.05em;
}

/* Time block */
.time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.time-box {
    flex: 1 1 220px;
    background: rgba(27, 15, 10, 0.8);
    border: 1px solid #8b5a2b;
    border-radius: 8px;
    padding: 12px 16px;
}

/* Now/Next/Coming Up */
.now-next-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.slot {
    flex: 1 1 220px;
    background: rgba(27, 15, 10, 0.8);
    border: 1px solid #8b5a2b;
    border-radius: 8px;
    padding: 12px 16px;
}

.dj-avatar {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* placeholders – later we can swap to per-DJ SVGs */
.dj-now   { background-image: url('../svg/home.svg'); }
.dj-next  { background-image: url('../svg/djs.svg'); }
.dj-later { background-image: url('../svg/schedule.svg'); }

/* Comment form */
.comment-form label {
    display: block;
    margin-bottom: 10px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #8b5a2b;
    padding: 6px 8px;
    background: #2b170e;
    color: #f4e3c0;
}

.comment-form button {
    margin-top: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background: #cfa56a;
    color: #1b0f0a;
    font-weight: bold;
    cursor: pointer;
}

/* User stats */
.user-stats {
    background: rgba(27, 15, 10, 0.8);
    border: 1px solid #8b5a2b;
    border-radius: 8px;
    padding: 12px 16px;
}
