/* ===========================================================
   🎓 JURNAL RADISI — MODERN RESPONSIVE STYLE (FINAL VERSION)
   =========================================================== */

/* ----------------------------
   RESET DASAR & GLOBAL STYLE
-----------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background: #f5f9fc;
  color: #333;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: #007fa3;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff7a08;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================================================
   HEADER SECTION
   =========================================================== */
.pkp_structure_head {
  background: linear-gradient(90deg, #007fa3, #00aab2);
  color: #fff;
  padding: 12px 0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Header container (judul + menu sejajar) */
.pkp_navigation_primary_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 5%;
  background: #007fa3;
}

/* Judul situs */
.pkp_site_name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Logo/judul img style */
.pkp_site_name img {
  height: 50px;
  width: auto;
  vertical-align: middle;
}

/* ===========================================================
   NAVIGATION MENU
   =========================================================== */
.pkp_navigation_primary_row {
  font-family: News Cycle,"Arial Narrow Bold",sans-serif;
  background: #0088a2;
  padding-left: 15px;
  padding-right: 40px !important;
  font-weight: 700;
  margin-bottom: 1px; 
  font-size: 20px;
}
.pkp_navigation_primary>li>a {
  color: #ffff;
}
.pkp_navigation_search_wrapper a {
  margin: 0.357rem .8em;
  background: #ffff;
  padding-top: 0.557rem;
  padding-right: 4.7rem;
  padding-left: 4.1rem;
  display: inline-block;
  padding-bottom: 0.557rem;
  border: 1px solid rgba(0,0,0,0.4);
  border-top-color: #bbb;
  border-radius: 20px;
  box-shadow: inset 0 -1em 1em rgba(0,0,0,0.1);
  font-size: 18px;
  font-weight: 790;
  color: #0088a2;
  text-align: center;
}

/* ===========================================================
   MAIN CONTENT AREA
   =========================================================== */
.pkp_structure_main {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 40px 25px;
  margin: 25px auto;
  max-width: 1200px;
}

/* Judul utama */
.journal-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #007fa3;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.divider {
  width: 80%;
  max-width: 600px;
  height: 3px;
  margin: 10px auto 30px;
  background: linear-gradient(90deg, #007fa3, #ff7a08);
  border-radius: 4px;
}

/* Layout Gambar dan Detail Jurnal */
.journal-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 25px;
}

.cover-figure {
  flex: 0 0 200px;
  text-align: center;
}

.cover-img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Tabel Detail */
.journal-details {
  width: 100%;
  border-collapse: collapse;
  background: #f8fbfc;
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.journal-details th {
  background: #007fa3;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.journal-details td {
  padding: 10px 15px;
  border-bottom: 1px solid #e0eef2;
}

.journal-details td:first-child {
  font-weight: 600;
  color: #007fa3;
  width: 35%;
  background: #f1f9fa;
}

.journal-details a {
  color: #007fa3;
  font-weight: 600;
}

/* Deskripsi */
.journal-description {
  font-size: 17px;
  text-align: justify;
  color: #444;
  background: #f9fcfd;
  border-left: 5px solid #007fa3;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

/* ===========================================================
   PARTNER SLIDER
   =========================================================== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  background: #f4f8fb;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
}

.slider {
  display: flex;
  align-items: center;
  gap: 25px;
  animation: slide 30s linear infinite;
}

.slide img {
  height: 48px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================================================
   FOOTER SECTION
   =========================================================== */
.site-footer {
  background: linear-gradient(180deg, #007fa3, #005e79);
  color: #fff;
  padding: 50px 20px 30px;
  margin-top: 50px;
  border-top: 6px solid #ff7a08;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  min-width: 220px;
}

.site-footer h6 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid #ff7a08;
  display: inline-block;
}

.site-footer p {
  font-size: 14px;
  color: #eaf4f7;
  line-height: 1.7;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #eaf4f7;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcf73;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  gap: 10px;
}

.copyright-text {
  font-size: 13px;
  color: #d3ebf0;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
  filter: brightness(115%);
}

/* ===========================================================
   RESPONSIVE DESIGN
   =========================================================== */
@media (max-width: 992px) {
  .pkp_navigation_primary_wrapper {
    flex-direction: column;
    align-items: center;
  }

  .pkp_site_name {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .pkp_navigation_primary > li > a {
    font-size: 14px;
    padding: 5px 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h6 {
    font-size: 15px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .social-icons img {
    width: 22px;
    height: 22px;
  }
}
/* === SEMBUNYIKAN FOOTER BAWAAN OJS === */
.pkp_structure_footer_wrapper,
.pkp_brand_footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
