/* =========================
   Custom Theme OJS by Ariansyah, S.Kom.
   ========================= */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Variabel warna */
:root {
    --primary-color: #1976d2;   /* Biru Material */
    --accent-color: #ff9800;    /* Oranye Material */
    --bg-light: #f9fafc;
    --text-dark: #333;
}

/* Font Global */
body {
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header */
.pkp_site_name {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.4rem;
}

#kepkHead {
    font-size: 35px;
    text-shadow: 0 4px 20px rgba(0, 0,0, 0.15);
    position: sticky;
    animation: fadeSlideDown 1s ease-out;
}
#kepkDesc {
    font-size: 27px;
    text-shadow: 0 4px 20px rgba(0, 0,0, 0.35);
    margin-top: -1px;
    animation: fadeSlideUp 1s ease-out;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




#kepkSubmit {
   position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 1rem;
  background: linear-gradient(45deg, #38bdf8, #0ea5e9);
  color: #ffffff; /* teks terang */
  border: none;
  cursor: pointer;
  overflow: visible;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.5);
  z-index: 1;
}

#kepkSubmit::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(14, 165, 233, 0.8);
  border-radius: 1rem;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.8;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
  animation: pulseRing 2s ease-out infinite;
  z-index: -1;
}

#kepkSubmit::before {
    content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(14, 165, 233, 0.5);
  border-radius: 1rem;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.5;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
  animation: pulseRing 2s ease-out infinite;
  animation-delay: 2s;
  z-index: -1;
}
@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

/* Icon styling */
#kepkIconSubmit {
  display: flex;
  align-items: center;
}

#kepkTextSubmit {
  display: inline-block;
}









.pkp_navigation_primary a {
    font-weight: 500;
    text-transform: normal;
    transition: color 0.3s ease;
}

.pkp_navigation_primary a:hover {
    color: var(--accent-color);
}

/* Tombol */
.pkp_button,
.pkp_page_actions a,
button {
/*    background-color: var(--primary-color);*/
    color: white !important;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    text-transform: normal;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.pkp_button:hover,
.pkp_page_actions a:hover,
button:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

/* Kartu / Article Summary */
.obj_article_summary,
.pkp_block {
    background: white;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.obj_article_summary:hover,
.pkp_block:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.15);
}

/* Judul Artikel */
.obj_article_summary .title a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.obj_article_summary .title a:hover {
    color: var(--accent-color);
}

/* Footer */
.pkp_footer_content {
    background: var(--primary-color);
    color: white;
    padding: 22px;
    text-align: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

