body {
  margin:0;
  font-family: Arial, sans-serif;
  background: #f7e8bd; /* тёплый светлый фон */
  background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png'); /* лёгкая структура бумаги */
}

/* Шапка */
.header {
  background: url('/images/map.jpg') center/cover no-repeat;
  position: relative;
  text-align: center;
  padding: 85px 20px 42px; /* уменьшенная высота */
}

.header h1 {
  color: #ff6e01;
  margin:0;
  font-size: 2.1em;
}

.header p {
  color: #333;
  margin-top:8px;
  font-size:1em;
}

/* Меню */
nav {
  background:#333;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}

.menu {
  display:flex;
  list-style:none;
  margin:0;
  padding:0;
}

.menu a {
  color:white;
  padding:15px;
  display:block;
  text-decoration:none;
}

.menu a:hover {
  background:#1abc9c;
}

/* Поиск */
.search input { padding:5px; }
.search button { padding:5px; }

/* Бургер */
.menu-toggle {
  display:none;
  color:white;
  font-size:24px;
  padding:10px;
  cursor:pointer;
}

/* Контент страниц */
main {
  padding:20px;
  background:#fff8ef; /* светлый блок на фоне */
  margin:20px;
  border-radius:10px;
  box-shadow:0 0 10px rgba(0,0,0,0.1);
}

/* Подвал */
footer {
  text-align:center;
  padding:10px;
  background:#333;
  color:white;
}

/* Мобильная версия */
@media (max-width:768px){
  .header { padding: 70px 15px 35px; }
  .header h1 { font-size:1.5em; }
  .header p { font-size:0.9em; }
}