/* ===== revenue.css ===== */
/* Premium Redesign for Revenue Journal - Professional & Modern */

/* === 1. KONFIGURASI VARIABLES & FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  /* Palet Warna Premium */
  --deep-navy: #0A1931;
  --royal-blue: #185ADB;
  --gold-accent: #FFC947;
  --light-gold: #FFF9E6;
  --charcoal: #2D3047;
  --light-gray: #F8F9FA;
  --medium-gray: #E9ECEF;
  --dark-text: #1A1A1A;
  --white: #FFFFFF;
  
  /* Gradients Premium */
  --gradient-primary: linear-gradient(135deg, var(--royal-blue) 0%, #0A1931 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-accent) 0%, #FFD700 100%);
  --gradient-nav: linear-gradient(90deg, var(--deep-navy) 0%, var(--charcoal) 100%);
  
  /* Tipografi Premium */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Effects & Transitions */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --box-shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* === 2. RESET & BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}

/* === 3. NAVIGASI PREMIUM REDESIGN === */
.pkp_structure_head {
  background: var(--gradient-nav);
  box-shadow: 0 5px 20px rgba(10, 25, 49, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  animation: slideDown 0.6s ease-out;
}

.pkp_navigation_primary_wrapper {
    display: flex;
}


.pkp_head_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  flex-direction: column-reverse;
}

/* Logo Styling */
.pkp_site_name_wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pkp_site_name .is_img img {
  max-height: 60px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  transition: var(--transition);
}

.pkp_site_name .is_img:hover img {
  transform: scale(1.05);
}




.pkp_navigation_primary {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
}

.pkp_navigation_primary > li {
  position: relative;
  margin: 0;
}

.pkp_navigation_primary > li > a {
  display: block;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  border-radius: var(--border-radius);
  margin: 0 0.2rem;
}

.pkp_navigation_primary > li > a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.pkp_navigation_primary > li > a::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: var(--transition);
  transform: translateX(-50%);
}

.pkp_navigation_primary > li > a:hover::after {
  width: 70%;
}

/* Dropdown Menu Premium */
.pkp_navigation_primary .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-lg);
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1000;
  border: 1px solid var(--medium-gray);
}

.pkp_navigation_primary li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--royal-blue);
  border-left-color: var(--gold-accent);
  padding-left: 1.8rem;
}

/* User Navigation */
.pkp_navigation_user_wrapper {
  margin-left: auto;
}

.pkp_navigation_user {
  display: flex;
  list-style: none;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.pkp_navigation_user .dropdown-menu {
    background: #000;
}

.pkp_navigation_user li a {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.pkp_navigation_user li a:hover {
  background: var(--gold-accent);
  color: var(--deep-navy);
  transform: translateY(-2px);
}

.task_count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-accent);
  color: var(--deep-navy);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

/* Search Button */
.pkp_navigation_search_wrapper {
  margin-left: 1.5rem;
}

.pkp_search {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
}

.pkp_search:hover {
  background: var(--gold-accent);
  color: var(--deep-navy);
}

/* === 4. HERO/HOMEPAGE SECTION === */
.homepage_image {
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
}

.homepage_image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3') center/cover;
  opacity: 0.2;
}

.homepage_image img {
  position: relative;
  max-width: 800px;
  width: 90%;
  height: auto;
  filter: brightness(0.7) invert(1);
  animation: fadeInUp 1s ease-out;
}

/* === 5. ABOUT JOURNAL SECTION === */
.homepage_about {
  padding: 5rem 0;
  background: var(--white);
  position: relative;
}

.homepage_about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-gold);
}

.homepage_about h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--deep-navy);
  animation: fadeInUp 0.8s ease-out;
  position: relative;
}

.homepage_about h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.homepage_about p {
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.homepage_about p strong {
  color: var(--royal-blue);
  font-weight: 600;
}

/* === 6. CURRENT ISSUE SECTION - PREMIUM REDESIGN === */
.current_issue {
  padding: 5rem 0;
  background: var(--light-gray);
  position: relative;
}

.current_issue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

.current_issue_title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 3rem;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.obj_issue_toc {
  background: var(--white);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
  margin-bottom: 3rem;
  transition: var(--transition);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
  overflow: hidden;
}

.obj_issue_toc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient-gold);
}

.obj_issue_toc:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
}

