/* Основной стиль */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #fdf8f2;
  color: #4b2e1e;
}

/* Шапка */
header {
  background-color: #7b2f17;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Блок с баннером */
.hero {
  background-image: url('assets/img/steppe-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px 40px;
  text-align: center;
  color: rgb(0, 0, 0);
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.hero .btn {
  background-color: #bf4b2e;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

.hero .btn:hover {
  background-color: #a23620;
}

/* Секция */
.section {
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.section:nth-child(even) {
  background-color: #fff7ed;
}

.section img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.section .text {
  max-width: 600px;
}

.section h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #7b2f17;
}

.section p {
  font-size: 16px;
  line-height: 1.6;
}

/* Кнопка */
.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #7b2f17;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #5f2412;
}

/* Подвал */
footer {
  background-color: #3d1a0f;
  color: #eee;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* Адаптив */
@media screen and (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
  }

  .section img {
    width: 100%;
    max-width: 350px;
  }
}

.batyr-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
}

.batyr-card {
  background: #fdfdfd;
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.batyr-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.batyr-card h2 {
  margin-top: 10px;
  font-size: 20px;
}

.batyr-card p {
  font-size: 14px;
  color: #555;
}

.btn-read {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #c19c4a;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-read:hover {
  background: #d4af60;
  transform: translateY(-2px);
}

/* Стили для вкладок */
.tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-button {
  background: #2c2c2c;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #444;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

.tab-button:hover {
  background: #444;
}

.tab-button.active {
  background: linear-gradient(135deg, #6a5acd, #1e90ff);
  border-color: #1e90ff;
  color: #fff;
}

.tab-content {
  background: #1e1e1e;
  padding: 25px;
  border-radius: 10px;
  color: #ddd;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin: 0 auto 40px;
}

.heritage-section ul {
  list-style: none;
  padding: 0;
}

.heritage-section li {
  background: #2c2c2c;
  margin: 10px 0;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 16px;
  color: #eee;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.language-switch {
  position: absolute;
  top: 15px;
  right: 20px;
}

.language-switch a {
  margin-left: 10px;
  text-decoration: none;
  font-size: 20px;
  color: #fff;
  transition: transform 0.2s;
}

.language-switch a:hover {
  transform: scale(1.2);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #5e3b1d;
  padding: 15px 20px;
}

.language-switch a {
  margin-left: 10px;
  font-size: 20px;
  text-decoration: none;
}

.language-switch a:hover {
  opacity: 0.7;
}

.site-title {
  color: #fff4e0;
  font-size: 28px;
  font-family: 'Georgia', serif;
  margin: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #803314; /* тёмно-коричневый */
  padding: 15px 40px;
  font-family: sans-serif;
}

.menu {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.language-switcher {
  font-weight: bold;
}

.language-switcher a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
  font-size: 14px;
}

.language-switcher a:hover,
.menu li a:hover {
  text-decoration: underline;
}

.hero {
    padding: 60px 20px;
    text-align: center;
    background-color: #faf4ed;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-text {
    max-width: 500px;
}

.hero-image {
    max-width: 200px;
    height: auto;
}



