@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-image: url('background.png');
  background-size: cover;         /* Заема целия екран, пропорционално */
  background-position: center;    /* Центрира го */
  background-repeat: no-repeat;   /* Без повторения */
  background-attachment: fixed;   /* Стои неподвижен при скрол */
  color: #3e2f20;
}

header {
  text-align: center;
  background: #fff;
  padding-bottom: 2rem;
}

.hero {
  width: 100%;
  height: auto;
  border-bottom: 3px solid #dcb57b;
}

h1 {
  font-size: 2.5rem;
  margin: 1rem 0 0.3rem;
  color: #37210f;
}

.tagline {
  font-size: 1.1rem;
  color: #6b4e2e;
}

.btn-steam {
  background-color: #1b2838;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-steam:hover {
  background-color: #2a475e;
}

section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.gallery img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
}

.achievements {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.achievement {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 140px;
}
.achievement img {
  width: 64px;
  height: 64px;
}
.achievement p {
  font-weight: 600;
  margin-top: 10px;
}

footer {
  text-align: center;
  background-color: #1b2838;
  color: #fff;
  padding: 15px;
  font-size: 0.9rem;
}