/* ------------------------------
   Základné nastavenie
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body, html {
  height: 100%;
  background-color: #111111;
  color: white;
}

/* ------------------------------
   Navbar
------------------------------ */
.navbar {
  position: fixed;
  background: #111111;
  top: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  z-index: 999;
}

.navbar-container {
  display: flex;
  gap: 30px;
}

/* základné linky */
.nav-link {
  text-decoration: none;
  color: #ffffff; /* biela farba pre neaktívne */
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  transition: 0.3s;
  position: relative;
}

/* hover efekt */
.nav-link:hover {
  color: #ff8c1a;
}

/* linka / podčiarknutie pre hover */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ff8c1a;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* --------------------------
   AKTÍVNA STRÁNKA
---------------------------*/
.nav-link.active {
  color: #ff8c1a; /* svietiaca oranžová */
}

.nav-link.active::after {
  width: 100%; /* podčiarknuté, stále aktívne */
  background: #ff8c1a;
}

/* Discord link – nech je default */
.nav-link.discord {
  background: #5865F2;
  border-radius: 20px;
  padding: 10px 18px;
  color: white;
  font-weight: bold;
}

.nav-link.discord:hover {
  background: #4752c4;
}

.nav-link:hover::after {
  width: 100%;
}

/* Discord button */
.nav-link.discord {
  background: #ff8c1a;
  border-radius: 20px;
  padding: 10px 18px;
  color: #1a0f08;
  font-weight: bold;
}

.nav-link.discord:hover {
  background: #ffae42;
}

/* ------------------------------
   Hero sekcia
------------------------------ */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 80vh; /* výška hero */
  background: radial-gradient(circle at top, #25201a, #f78d02);
  padding: 40px 20px; /* vnútorná medzera */
}

/* HLAVNÝ TEXT */
.hero h1 {
  font-size: 64px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px; /* medzera pod textom */
}

