/* Основни стилови */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0a0a0a url('../assets/bg-fire.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  animation: fireGlow 12s ease-in-out infinite;
  position: relative;
  overflow-x: hidden;
}

/* Навигација */
nav {
  background: rgba(0,0,0,0.8);
  padding: 10px;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: #e60000;
}

/* Лого */
.logo img {
  max-width: 150px;
  margin: 20px auto;
  display: block;
}

/* Наслови */
h1 {
  text-align: center;
  font-size: 2.5em;
  color: #fff;
}

.slogan {
  text-align: center;
  color: #e60000;
  font-size: 1.5em;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background: rgba(0,0,0,0.8);
  text-align: center;
  padding: 10px;
  font-size: 0.9em;
}

/* Галерија */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border: 2px solid #e60000;
}

/* Настани */
.events .event {
  display: flex;
  background: rgba(0,0,0,0.7);
  margin: 15px 0;
  padding: 10px;
  border-left: 5px solid #e60000;
}

.events .date {
  font-size: 1.2em;
  font-weight: bold;
  color: #e60000;
  margin-right: 15px;
}

.events .details h3 {
  margin: 0;
  color: #fff;
}

/* Продажба */
.sales {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product {
  background: rgba(0,0,0,0.7);
  padding: 15px;
  text-align: center;
  border: 2px solid #e60000;
}

.product img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.product h3 {
  color: #fff;
}

.product button {
  background: #e60000;
  color: #fff;
  border: none;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer;
}

.product button:hover {
  background: #b30000;
}

/* Контакт форма */
.contact form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

.contact label {
  margin-top: 10px;
  color: #fff;
}

.contact input, .contact textarea {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #e60000;
  background: #111;
  color: #fff;
}

.contact button {
  margin-top: 15px;
  background: #e60000;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.contact button:hover {
  background: #b30000;
}

/* За нас */
.about {
  max-width: 800px;
  margin: auto;
  background: rgba(0,0,0,0.7);
  padding: 20px;
  border-left: 5px solid #e60000;
}

.about h2 {
  color: #e60000;
  margin-top: 20px;
}

.about p, .about ul {
  color: #fff;
  line-height: 1.6;
}

.about ul {
  list-style: square;
  margin-left: 20px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0a0a0a url('../assets/bg-fire.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  display: flex;              /* активира flexbox */
  flex-direction: column;     /* елементите ќе се редат вертикално */
  justify-content: center;    /* центрирање по висина */
  align-items: center;        /* центрирање по ширина */
  min-height: 100vh;          /* цел екран */
  text-align: center;         /* текстот да биде по средина */
}


