/* ===== Общие настройки ===== */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ===== Фон флага Ичкерии =====
   Пропорции:
   60% зелёный (#007847)
   10% белый (#ffffff)
   10% красный (#d71a28)
   10% белый (#ffffff)
   10% зелёный (#007847)
*/
.flag {
  position: relative;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #007847 0%,
    #007847 60%,
    #ffffff 60%,
    #ffffff 70%,
    #d71a28 70%,
    #d71a28 80%,
    #ffffff 80%,
    #ffffff 90%,
    #007847 90%,
    #007847 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* выравниваем сверху */
}

/* ===== Контейнер герба ===== */
.emblem-container {
  position: absolute;
  top: 30%; /* середина зелёной области (60% / 2) */
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Сам герб ===== */
.emblem {
  max-width: 40vmin;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
  transition: transform 0.8s ease, filter 0.8s ease;
}

/* ===== Эффект при наведении ===== */
.emblem:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.6));
}

/* ===== Адаптация ===== */
@media (max-width: 768px) {
  .emblem {
    max-width: 60vmin;
  }
}

@media (max-width: 480px) {
  .emblem {
    max-width: 70vmin;
  }
}