/* zvýraznenie názvu */
.hero h1 span {
  color: #ff8c1a;
  text-shadow: 0 0 15px rgba(216, 109, 2, 0.6);
}
.hero {
  position: relative;  /* pre absolútnu pozíciu, ak budeš potrebovať */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertikálne centrovanie */
  align-items: center;     /* horizontálne centrovanie */
  text-align: center;
  background: radial-gradient(circle at top, #181818, #111111);
}

.hero-logo {
  width: 100px;  /* veľkosť loga */
  height: auto;
}

/* PODTEXT */
.hero p {
  font-size: 20px;
  color: #fc9b0b;
  margin-bottom: 60px; /* veľká medzera pred VIP kartou */
  letter-spacing: 2px;
  text-transform: uppercase;

}

/* ------------------------------
   Ikona
------------------------------ */
.hero .icon {
  margin-top: -120px;
}

.hero .icon img {
  width: 60px;
  height: 60px;
  animation: bounce 2s infinite;
  filter: drop-shadow(0 0 10px #ff8c1a);
}

/* ------------------------------
   Animácia
------------------------------ */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ------------------------------
   Logo
------------------------------ */
.logo {
  position: fixed;
  top: 20px;
  left: 350px;
  z-index: 100;
}

.logo img {
  width: 50px;
}

.logo-text {
  position: fixed;
  top: 33px;
  left: 400px;
  z-index: 100;
  color: #ffae42;
  font-size: 1.3rem;
  font-weight: 700;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 30px;
}

.nav-logo img {
  width: 36px;
  height: 36px;
}

.nav-logo span {
  font-size: 18px;
  font-weight: 700;
  color: #ff8c1a;
}
.nav-link.discord::after {
  display: none;
}
/* ------------------------------
   STAFF GRID
------------------------------ */
.staff-grid {
  background: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;   /* úplne minimalny padding hore/dole */
  margin-top: 10px;  /* veľmi blízko hero textu */
}

/* STAFF CARD */
.staff-card {
  background: #1a1919;
  backdrop-filter: blur(12px);
  border: 2px solid #202020; /* border inej farby (jemná oranžová) */
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  width: 300px;
  transition: all 0.3s ease;
}
.staff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgb(136, 88, 0);
}

/* Minecraft hlava */
.staff-card img {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* meno */
.staff-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* RANK BUTTON – moderný pill */
.staff-rank {
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: default;
  background: linear-gradient(135deg, #ff4d47, #ffcc33);
  color: #4d4d4d;
  transition: all 0.25s ease;
}

.staff-rank:hover {
  background: linear-gradient(135deg,#ffcc33,#ffb347);
  transform: scale(1.05);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width:600px){
  .staff-grid {
    gap:25px;
    padding:50px 15px;
  }
  .staff-card img { width:100px; height:100px; }
}
/* Rank button farby pre rôzne role */
.staff-rank.owner {
  background: linear-gradient(135deg, #f84747, #da0505);
  color: #ffffff;
}

.staff-rank.assistant {
  background: linear-gradient(135deg, #61a30b, #33af01); /* jemnejšia oranžová */
  color: #ffffff;
}
/* Základ pre všetky hero tímové sekcie */
.team-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

/* Názov tímu */
.team-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

/* Popis tímu */
.team-text {
  font-size: 18px;
  color: #f0f0f0;
  max-width: 800px;
  line-height: 1.6;
}

/* ----------------------------
   INDIVIDUAL TEAM COLORS
---------------------------- */

/* Goblin */
.team-goblin .team-title {
  color: #ffcc00;
}

/* Human */
.team-human .team-title {
  color: #b5b5b5;
}

/* Atlantis */
.team-atlantis .team-title {
  color: #00ffff;
}

/* Elf */
.team-elf .team-title {
  color: #00ff00;
}
/* ==============================
   CHANGELOG SECTION
============================== */

.changelog {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

/* NADPIS */
.changelog-title {
  text-align: center;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 60px;
  color: #ffb347;
  text-shadow:
    0 0 15px rgba(255, 165, 0, 0.6),
    0 0 35px rgba(255, 165, 0, 0.25);
}

/* GRID – KARTY VEDĽA SEBA */
.changelog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

/* KARTA */
.changelog-card {
  background: rgba(255, 165, 0, 0.08);
  border: 1px solid rgba(255, 165, 0, 0.35);
  border-radius: 20px;
  padding: 28px 30px;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 30px rgba(255, 165, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.changelog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 45px rgba(255, 165, 0, 0.35);
}

/* VERZIA + DÁTUM */
.changelog-date {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd180;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 165, 0, 0.35);
}

/* ZOZNAM */
.changelog-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* POLOŽKY */
.changelog-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #fff2e0;
  opacity: 0.95;
}

/* BULLET (NAMIETO EMOJI – ČISTEJŠIE) */
.changelog-card li::before {
  content: "•";
  color: #ffb347;
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

/* TYPOVÉ ZMENY */
.changelog-card li.add {
  color: #ffe0b2;
}

.changelog-card li.fix {
  color: #fff3cd;
}

.changelog-card li.change {
  color: #ffd699;
}

/* LATEST UPDATE – PRVÁ KARTA */
.changelog-card:first-child .changelog-date {
  color: #ffcc80;
  text-shadow: 0 0 12px rgba(255, 165, 0, 0.8);
}
/* ===============================
   FOOTER DESIGN
=============================== */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;

  backdrop-filter: blur(12px); /* jemný blur */
  color: #fff2e0;
  position: relative;
  bottom: 0;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  flex-wrap: wrap; /* pre mobil */
}

/* Ľavá časť – copyright */
.footer-left {
  font-size: 14px;
  font-weight: 600;
  color: #ffb347;
  margin-bottom: 8px; /* pre mobil */
}

/* Pravá časť – odkazy */
.footer-right {
  display: flex;
  gap: 25px;
  flex-wrap: wrap; /* pre mobil */
}

/* Footer odkazy */
.footer-link {
  color: #fff2e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 8px;
  transition: 0.3s;
}

/* Hover efekt – svietiaca oranžová */
.footer-link:hover {
  color: #ffb347;
  text-shadow: 0 0 8px rgba(255,165,26,0.7), 0 0 12px rgba(255,165,26,0.4);
}

/* Responsívny mobil */
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 25px;
  }

  .footer-right {
    gap: 15px;
  }
}
/* =========================
   VIP – Pulse card design
========================= */
.vip-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.vip-container {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.vip-card {
  position: relative;
  background: rgba(44, 44, 44, 0.308);
  border: 2px solid rgba(106, 26, 255, 0.6);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(15px);
  box-shadow: 0 0 40px rgba(144, 26, 255, 0.15);
  max-width: 360px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.vip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 55px rgba(133, 26, 255, 0.28);
}

/* VIP name nad border s Pulse efektom */
.vip-header {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: linear-gradient(135deg, #7e47ff, #be33ff);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 30px;
  font-size: 20px;
  border-radius: 30px;
  text-align: center;
  z-index: 10;
  text-shadow: 0 0 8px rgba(126, 71, 255, 0.5);

  /* Pulse animácia */
  animation: pulse 2s infinite;
}

/* Definícia Pulse animácie */
@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
    text-shadow: 0 0 8px rgba(126, 71, 255, 0.5);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    text-shadow: 0 0 20px rgba(189, 51, 255, 0.8);
  }
  100% {
    transform: translateX(-50%) scale(1);
    text-shadow: 0 0 8px rgba(126, 71, 255, 0.5);
  }
}
.vip-price {
  font-size: 70px; /* predtým bolo 34px */
  font-weight: 800; /* ešte výraznejšie */
  color: white;
  margin-bottom: 26px;
  margin-top: 20px; 
}

.vip-price .per-month {
  font-size: 20px; /* vedľa ceny menšie písmo */
  color: #8a8a8a;
  margin-left: -10px;
}

/* Benefits list – zarovnanie do lava */
.vip-benefits {
 
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  text-align: left;
}

/* Benefits list – s vlastnou ikonou mark.png */
.vip-benefits li {
  font-size: 16px;
  color: #fff8de;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px; /* viac miesta pre ikonku */
}

.vip-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;  /* veľkosť ikony */
  height: 20px;
  background-image: url('mark.png'); /* tvoja ikonka */
  background-size: contain;
  background-repeat: no-repeat;
}


/* Buy button */
.vip-btn {
  display: block; /* aby sa dal centrovať */
  margin: 20px auto 0 auto; /* 20px hore, automatické centrovanie */
  padding: 16px 20px; /* väčší padding = väčšie tlačidlo */
  border-radius: 30px;
  background: linear-gradient(135deg, #7e47ff, #be33ff);
  color: white;
  font-weight: 700;
  font-size: 20px; /* väčší text */
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vip-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(189, 51, 255, 0.5);
}

/* Responsívne */
@media (max-width:600px) {
  .vip-card {
    padding: 30px 20px;
  }
  .vip-header { font-size: 32px; }
  .vip-price { font-size: 28px; }
  .vip-benefits li { font-size: 15px; }
}
/* ------------------------------
   View Counter
------------------------------ */
.views {
  margin: 40px 0 60px;
  font-size: 16px;
  text-align: center;
  color: #bbb;
  text-shadow: 0 0 6px rgba(180, 120, 255, 0.3);
}
