/* ============================================================
   GOGOREJEKI – Homepage Styles (index.css)
   ============================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-height);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%,  rgba(155,48,255,.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 65%, rgba(0,229,255,.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, #0C1022 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,38,69,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,38,69,.55) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1.8rem; padding: 0 1.5rem;
  animation: heroUp .9s cubic-bezier(.22,1,.36,1) both;
}
@keyframes heroUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-logo {
  width: 150px; height: 150px; border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 0 55px rgba(155,48,255,.55), 0 0 110px rgba(245,197,24,.2);
  animation: logoPulse 3.2s ease-in-out infinite;
}
.hero-logo-fallback {
  width: 150px; height: 150px; border-radius: 32px;
  background: linear-gradient(135deg, var(--purple-dark), var(--navy-card));
  border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', monospace; font-size: 2rem; font-weight: 900;
  color: var(--gold);
  box-shadow: 0 0 55px rgba(155,48,255,.55);
  animation: logoPulse 3.2s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { box-shadow: 0 0 55px rgba(155,48,255,.5),  0 0 110px rgba(245,197,24,.18); }
  50%      { box-shadow: 0 0 80px rgba(155,48,255,.75), 0 0 150px rgba(245,197,24,.32); }
}

.hero-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1rem;
  border: 1px solid rgba(155,48,255,.5); border-radius: 999px;
  background: rgba(155,48,255,.08);
  font-family: 'Rajdhani', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--purple-glow);
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.8rem, 9vw, 6rem);
  font-weight: 900; line-height: .95;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -.01em;
}
.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  color: var(--text-muted); max-width: 540px; line-height: 1.75;
  font-weight: 300;
}
.hero-sub strong { color: var(--gold); font-weight: 600; }

.hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: flex; gap: 2.8rem; flex-wrap: wrap; justify-content: center;
  padding-top: .5rem;
  border-top: 1px solid var(--navy-border);
  width: 100%; max-width: 580px;
}
.hstat-num {
  font-family: 'Orbitron', monospace; font-size: 1.7rem; font-weight: 700;
  color: var(--gold); text-align: center;
}
.hstat-lbl {
  font-size: .73rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); text-align: center; margin-top: .15rem;
}

/* ── NEWS SECTION ── */
.news-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 1.4rem;
  margin-top: 2.5rem;
}
.news-featured {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer; transition: border-color var(--transition);
}
.news-featured:hover { border-color: var(--purple-glow); }

.news-feat-thumb {
  height: 210px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; position: relative;
  background: linear-gradient(135deg, #180840, #0A1540);
}
.news-feat-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--navy-card));
}
.news-feat-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.news-cat-tag {
  display: inline-block;
  padding: .2rem .5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--purple-glow);
  background: rgba(155,48,255,.1); border: 1px solid rgba(155,48,255,.25);
  border-radius: 4px; width: fit-content;
}
.news-feat-title {
  font-family: 'Rajdhani', sans-serif; font-size: 1.25rem; font-weight: 700;
  line-height: 1.35; color: var(--text-main);
}
.news-feat-excerpt { font-size: .87rem; color: var(--text-muted); line-height: 1.65; flex: 1; font-weight: 300; }
.news-feat-meta {
  display: flex; justify-content: space-between;
  font-size: .75rem; color: var(--text-muted);
  border-top: 1px solid var(--navy-border); padding-top: .75rem;
}

.news-list { display: flex; flex-direction: column; gap: .9rem; }
.news-mini {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 12px; padding: 1rem;
  cursor: pointer; transition: border-color var(--transition);
}
.news-mini:hover { border-color: var(--gold-dark); }
.news-mini-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #180840, #0A1540);
}
.news-mini-cat  { font-size: .65rem; color: var(--purple-glow); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: .25rem; }
.news-mini-title { font-family: 'Rajdhani', sans-serif; font-size: .92rem; font-weight: 700; line-height: 1.35; }
.news-mini-date  { font-size: .7rem; color: var(--text-muted); margin-top: .3rem; }

/* ── PROMO STRIP ── */
.promo-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.2rem; margin-top: 2.5rem;
}
.promo-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--navy-border);
  cursor: pointer; transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.promo-thumb {
  height: 130px; display: flex; align-items: center;
  justify-content: center; font-size: 3rem; position: relative;
}
.promo-body { background: var(--navy-card); padding: 1.1rem; }
.promo-tag-txt {
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: .3rem;
}
.promo-name { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.promo-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: .9rem; }

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.1rem; margin-top: 2.5rem;
}
.feat-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: 14px; padding: 1.7rem; position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.feat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover { transform: translateY(-3px); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 48px; height: 48px; border-radius: 11px;
  background: linear-gradient(135deg, rgba(155,48,255,.2), rgba(155,48,255,.05));
  border: 1px solid rgba(155,48,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.feat-name { font-family: 'Rajdhani', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.feat-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .news-layout { grid-template-columns: 1fr; }
  .promo-strip  { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .promo-strip   { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats    { gap: 1.8rem; }
}
