/* ================= Navigation Container ================= */
.navigation-container {
    background: #0c0d19;
    color: #fff;
    padding: 6px 0;
    width: 100%;
}

.navigation-container .navigation-left {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.navigation-container .navigation-left a {
    color: #fff;
}

/* ================= Main Header Logo, Admin & Language ================= */

.main-header__admin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0.5rem 1rem;
}

.main-header__left {
  flex: 1;
  min-width: 200px;
}

.main-header__logo {
  max-height: 60px;
  width: auto;
  height: auto;
  transition: max-height 0.3s ease;
}

/* Tengah: Navigasi */
.main-header__center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Kanan: Language Switcher */
.main-header__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}

.main-header__admin.locale-enabled {
    width: 100%;
    background: #e9ecef;
}

.main-header__admin.locale-enabled .main-header__admin-link {
    background-color: transparent;
    color: #000;
}

.main-header__admin.locale-enabled .dropdown-toggle {
    background-color: transparent;
    color: #000;
}

/* ================= Custom Language Switcher ================= */

.language-switcher-container {
	position: relative;
	display: inline-block;
}

.language-btn {
	background: none;
	border: none;
	color: #333;
	font-size: 1.2rem;
	cursor: pointer;
	padding: 4px 8px;
	transition: color 0.3s;
}
.language-btn:hover {
	color: #007bff;
}

.language-dropdown {
	position: absolute;
	right: 0;
	top: 30px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 6px;
	padding: 8px 0;
	min-width: 120px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	z-index: 999;

	/* Animasi fade */
	opacity: 0;
	transform: translateY(-10px);
	pointer-events: none;
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
	            transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.language-dropdown.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.language-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.language-list li a {
	display: block;
	padding: 6px 12px;
	color: #333;
	text-decoration: none;
	font-size: 0.9rem;
}
.language-list li a.is-active {
	font-weight: bold;
	color: #007bff;
}
.language-list li a:hover {
	background: #f0f0f0;
	color: #007bff;
}

/* ================= Main Header Hero Banner Dinamis ================= */
header.main-header .hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

header.main-header .hero-banner .header-slider .slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
}

header.main-header .hero-banner .header-slider .slide.active {
    opacity: 1;
}

