@font-face {
    font-family: 'Klukva';
    src: url('../fonts/Klukva/Klukva_version_01.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* Общий макет: футер всегда внизу */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Klukva', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #f5f5f5;
  font-size: 20px;
  /* Фон с изображением + затемнением */
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), /* затемнение */
    url('../img/background.jpg') no-repeat center center fixed !important; /* картинка */
  background-size: cover !important; 
}

/* Контент занимает всё пространство между хедером и футером */
main {
  flex: 1;
}

/* Заголовки */
h1, h2, h3, h4, h5 {
  color: #ffcc66;
  text-shadow: 0 0 8px rgba(255, 204, 102, 0.6);
}

/* Кнопки */
.btn-warning {
  background: linear-gradient(135deg, #ffcc66, #ff9966);
  border: none;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255, 153, 102, 0.6);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-warning:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 153, 102, 0.9);
}

/* Навбар */
.navbar {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(6px);
}

.navbar-brand span {
  color: #ffcc66;
  text-shadow: 0 0 6px rgba(255, 204, 102, 0.6);
}

/* Карточки/блоки */
section .col-md-4 {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}

section .col-md-4:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

/* Футер */
footer {
  background: rgba(0, 0, 0, 0.9);
  color: #bbb;
  font-size: 14px;
  letter-spacing: 0.5px;
}
