/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: black;
}


/* HERO HEADER (SLIKA) */
.hero-header {
  position: relative;
  width: 100%;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background: url("gg2.webp") center/cover no-repeat;
}



/* DARK OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.55);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;

  color: rgb(255, 0, 0);

  animation: softFade 1.5s ease;
}

.hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  letter-spacing: 4px;
}

.hero-content p {
  margin-top: 20px;
  color: #ddd;
  font-family: 'Cinzel', serif;
  font-size: 18px;
}

/* PARTICLES CONTAINER */
.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

  overflow: hidden;
  z-index: 1;
}

/* PARTICLES */
.particle {
  position: absolute;

  width: 3px;
  height: 3px;

  background: #d4af37; /* GOLD */

  border-radius: 50%;
  opacity: 0.5;

  box-shadow: 0 0 6px rgba(212, 175, 55, 0.9);

  animation: float 12s linear infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  from {
    transform: translateY(100vh);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  to {
    transform: translateY(-10vh);
    opacity: 0;
  }
}

/* FADE ANIMATION */
@keyframes softFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== */
/* 🔥 SAMURAI BUTTONS */
/* ===================== */

.samurai-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;

  padding: 60px 0;

  background: rgba(22, 22, 17, 0.616);
}

.samurai-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;

  padding: 60px 0;

  background: rgba(167, 160, 138, 0.096);
}

/* BASE BUTTON */
.samurai-btn {
  padding: 14px 40px;

  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 2px;

  text-decoration: none;

  border: 2px solid #5c0b00;

  color: #ffffff;

  background: transparent;

  position: relative;

  transition: 0.2s ease;
}

/* 🔴 GOLD / RED STYLE (tvoje boje) */
.samurai-btn.gold {
  border-color: #5c0b00;
  color: #ffffff;
}

/* 🔥 HOVER = samo boja teksta + lagani glow */
.samurai-btn.gold:hover {
  color: rgba(219, 1, 1, 0.884);

  box-shadow: 0 0 20px rgba(128, 19, 0, 0.35);

  text-shadow: 0 0 6px rgba(255, 0, 0, 0.199);
}

.samurai-btn {
  padding: 14px 40px;

  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 2px;

  text-decoration: none;

  border: 2px solid #5c0b00;

  color: #ffffff;

  background: transparent;

  position: relative;

  transition: 0.2s ease;
}

/* 🔴 GOLD / RED STYLE (tvoje boje) */
.samurai-btn.dark {
  border-color: #5c0b00;
  color: #ffffff;
}

/* 🔥 HOVER = samo boja teksta + lagani glow */
.samurai-btn.dark:hover {
  color: rgba(219, 1, 1, 0.884);

  box-shadow: 0 0 20px rgba(128, 19, 0, 0.35);

  text-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
}


footer {
  text-align: center;
  padding: 20px;
  color: #777;
  background: #050505;
}







/* =========================
   RESPONSIVE - HERO STRANICA
========================= */

/* TABLET */
@media (max-width: 900px) {

  .hero-header {
    height: 80vh;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 3rem;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .samurai-buttons {
    gap: 15px;
    padding: 30px 15px;
  }
}

/* MOBITEL */
@media (max-width: 600px) {

  .hero-header {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  /* gumbi jedan ispod drugog */
  .samurai-buttons {
    flex-direction: column;
    align-items: center;
  }

  .samurai-btn {
    width: 90%;
    text-align: center;
    padding: 12px 20px;
  }
}

/* MALI MOBITEL */
@media (max-width: 400px) {

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }
}



















/* TABLET */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .samurai-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

/* MOBITEL */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .samurai-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .samurai-btn {
    width: 80%;
    text-align: center;
  }
}

/* MALI MOBITELI */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .samurai-btn {
    width: 100%;
    padding: 12px;
  }
}