:root {
  --primary-blue: #0b1f4d;
  --dark-blue: #020617;
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --gold-medium: #cdbfa2;
  --red-accent: #c62828;
  --white: #ffffff;
  
  /* FONT */
  --font-display: "Cinzel", serif;
  --font-body: "Crimson Pro", serif;

}

/* RESET ASTRA */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--primary-blue);
}

section[id] {
  scroll-margin-top: calc(var(--site-header-height, 72px) + 18px);
}
/* HAPUS BACKGROUND & LAYER ASTRA BAWAAN */
.site-header,
.main-header-bar,
.ast-primary-header-bar,
.ast-header-break-point .main-header-bar {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

#masthead,
header.ast-header-break-point {
  display: none !important;
}

.text-white {
  color: var(--white);
}
/* white bold */
.text-white-bold {
  color: var(--white);
  font-weight: bold;
}

/* =====================================================
   CUSTOM HEADER — CLEAN RESPONSIVE CSS
   ===================================================== */

:root {
  --site-header-height: 72px;

  --header-bg: rgba(7, 22, 59, 0.96);
  --header-bg-scrolled: rgba(4, 14, 40, 0.98);
  --header-border: rgba(212, 175, 55, 0.16);

  --header-gold: #d4af37;
  --header-white: #fffaf0;
  --header-muted: rgba(255, 250, 240, 0.76);

  --header-x: clamp(18px, 2.6vw, 40px);
  --header-y: 11px;

  --brand-logo-size: 42px;
  --brand-title-size: clamp(0.92rem, 1.05vw, 1.08rem);
  --brand-subtitle-size: 0.62rem;

  --nav-gap: clamp(12px, 1.35vw, 24px);
  --nav-font-size: clamp(0.66rem, 0.68vw, 0.78rem);
}

/* Astra default header tetap disembunyikan */
.site-header,
.main-header-bar,
.ast-primary-header-bar,
.ast-header-break-point .main-header-bar {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

#masthead,
header.ast-header-break-point {
  display: none !important;
}

/* Main custom header */
.gema-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  width: 100%;
  min-height: var(--site-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);
  padding: var(--header-y) var(--header-x);
  background:
    linear-gradient(
      180deg,
      rgba(10, 31, 78, 0.97),
      var(--header-bg)
    );
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(12px);
  box-sizing: border-box;
  overflow: visible;
  isolation: isolate;
  transition:
    min-height 0.25s ease,
    padding 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.gema-header.is-scrolled {
  --site-header-height: 64px;
  --brand-logo-size: 38px;

  background:
    linear-gradient(
      180deg,
      rgba(5, 17, 45, 0.99),
      var(--header-bg-scrolled)
    );
  border-bottom-color: rgba(212, 175, 55, 0.24);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

/* Brand */
.gema-brand {
  min-width: 0;
  max-width: 310px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.gema-logo-wrap {
  position: relative;
  width: var(--brand-logo-size);
  height: var(--brand-logo-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--brand-logo-size);
}

.gema-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.14),
    transparent 70%
  );
}

.gema-header .logo {
  display: block;
  width: var(--brand-logo-size);
  height: var(--brand-logo-size);
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.brand-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.brand-title {
  color: var(--header-gold);
  font-family: var(--font-display, "Cinzel", Georgia, serif);
  font-size: var(--brand-title-size);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.115em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--header-muted);
  font-size: var(--brand-subtitle-size);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Desktop nav */
.gema-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--nav-gap);
  margin-left: auto;
}

.gema-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 250, 240, 0.9);
  font-family: var(--font-display, "Cinzel", Georgia, serif);
  font-size: var(--nav-font-size);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.125em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.gema-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--header-gold),
    rgba(212, 175, 55, 0.24)
  );
  transition: width 0.25s ease;
}

.gema-nav a:hover,
.gema-nav a:focus,
.gema-nav a.is-active {
  color: var(--header-gold);
}

.gema-nav a:hover::after,
.gema-nav a:focus::after,
.gema-nav a.is-active::after {
  width: 100%;
}

/* Menu button */
.gema-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.gema-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--header-white);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.gema-menu-toggle:hover {
  border-color: rgba(212, 175, 55, 0.42);
  background: rgba(255, 255, 255, 0.055);
}

.gema-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.gema-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.gema-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   Laptop kecil
   ===================================================== */