/* Article Cards Premium */
.obj_article_summary {
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--medium-gray);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.obj_article_summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-gold);
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.obj_article_summary:hover::before {
  transform: scaleY(1);
}

.obj_article_summary:hover {
  border-color: var(--gold-accent);
  transform: translateX(10px);
  box-shadow: var(--box-shadow);
}

.obj_article_summary .title a {
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.obj_article_summary .title a:hover {
  color: var(--royal-blue);
}

.obj_article_summary .meta {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin: 0.8rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.obj_article_summary .authors {
  font-weight: 500;
  color: var(--royal-blue);
}

.obj_article_summary .pages {
  color: var(--charcoal);
  background: var(--light-gray);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.obj_article_summary .cover {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.obj_article_summary .cover img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  transition: var(--transition);
}

.obj_article_summary .cover:hover img {
  transform: scale(1.1);
}

/* File Links Styling */
.galleys_links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.obj_galley_link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.obj_galley_link.pdf {
  background: rgba(24, 90, 219, 0.1);
  color: var(--royal-blue);
  border-color: rgba(24, 90, 219, 0.2);
}

.obj_galley_link.file {
  background: rgba(255, 201, 71, 0.1);
  color: #B8860B;
  border-color: rgba(255, 201, 71, 0.2);
}

.obj_galley_link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.obj_galley_link.pdf:hover {
  background: var(--royal-blue);
  color: white;
}

.obj_galley_link.file:hover {
  background: var(--gold-accent);
  color: var(--deep-navy);
}

/* View All Issues Button */
.read_more {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  transition: var(--transition);
  animation: pulse 2s infinite;
  margin: 0 auto;
  display: block;
  text-align: center;
  max-width: 200px;
  justify-content: center;
}

.read_more:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(24, 90, 219, 0.3);
  color: white;
}

/* === 7. ADDITIONAL CONTENT & JOURNAL INFO === */
.additional_content {
  padding: 4rem 0;
  background: var(--white);
  position: relative;
}

.additional_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-gold);
}

.additional_content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  animation: fadeInUp 0.8s ease-out;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.additional_content table tr {
  transition: var(--transition-fast);
}

.additional_content table tr:nth-child(even) {
  background-color: var(--light-gray);
}

.additional_content table tr:hover {
  background-color: rgba(255, 201, 71, 0.1);
}

.additional_content table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--medium-gray);
}

.additional_content table tr:last-child td {
  border-bottom: none;
}

.additional_content table tr td:first-child {
  font-weight: 600;
  color: var(--deep-navy);
  width: 20%;
}

.integrate_indexing p {
  font-weight: 700;
  color: var(--deep-navy);
  text-align: center;
  margin: 3rem 0 1.5rem;
  position: relative;
  font-size: 1.3rem;
}

.integrate_indexing p::before,
.integrate_indexing p::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--royal-blue), transparent);
}

.integrate_indexing p::before {
  left: 0;
}

.integrate_indexing p::after {
  right: 0;
}

/* === 8. SIDEBAR PREMIUM STYLING === */
.pkp_structure_sidebar {
  padding: 2rem 1.5rem;
  background: var(--light-gray);
  border-radius: var(--border-radius-xl);
  margin: 2rem 0;
  box-shadow: var(--box-shadow);
}

.pkq_block {
  margin-bottom: 2.5rem;
  animation: fadeInRight 0.8s ease-out;
}

.pkq_block .title {
  color: var(--deep-navy);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 3px solid var(--gold-accent);
  font-family: var(--font-heading);
}

/* Most Read Articles */
.most_read_article {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--medium-gray);
  transition: var(--transition);
  position: relative;
}

.most_read_article::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--gold-accent);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.most_read_article:hover::before {
  transform: scaleY(1);
}

.most_read_article:hover {
  background-color: rgba(255, 255, 255, 0.7);
  padding-left: 1rem;
  transform: translateX(5px);
}

.most_read_article_title a {
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.most_read_article_title a:hover {
  color: var(--royal-blue);
}

.most_read_article_journal {
  color: var(--royal-blue);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Custom blocks with tables */
.pkq_block .content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.pkq_block .content table td {
  padding: 0.9rem 0.7rem;
  text-align: center;
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--medium-gray);
}

.pkq_block .content table tr:first-child td {
  background-color: var(--deep-navy);
  color: white;
  font-weight: 600;
}

.pkq_block .content table tr:not(:first-child) td {
  background: white;
}

.pkq_block .content table tr:not(:first-child):hover td {
  background-color: rgba(255, 201, 71, 0.15);
  transform: translateY(-2px);
}

/* Keyword cloud */
#wordcloud {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--medium-gray);
}

