/* ============================================================
   Tema OJS 3 - Voice of Philadelphia
   Warna: Biru Gelap & Kuning Emas
   Desain: Profesional, Elegan, dan Inspiratif
   ============================================================ */

/* === FONT & WARNA UMUM === */
body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  background-color: #f8fafc;
  color: #1a1a1a;
  margin: 0;
  padding: 0;
}

/* === HEADER UTAMA === */
.pkp_site_name {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #001f3f, #003366, #001f3f);
  color: #fff;
  padding: 40px 0 70px;
  text-align: center;
  overflow: hidden;
  border-bottom: 6px solid #ffd700;
}

/* === JUDUL JURNAL === */
.pkp_site_name a {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff !important;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.pkp_site_name span.subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 8px;
  color: #ffe66d;
}

/* === ANIMASI GARIS EMAS DI BAWAH HEADER === */
.pkp_site_name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 200%;
  height: 6px;
  background: linear-gradient(90deg, #ffd700, #fff4b2, #ffd700);
  animation: goldMove 5s linear infinite;
}
@keyframes goldMove {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* === HEADER MARQUEE === */
.header-marquee {
  background: linear-gradient(90deg, #002244, #003366, #002244);
  color: #ffd700;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 0;
  text-align: center;
  border-top: 2px solid #ffcc00;
  border-bottom: 2px solid #ffcc00;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}
.header-marquee marquee {
  width: 100%;
  color: #fff6c2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.header-marquee:hover {
  background: linear-gradient(90deg, #003366, #004080, #003366);
  transition: background 0.3s ease;
}

/* === NAVIGASI UTAMA === */
.pkp_navigation_primary li a {
  background-color: #002147;
  color: #ffd700 !important;
  border-radius: 8px;
  margin: 4px;
  padding: 9px 16px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.pkp_navigation_primary li a:hover {
  background-color: #ffd700;
  color: #001f3f !important;
}

/* === TOMBOL UMUM === */
.pkp_button,
.button,
.pkp_controllers_linkAction a {
  background-color: #ffd700 !important;
  color: #001f3f !important;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  transition: 0.3s;
}
.pkp_button:hover,
.button:hover,
.pkp_controllers_linkAction a:hover {
  background-color: #ffec80 !important;
  color: #001a33 !important;
}

/* === SIDEBAR === */
.pkp_sidebar {
  background-color: #f5f7fa;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 33, 71, 0.15);
}

/* === JUDUL WIDGET SIDEBAR === */
.pkp_block .title {
  color: #002147;
  font-weight: 700;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* === LOWER TEXT SIDEBAR === */
.pkp_sidebar::after {
  content: "📘 Editorial Team | Peer Reviewers | Focus & Scope | Author Guidelines | Author Fee | Copyright | Publication Ethics | Contact | Indexing";
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #002147;
  margin-top: 25px;
  padding-top: 10px;
  border-top: 1px dashed #ffd700;
  font-style: italic;
  line-height: 1.6;
}

/* === ARTIKEL RINGKASAN === */
.obj_article_summary {
  background-color: #fff;
  border: 1px solid #ffd700;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 33, 71, 0.08);
  transition: all 0.3s ease;
}
.obj_article_summary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 33, 71, 0.15);
}
.obj_article_summary .title a {
  color: #002147;
  font-weight: 600;
  text-decoration: none;
}
.obj_article_summary .title a:hover {
  color: #ffd700;
}

/* === FOOTER === */
.pkp_footer_content {
  background-color: #001f3f;
  color: #ffd700;
  text-align: center;
  padding: 20px 0;
  font-size: 0.95rem;
  border-top: 4px solid #ffd700;
}
.pkp_footer_content a {
  color: #fffbea !important;
  text-decoration: none;
}
.pkp_footer_content a:hover {
  color: #ffeb99 !important;
  text-decoration: underline;
}

/* === RESPONSIF === */
@media (max-width: 768px) {
  .pkp_navigation_primary li a {
    display: block;
    margin: 5px 0;
  }
  .pkp_site_name a {
    font-size: 1.7rem;
  }
  .header-marquee {
    font-size: 0.85rem;
  }
}