header.main-header .hero-banner .hero-banner__content {
    position: relative;
    z-index: 2;
    top: 50%;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

header.main-header .hero-banner .hero-banner__content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

header.main-header .hero-banner .slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

header.main-header .hero-banner .slider-indicators .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

header.main-header .hero-banner .slider-indicators .dot.active {
    background-color: #fff;
}


/* ================= About Site ================= */
.about_site {
    text-align: justify;
    margin-top: 0rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none !important;
}

/* ================= Main Title ================= */
.main__title {
    display: none !important;
}

/* ================= Kontainer utama untuk daftar jurnal ================= */
.main__content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* ================================ Daftar jurnal satu per baris ================================ */
.index-site__journals {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
    list-style: none;
    padding: 0;
}

/* ================================ Kartu jurnal ================================ */
.index-site__journals li {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: all 0.3s ease;
}

.index-site__journals li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* ================================ Thumbnail (cover jurnal) ================================ */
.index-site__journals li .thumb img {
    width: 140px;
    height: auto;
    border-radius: 6px;
    margin-right: 25px;
    flex-shrink: 0;
}

/* ================================ Informasi jurnal ================================ */
.index-site__journals li .journal-info {
    flex: 1;
    text-align: left;
}

/* Judul jurnal */
.index-site__journals li .journal-info h3 {
    font-size: 20px;
    margin: 0 0 12px;
    font-weight: bold;
    color: #003366;
}

/* Hilangkan deskripsi jika ada */
.index-site__journals li .journal-info .description {
    display: none !important;
}

/* Metadata: ISSN, kategori, DOI */
.index-site__journals li .journal-info .meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Badge indeksasi */
.index-site__journals li .journal-indexes {
    margin-top: 10px;
}

.index-site__journals li .journal-indexes .badge {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    padding: 6px 12px;
    margin: 3px 6px 3px 0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

/* Link tombol opsional */
.index-site__journals li .journal-buttons {
    margin-top: 12px;
}

.index-site__journals li .journal-buttons .btn {
    padding: 8px 16px;
    background: #001c5f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    margin-right: 8px;
}

.index-site__journals li .journal-buttons .btn:hover {
    background: #027bff;
    transform: scale(1.05);
}

/* ================= Responsif ================= */
@media screen and (max-width: 768px) {
    .main-header img {
        max-height: 100px;
    }

    .index-site__journals {
        padding: 10px;
    }

    .index-site__journals li {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .index-site__journals li .thumb img {
        width: 100%;
        margin-bottom: 20px;
    }

    .index-site__journals li .journal-info {
        width: 100%;
    }
}

/* ================= Custom Page Styling ================= */

.page_aboutSite {
  background-color: #f9fafc;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}

.about-description {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 40px 50px;
  border-top: 4px solid #000000;
}

.about-description p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #000000;
  text-align: center;
}

.about-vision-mission {
  margin-top: 50px;
}

.vision-card,
.mission-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 35px;
  border-top: 4px solid #000000;
  transition: all 0.3s ease;
}

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

.vision-title h3,
.mission-title h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.vision-content p {
  font-size: 1.5rem;
  color: #000000;
}

.mission-content ul {
  padding-left: 0;
  list-style: none;
}

.mission-content li {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
  padding-left: 8px;
}

.about-structure {
  margin-top: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid #000000;
}

.structure-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e1f2c !important;
}

.structure-title p {
  color: #666;
  font-size: 1rem;
}

.structure-content {
  margin-top: 30px;
}


.team-member {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #000000;
  transition: all 0.3s ease;
  max-width: 300px;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.team-member img.team-photo {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #f2f2f2;
  margin-bottom: 15px;
}


.team-group {
  border-radius: 20px;
  padding: 40px;
}

.team-group h5 {
  font-size: 1.4rem;
  color: #1e1f2c;
  margin-bottom: 30px;
  display: none;
}

.team-group .team-member {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 20px;
  border-top: 4px solid #000000;
}

.team-member h5,
.team-member h6 {
  font-weight: 600;
  font-size: 1rem;
  color: #1e1f2c;
  margin-bottom: 5px;
}

.team-member p {
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.linkedin-link {
  color: #0077b5;
  transition: color 0.3s ease;
}

.linkedin-link:hover {
  color: #004d73;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .about-description {
    padding: 25px;
  }

  .vision-card,
  .mission-card {
    padding: 25px;
  }

  .team-group {
    padding: 25px;
  }

  .team-member {
    padding: 20px;
  }
}

/* ================= Search Results Finally ================= */
.article {
    text-align: justify;
}

/* ================= Custom Footer Style ================= */
#immersion_content_footer,
.custom-footer {
    flex-shrink: 0;
    background: #000;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    padding: 40px 0 15px;
    position: relative;
    z-index: 1000;
}

/* ================= Footer-Top ================= */
.custom-footer .footer-top {
    display: flex;
    margin-inline: 50px;
    padding-inline: 50px;
    padding-top: 20px;
    padding-bottom: 60px;
}

.footer-top .footer-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-top .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-top .footer-list li {
    color: #e5e5e5;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-top .footer-list i {
    margin-right: 8px;
    color: #ffffff;
}

.footer-top .footer-list a {
    color: #ffffff;
}

.footer-top .footer-list a:hover {
    text-decoration: underline;
}

/* ================= Footer-lang-social ================= */
.footer-center {
    display: flex;
    margin-inline: 50px;
    padding-bottom: 15px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer-center .social-icons {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.footer-center .social-icons li {
    display: flex;
    align-items: center;
}

.footer-center .social-icons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-center .social-icons a:hover {
    color: #ffdf70;
}

.footer-center .social-icons .portal-title a {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.footer-center .social-icons a {
    margin-left: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.footer-center .social-icons a:hover {
    transform: scale(1.1);
    color: #b92133;
    opacity: 1;
}

/* ================= Footer-Bottom ================= */
.custom-footer .footer-bottom .footer-site-logo {
    max-height: 50px;
    filter: brightness(0) invert(1); /* ubah logo jadi putih jika gelap */
}

.custom-footer .footer-bottom {
    text-align: left;
    margin-inline: 50px;
    padding-top: 10px;
    border-top: 1px solid #4D4D4D;
}

.custom-footer .footer-bottom p {
    font-size: 14px;
    color: #eaeaea;
    margin: 0;
    letter-spacing: 0.3px;
}

.custom-footer .footer-bottom strong {
    color: #ffffff;
}

/* ================= Responsif Custom Footer ================= */
@media (max-width: 768px) {
    .custom-footer {
        text-align: center;
    }

    .custom-footer .footer-site-logo {
        margin-bottom: 20px;
    }

    .custom-footer .footer-contact {
        margin-top: 20px;
    }
}
/* ===================== Journal Category Filters (Modern Glass Style) ===================== */
.journal-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin: 45px auto 30px;
    padding: 10px 20px;
    backdrop-filter: blur(6px);
}

.journal-categories .btn {
    position: relative;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    color: #001c5f;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 28, 95, 0.12);
    transition: all 0.35s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.journal-categories .btn:hover {
    background: rgba(0, 28, 95, 0.8);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0, 28, 95, 0.35);
}

.journal-categories .btn.active {
    background: linear-gradient(145deg, #001c5f 0%, #003baf 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 28, 95, 0.4), 0 0 12px rgba(0, 28, 95, 0.35);
}

.journal-categories .btn.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 3px;
    border-radius: 3px;
    background: #00359e;
}

/* ===================== Subfilter Sinta (Soft Minimal Style) ===================== */
.sinta-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px auto 35px;
    padding: 0 10px;
    animation: fadeIn 0.3s ease-in;
}

.sinta-filters .btn {
    border: 1.5px solid rgba(0, 28, 95, 0.3);
    background: rgba(255, 255, 255, 0.4);
    color: #001c5f;
    border-radius: 25px;
    font-size: 13.5px;
    font-weight: 500;
    padding: 6px 16px;
    transition: all 0.25s ease;
}

.sinta-filters .btn:hover {
    background: #001c5f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 28, 95, 0.25);
}

.sinta-filters .btn.active {
    background: linear-gradient(135deg, #001c5f, #0033a0);
    color: #ffffff;
    border-color: #001c5f;
    box-shadow: 0 3px 10px rgba(0, 28, 95, 0.3);
}

/* ===================== Responsif ===================== */
@media (max-width: 768px) {
    .journal-categories {
        gap: 10px;
    }
    .journal-categories .btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    .sinta-filters .btn {
        font-size: 12.5px;
        padding: 5px 12px;
    }
}

/* ===================== Animasi Masuk ===================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}