/* ================================================
   INDEX PAGE — Specific Styles
   ================================================ */

/* === HERO === */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(139,0,0,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(214,0,0,0.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(242,169,0,0.08) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 60px,
      rgba(242,169,0,0.025) 60px,
      rgba(242,169,0,0.025) 61px
    );
}

.hero-stripes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow .star { color: var(--gold); font-size: 1rem; }

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hero-title-main {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(242,169,0,0.4);
  letter-spacing: -2px;
}

.hero-title-sub {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  letter-spacing: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero Logo */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: rotateRing linear infinite;
}

.ring-outer {
  inset: 0;
  border-color: rgba(242,169,0,0.3);
  animation-duration: 20s;
}

.ring-middle {
  inset: 20px;
  border-color: rgba(214,0,0,0.4);
  border-style: dashed;
  animation-duration: 15s;
  animation-direction: reverse;
}

@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-logo-inner {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--red-dark) 0%, var(--black) 100%);
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(242,169,0,0.3), inset 0 0 40px rgba(214,0,0,0.3);
  position: relative;
  z-index: 1;
}

.hero-icon-tiger {
  font-size: 5rem;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(242,169,0,0.6);
  margin-bottom: 8px;
}

.hero-stars-row {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 8px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === STATS === */
.stats-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, rgba(139,0,0,0.5) 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(242,169,0,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(242,169,0,0.4);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* === ABOUT === */
.about-section { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
#valuesGrid { display: contents; }

.value-item {
  background: var(--black-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
  color: var(--gold);
}

.value-item h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === TAGLINES === */
.taglines-section {
  background: linear-gradient(135deg, #0A0A0A 0%, rgba(139,0,0,0.2) 50%, #0A0A0A 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 40px 0;
}

.taglines-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.tagline-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 700;
  color: var(--white);
}

.tagline-item i { color: var(--gold); font-size: 0.9rem; }

.tagline-divider {
  color: var(--border-gold);
  font-size: 1.5rem;
}

/* === LATEST NEWS === */
.latest-news-section { background: var(--black-mid); }

.news-card .news-thumb {
  height: 200px;
  overflow: hidden;
  background: var(--black-card);
}

.news-card .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img { transform: scale(1.05); }

.news-thumb-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--border-gold);
  background: linear-gradient(135deg, var(--black-card), var(--red-dark));
}

.news-body { padding: 20px; }

.news-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.news-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-date i { color: var(--gold); }

/* === CTA === */
.cta-section { padding: 80px 0; background: var(--black); }

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
  padding: 70px 60px;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,0,0,0.6) 0%, rgba(10,10,10,0.95) 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(242,169,0,0.03) 50px,
      rgba(242,169,0,0.03) 51px
    );
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-content h2 span { color: var(--gold); }

.cta-content p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-right { order: -1; }
  .hero-logo-wrap { width: 220px; height: 220px; }
  .hero-logo-inner { width: 160px; height: 160px; }
  .hero-icon-tiger { font-size: 3.5rem; }
  .hero-actions { justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .tagline-divider { display: none; }
  .cta-card { padding: 50px 24px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
}