.keyword {
  transition: var(--transition);
  cursor: pointer;
}

.keyword:hover {
  opacity: 1 !important;
  transform: scale(1.2);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* === 9. FOOTER PREMIUM STYLING === */
.pkp_structure_footer_wrapper {
  background: var(--gradient-nav);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
}

.pkp_structure_footer_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-gold);
}

.pkp_footer_content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pkp_footer_content a {
  color: var(--gold-accent);
  font-weight: 500;
  transition: var(--transition-fast);
}

.pkp_footer_content a:hover {
  color: white;
  text-decoration: underline;
}

.pkp_brand_footer {
  display: none;
}

/* === 10. ANIMATIONS PREMIUM === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 201, 71, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 201, 71, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 201, 71, 0);
  }
}

/* Staggered animations */
.obj_article_summary:nth-child(1) { animation-delay: 0.1s; }
.obj_article_summary:nth-child(2) { animation-delay: 0.2s; }
.obj_article_summary:nth-child(3) { animation-delay: 0.3s; }
.obj_article_summary:nth-child(4) { animation-delay: 0.4s; }
.obj_article_summary:nth-child(5) { animation-delay: 0.5s; }

/* === 11. RESPONSIVE DESIGN - OPTIMIZED === */
@media (max-width: 1200px) {
  .pkp_head_wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
   
  .pkp_site_nav_menu {
    margin-left: 2rem;
  }



}

@media (max-width: 992px) {
  .pkp_head_wrapper {
    flex-direction: column;
    padding: 1rem 1.5rem;
  }
  
  .pkp_site_name_wrapper {
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .pkp_site_nav_menu {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
  }
  
  .pkp_navigation_primary {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .pkp_navigation_user_wrapper {
    width: 100%;
  }
  
  .pkp_navigation_user {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .pkp_structure_content.has_sidebar {
    flex-direction: column;
  }
  
  .homepage_image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  
  .homepage_about,
  .current_issue,
  .additional_content {
    padding: 3rem 0;
  }
  
  .obj_issue_toc {
    padding: 2rem;
  }
  
  .obj_article_summary {
    padding: 1.5rem;
  }
  
  .obj_article_summary .cover {
    float: none;
    display: block;
    margin: 0 auto 1.5rem;
    text-align: center;
  }
  
  .obj_article_summary .meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .galleys_links {
    justify-content: center;
  }
  
  .additional_content table td {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
  }
  
  .additional_content table tr {
    display: block;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }
  
  .additional_content table tr td:first-child {
    width: 100%;
    background: var(--light-gray);
    font-weight: 700;
    padding: 1rem;
    border-bottom: 1px solid var(--medium-gray);
  }
}

@media (min-width : 576px) {
    .pkp_navigation_primary_row {
        position: absolute;
        top:0;
        right:0;
        z-index: 9999;
    }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }

  /* Navigation Menu - PREMIUM STYLING */
    .pkp_site_nav_menu {
        display: none;
    }

    .pkp_site_nav_menu--isOpen {
        display: block !important;
    }

    .pkp_navigation_primary_row {
        position: unset;
    }
  
  .container {
    padding: 0 1rem;
  }
  
  .pkp_navigation_primary {
    flex-direction: column;
    width: 100%;
  }
  
  .pkp_navigation_primary > li {
    width: 100%;
    text-align: center;
  }
  
  .pkp_navigation_primary > li > a {
    padding: 1rem;
    margin: 0.2rem 0;
  }
  
  .pkp_navigation_user {
    flex-direction: column;
    width: 100%;
  }
  
  .pkp_navigation_user li {
    width: 100%;
  }
  
  .pkp_navigation_user li a {
    justify-content: center;
    margin: 0.2rem 0;
  }
  
  .homepage_image {
    height: 200px;
  }
  
  .obj_article_summary .cover img {
    width: 80px;
    height: 80px;
  }
}

/* === 12. UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-3 {
  margin-top: 3rem;
}

.shadow-lg {
  box-shadow: var(--box-shadow-lg) !important;
}

.rounded-xl {
  border-radius: var(--border-radius-xl) !important;
}