@media (max-width: 1366px) {
  :root {
    --site-header-height: 68px;
    --header-x: 26px;
    --header-y: 10px;

    --brand-logo-size: 38px;
    --brand-title-size: 0.92rem;
    --brand-subtitle-size: 0.56rem;

    --nav-gap: 16px;
    --nav-font-size: 0.66rem;
  }

  .gema-brand {
    max-width: 280px;
    gap: 10px;
  }

  .gema-nav a {
    letter-spacing: 0.105em;
  }
}

/* Laptop kecil dengan zoom browser / tablet landscape */
@media (max-width: 1180px) {
  :root {
    --site-header-height: 66px;
    --header-x: 20px;
    --brand-logo-size: 38px;
    --brand-title-size: 0.88rem;
    --brand-subtitle-size: 0.54rem;
  }

  .gema-header {
    gap: 14px;
  }

  .gema-brand {
    max-width: min(72vw, 330px);
  }

  .gema-menu-toggle {
    display: inline-flex;
  }

  .gema-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    z-index: 100000;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;

    max-height: calc(100vh - var(--site-header-height) - 24px);
    padding: 12px;
    overflow-y: auto;

    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 18px;
    background:
      linear-gradient(
        180deg,
        rgba(10, 31, 78, 0.99),
        rgba(5, 17, 45, 0.99)
      );
    box-shadow:
      0 22px 55px rgba(0, 0, 0, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .gema-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .gema-nav a {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    padding: 12px 13px;
    border-radius: 12px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    line-height: 1.25;
  }

  .gema-nav a::after {
    display: none;
  }

  .gema-nav a:hover,
  .gema-nav a:focus,
  .gema-nav a.is-active {
    color: var(--header-gold);
    background: rgba(255, 255, 255, 0.055);
  }

  body.gema-menu-open {
    overflow: hidden;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --site-header-height: 62px;
    --header-x: 14px;
    --header-y: 9px;

    --brand-logo-size: 36px;
    --brand-title-size: 0.78rem;
    --brand-subtitle-size: 0.5rem;
  }

  .gema-brand {
    gap: 9px;
    max-width: calc(100vw - 86px);
  }

  .brand-title {
    letter-spacing: 0.075em;
  }

  .brand-subtitle {
    letter-spacing: 0.075em;
  }

  .gema-menu-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  :root {
    --brand-title-size: 0.74rem;
  }

  .brand-subtitle {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .gema-header,
  .gema-nav,
  .gema-nav a,
  .gema-menu-toggle,
  .gema-menu-toggle span {
    transition: none;
  }
}

.gema-nav a:hover,
.gema-nav a.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}
.gema-hero {
  height: calc(100vh - 80px);
  background: radial-gradient(
    circle at center,
    var(--primary-blue),
    var(--dark-blue)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gema-circle,
.gema-circle.small {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 3px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  animation: rippleWave 3s linear infinite;
  opacity: 0;
}

.gema-circle.small {
  animation-delay: 1.5s;
}

.gema-logo {
  width: 240px;
  filter: drop-shadow(0 0 25px var(--gold));
  margin-bottom: 25px;
}

.gema-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Soundwave */
.soundwave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 30px;
  margin-bottom: 40px;
}

.soundwave .bar {
  display: block;
  width: 3px;
  background-color: var(--gold);
  border-radius: 3px;
  animation: soundwave 1s ease-in-out infinite alternate;
}

.soundwave .bar:nth-child(1) {
  height: 10px;
  animation-delay: 0.1s;
  background-color: rgba(212, 175, 55, 0.5);
}
.soundwave .bar:nth-child(2) {
  height: 16px;
  animation-delay: 0.2s;
  background-color: rgba(212, 175, 55, 0.7);
}
.soundwave .bar:nth-child(3) {
  height: 24px;
  animation-delay: 0.3s;
}
.soundwave .bar:nth-child(4) {
  height: 14px;
  animation-delay: 0.4s;
}
.soundwave .bar:nth-child(5) {
  height: 28px;
  animation-delay: 0.5s;
}
.soundwave .bar:nth-child(6) {
  height: 18px;
  animation-delay: 0.4s;
}
.soundwave .bar:nth-child(7) {
  height: 22px;
  animation-delay: 0.3s;
}
.soundwave .bar:nth-child(8) {
  height: 12px;
  animation-delay: 0.2s;
  background-color: rgba(212, 175, 55, 0.7);
}
.soundwave .bar:nth-child(9) {
  height: 8px;
  animation-delay: 0.1s;
  background-color: rgba(212, 175, 55, 0.5);
}

@keyframes soundwave {
  0% {
    transform: scaleY(0.5);
  }
  100% {
    transform: scaleY(1);
  }
}

.gema-tags {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gema-tags span {
  padding: 8px 24px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 30px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: default;
}

.gema-tags span.active,
.gema-tags span:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

.section {
  min-height: 100vh;
  padding: 100px 20px;
  background: #fff;
  color: #000;
  text-align: center;
}

@keyframes rippleWave {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Scroll indicator animation */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  animation: bounce 2s infinite;
  z-index: 10;
  cursor: pointer;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}



/* TYPOGRAPHY SYSTEM */
.text-gold-title {
  font-family:  var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  text-align: center;
  color: #d4af37;
}

.text-subtitle {
  font-family:  var(--font-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 5px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
}

.text-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 4.8px;
  text-transform: uppercase;
  text-align: center;
  color: #d4af37;
}

.text-quote {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #cdbfa2;
  max-width: 700px;
  margin: 0 auto;
}

.shimmer-gold {
  background: linear-gradient(90deg, #d4af37 0%, #f5d76e 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Responsive */



.section-title {
  font-family:  var(--font-display);
  font-size: 48px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* LAGU SECTION */
.lagu-section {
  background-color: #0b132b;
  padding: 100px 20px;
}

.lagu-container {
  max-width: 900px;
  margin: 0 auto;
}

.lagu-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.lagu-section-subtitle {
  font-family:  var(--font-display);
  font-size: 14px;
  color: #ff3b3b;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.lagu-quote {
  color: #cdbfa2;
  margin-top: 0;
}

.lagu-card {
  background-color: #121e3d;
  border-radius: 16px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.lagu-top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff3b3b, #ff8c00, #ffb300);
}

.lagu-card-content {
  display: flex;
  padding: 25px;
  gap: 30px;
  align-items: center;
}

.lagu-image {
  position: relative;
  width: 45%;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16/9;
  height: 220px;
}

.lagu-play-btn-large {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #ffb300;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
}

.lagu-play-btn-large:hover {
  transform: scale(1.1);
}

.lagu-play-btn-large svg {
  width: 20px;
  height: 20px;
  margin-left: 4px;
}

.lagu-details {
  flex-grow: 1;
}

.lagu-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.lagu-music-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 59, 59, 0.1);
  border: 1px solid rgba(255, 59, 59, 0.3);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff3b3b;
}

.lagu-music-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.lagu-subtitle {
  font-family:  var(--font-display);
  font-size: 11px;
  color: #c99339;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.lagu-title {
  font-family:  var(--font-display);
  font-size: 20px;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.lagu-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #a0a8c2;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lagu-visualizer {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 20px;
  margin-bottom: 20px;
  justify-content: center;
}

.lagu-visualizer .bar {
  width: 3px;
  background-color: #c99339;
  border-radius: 2px;
  animation: equalize 1s infinite alternate ease-in-out;
}
.lagu-visualizer .bar:nth-child(1) {
  height: 8px;
}
.lagu-visualizer .bar:nth-child(2) {
  height: 16px;
  animation-delay: -0.2s;
}
.lagu-visualizer .bar:nth-child(3) {
  height: 12px;
  animation-delay: -0.4s;
}
.lagu-visualizer .bar:nth-child(4) {
  height: 20px;
  animation-delay: -0.6s;
}
.lagu-visualizer .bar:nth-child(5) {
  height: 10px;
  animation-delay: -0.8s;
}
.lagu-visualizer .bar:nth-child(6) {
  height: 18px;
  animation-delay: -0.1s;
}
.lagu-visualizer .bar:nth-child(7) {
  height: 14px;
  animation-delay: -0.3s;
}
.lagu-visualizer .bar:nth-child(8) {
  height: 20px;
  animation-delay: -0.5s;
}
.lagu-visualizer .bar:nth-child(9) {
  height: 12px;
  animation-delay: -0.7s;
}
.lagu-visualizer .bar:nth-child(10) {
  height: 16px;
  animation-delay: -0.9s;
}

@keyframes equalize {
  0% {
    transform: scaleY(0.4);
  }
  100% {
    transform: scaleY(1);
  }
}

.lagu-progress-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.lagu-time {
  font-family: sans-serif;
  font-size: 11px;
  color: #65749c;
}

.lagu-progress-track {
  flex-grow: 1;
  height: 4px;
  background-color: #1a2952;
  border-radius: 2px;
  overflow: hidden;
}

.lagu-progress-fill {
  height: 100%;
  width: 30%;
  background-color: #28448f;
}

.lagu-actions {
  display: flex;
  gap: 15px;
}

.lagu-btn-putar {
  background-color: transparent;
  border: 1px solid #c99339;
  color: #ffb300;
  padding: 8px 20px;
  border-radius: 6px;
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.lagu-btn-putar:hover {
  background-color: rgba(201, 147, 57, 0.1);
}

.lagu-btn-vol {
  /* background-color: #1a2952; */
  color: var(--gold); /* gold */
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.lagu-btn-vol svg {
  stroke: currentColor;
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.lagu-btn-vol:hover {
  background-color: #243666;
  color: #fff;
}

@media (max-width: 768px) {
  .lagu-card-content {
    flex-direction: column;
  }
  .lagu-image {
    width: 100%;
    height: 180px;
  }
}

/* BLOG STYLE */
.blog-hero {
  background: #0b1f4d;
  color: white;
  text-align: center;
  padding: 120px 20px 60px;
}

.blog-hero h1 {
  font-family:  var(--font-display);
  color: #d4af37;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.blog-card h2 {
  padding: 15px 15px 5px;
  font-family:  var(--font-display);
  color: #0b1f4d;
  font-size: 20px;
}

.blog-card p {
  padding: 0 15px 20px;
  font-size: 14px;
  color: #555;
}

/* SINGLE POST */
.single-container {
  max-width: 900px;
  margin: 100px auto;
  padding: 20px;
}

.single-post h1 {
  font-family:  var(--font-display);
  color: #0b1f4d;
}

.meta {
  color: gray;
  margin-bottom: 20px;
}

.thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.content {
  margin-top: 20px;
  line-height: 1.8;
}

/* RELATED POSTS */
.related-posts {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
}

.related-card img {
  width: 100%;
  border-radius: 8px;
}

/* TENTANG SECTION */
.tentang-section {
  background: radial-gradient(circle at center, #0b1f4d, #020617);
  padding: 100px 20px;
  color: white;
}

.tentang-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.tentang-header {
  text-align: center;
  margin-bottom: 60px;
}

/* CONTENT GRID */
.tentang-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.tentang-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tentang-logo-wrapper {
  position: relative;
  display: inline-block;
}

/* GLOW OUTER */
.tentang-logo-wrapper::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.25),
    transparent 70%
  );
  filter: blur(40px);
  z-index: 0;
}

/* GLOW INNER RING */
.tentang-logo-wrapper::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.6),
    0 0 60px rgba(212, 175, 55, 0.3);
  z-index: 0;
}

.tentang-logo {
  position: relative;
  z-index: 2;
  width: 280px;
}

.tentang-badge {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 40px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}

@keyframes glowPulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.tentang-logo-wrapper::before {
  animation: glowPulse 3s infinite ease-in-out;
}

/* RIGHT */
.tentang-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tentang-item p {
  font-family: var(--font-body);
  color: #cdbfa2;
  line-height: 1.8;
}

/* TITLE */
.tentang-title {
  font-family:  var(--font-display);
  margin-bottom: 10px;
}

.tentang-title.gold {
  color: var(--gold);
}

.tentang-title.red {
  color: var(--red-accent);
}

.tentang-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 80px;
}

.stat-card {
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;

  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

.stat-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--gold);
}

.stat-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.stat-card h3 {
  font-family:  var(--font-display);
  color: var(--gold);
  font-size: 26px;
}

.stat-card p {
  font-size: 13px;
  color: #cdbfa2;
}

.stat-card:hover {
  transform: translateY(-8px);

  border: 1px solid rgba(212, 175, 55, 0.6);

  box-shadow:
    0 0 20px rgba(212, 175, 55, 0.2),
    0 0 40px rgba(212, 175, 55, 0.15),
    0 0 80px rgba(212, 175, 55, 0.1);
}

.stat-card:hover .icon svg {
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tentang-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tentang-logo {
    width: 200px;
  }

  .tentang-right {
    text-align: center;
  }
  .tentang-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* FOOTER */
.gema-footer {
  background: var(--dark-blue);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 40px;
}

.footer-left h3 {
  font-family:  var(--font-display);
  color: var(--gold);
  font-size: 14px;
}

.footer-left p {
  font-size: 12px;
  color: #cdbfa2;
}

/* CENTER */
.footer-center {
  text-align: center;
}

.footer-soundwave span {
  display: inline-block;
  width: 4px;
  height: 12px;
  background: var(--gold);
  margin: 0 2px;
  opacity: 0.5;
}

/* RIGHT */
.footer-right {
  text-align: right;
}

.footer-right p {
  font-size: 12px;
  color: #fff;
}

.footer-right span {
  font-size: 10px;
  color: #cdbfa2;
}

/* QUOTE */
.footer-quote {
  margin-top: 20px;
  text-align: center;
  font-style: italic;
  color: #cdbfa2;
  font-size: 13px;
}

@keyframes wave {
  0% {
    height: 6px;
  }
  50% {
    height: 16px;
  }
  100% {
    height: 6px;
  }
}

.footer-soundwave span {
  animation: wave 1s infinite ease-in-out;
}

.footer-soundwave span:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-soundwave span:nth-child(3) {
  animation-delay: 0.4s;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
  }

  .footer-right {
    text-align: center;
  }
}

.filosofi-section {
  background: radial-gradient(circle at center, #0b1f4d, #020617);
  padding: 120px 20px;
  color: white;
}

/* HEADER */
.filosofi-header {
  text-align: center;
  margin-bottom: 70px;
}

/* GRID */
.filosofi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: 30px;
}

/* CARD BASE */
.filosofi-card {
  position: relative;
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

/* TOP BORDER ACCENT */
.filosofi-card.gold::before,
.filosofi-card.red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 16px 16px 0 0;
}

.filosofi-card.gold::before {
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.filosofi-card.red::before {
  background: linear-gradient(90deg, transparent, #c62828, transparent);
}

/* ICON */
.filosofi-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.filosofi-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.filosofi-icon.red svg {
  stroke: var(--red-accent);
}

/* LABEL */
.filosofi-label {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
  font-family:  var(--font-display);
}

.filosofi-label.red {
  color: var(--red-accent);
}

/* TITLE */
.filosofi-card h3 {
  font-family:  var(--font-display);
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--white);
}

/* DESC */
.filosofi-desc {
  color: #cdbfa2;
  font-family: var(--font-body);
  line-height: 1.7;
}

/* QUOTE */
.filosofi-quote {
  font-family: var(--font-body);
  margin-top: 20px;
  font-style: italic;
  font-size: 14px;
  padding-left: 15px;
  border-left: 2px solid;
}

.filosofi-quote.gold {
  border-color: var(--gold);
  color: var(--gold);
}

.filosofi-quote.red {
  border-color: #c62828;
  color: #c62828;
}

/* HOVER */
.filosofi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .filosofi-grid {
    grid-template-columns: 1fr;
  }
}


/* SECTION */
.pilar-section {
  padding: 80px 20px;
  background: radial-gradient(circle at center, #0b1f4d, #020617);
}

/* CONTAINER */
.pilar-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(212,175,55,0.3);
  position: relative;

  background: rgba(255,255,255,0.02);
}

/* TITLE */
.pilar-title {
  text-align: center;
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin-bottom: 40px;
}

/* LIST */
.pilar-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ITEM */
.pilar-item {
  text-align: center;
  width: 18%;
  min-width: 120px;
}

/* CIRCLE */
.pilar-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);

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

  font-family: 'Cinzel', serif;
}

/* TEXT */
.pilar-item p {
  font-size: 13px;
  color: #CDBFA2;
}

/* STAR DECOR */
.pilar-star {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 80px;
  color: rgba(255,255,255,0.05);
}


.pilar-item:hover .pilar-circle {
  background: var(--gold);
  color: #020617;
  box-shadow: 0 0 15px rgba(212,175,55,0.6);
}

@media (max-width: 768px) {

  .pilar-list {
    gap: 20px;
    justify-content: center;
  }

  .pilar-item {
    width: 40%;
  }

}







