/* === ОСНОВНОЕ === */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #fafafa;
  color: #222;
}

main {
  padding: 20px;
}

h1 {
  text-align: center;
  margin-top: 20px;
}

h2 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
  color: #444;
}

/* === ШАПКА === */
header {
  background-color: #fffaf0;
  border-bottom: 2px solid #dcb37a;
}

header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
}

header img {
  height: 60px;
}

header input[type="search"] {
  width: 320px;
  padding: 7px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 0 20px;
}

header a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

header a:hover {
  color: #a35b00;
}

/* меню */
nav {
  background-color: #f2d6a2;
  border-top: 1px solid #dcb37a;
  border-bottom: 1px solid #dcb37a;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav li {
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding: 10px;
  display: inline-block;
}

nav a:hover {
  background-color: #e7be77;
  border-radius: 4px;
}

/* === СЛАЙДЕР === */
.slider-container {
  position: relative;
  width: 80%;
  max-width: 1300px;
  height: 400px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  background: #fff;
}

/* скрыть радиокнопки */
.slider-container input {
  display: none;
}

/* слайды */
.slides {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.7s ease-in-out;
}

.slide {
  width: 50%;
  flex-shrink: 0;
  text-align: center;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer; /* Показываем, что на картинку можно кликнуть */
}

/* управление переключением */
#s1:checked ~ .slides {
  transform: translateX(0);
}
#s2:checked ~ .slides {
  transform: translateX(-50%);
}

/* стрелки */
.arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.arrows label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 32px;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100;
  pointer-events: auto;
}

.arrows label:hover {
  background: rgba(0,0,0,0.7);
  transform: translateY(-50%) scale(1.1);
}

.arrows .prev {
  left: 20px;
}
.arrows .next {
  right: 20px;
}

/* === ТАБЛИЦА КНИГ === */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  text-align: center;
}

td {
  padding: 15px;
  vertical-align: top;
}

td img {
  border-radius: 5px;
  width: 150px;
  height: 200px;
  object-fit: cover;
}

td p {
  margin: 5px 0;
}

/* === ПОДВАЛ === */
footer {
  background-color: #eee;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  color: #555;
  margin-top: 30px;
}

