﻿:root {
    --main: #2b2b2b;          /* тёмный */
    --accent: #8b0000;        /* кроваво-красный */
    --second-accent: #d4af37; /* золотой */
}

/* ===== БАЗОВЫЙ СБРОС ===== */
* {
  box-sizing: border-box;
  margin: 0;
}

/* ===== БОКОВОЕ МЕНЮ ===== */

.widget {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 300px;
  padding: 20px 30px;

  background: var(--main);
  border-right: 2px solid var(--accent);

  transform: translateX(-300px);
  transition: transform .4s ease;
  z-index: 1000;
}

/* раскрытие */
.widget:hover {
  transform: translateX(0);
}

/* ручка */
.widget::before {
  content: "☰";
  position: absolute;
  top: 20px;
  right: -42px;
  width: 40px;
  height: 40px;

  background: var(--accent);
  color: var(--second-accent);

  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

/* ===== ЗАГОЛОВКИ ===== */
h3 a {
  color: var(--second-accent);
  text-decoration: none;
}

h3 a:hover {
  color: var(--accent);
}

.widget-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--second-accent);
  font-size: 16px;
  padding-left: 15px;
  margin-bottom: 15px;
  border-left: 2px solid var(--accent);
}

/* ===== СПИСКИ ===== */

.widget-list {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.widget-list a:before {
  content: "\2014";
  margin-right: 14px;
}

.widget-list a {
  text-decoration: none;
  display: block;
  padding: 6px 0;
  letter-spacing: 1px;
  font-weight: 300;
  color: var(--second-accent);
  transition: .3s linear;
}

.widget-list a:hover {
  color: var(--accent);
}