/* Nabanje Journal of Economics, Business and Entrepreneurship Studies - External CSS Stylesheet */

/* Custom Color Palette - Business Theme */
:root {
  --primary-purple: #604b98;
  --secondary-gold: #d59953;
  --accent-green: #99b547;
  --dark-purple: #4a3a78;
  --light-purple: #7a6bb8;
  --dark-gold: #b8803d;
  --light-gold: #e6b370;
  --dark-green: #7a9135;
  --light-green: #b3cc65;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --text-dark: #2c2c2c;
  --text-light: #6c757d;
  --border-color: #dee2e6;
}

/* Global Overrides */
body {
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  background: linear-gradient(135deg, var(--light-gray) 0%, #f1f3f4 100%);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Header Styling */
.pkp_structure_head {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
  border-bottom: 4px solid var(--secondary-gold);
  box-shadow: 0 4px 12px rgba(96, 75, 152, 0.3);
  position: relative;
}

.pkp_structure_head::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--secondary-gold), var(--accent-green));
}

.pkp_structure_head h1,
.pkp_structure_head .pkp_site_name {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
}

/* Navigation */
.pkp_navigation_primary {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--primary-purple) 100%);
  border-bottom: 3px solid var(--secondary-gold);
}

.pkp_navigation_primary a {
  color: var(--white) !important;
  font-weight: 500;
  padding: 12px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.pkp_navigation_primary a:hover {
  background: var(--secondary-gold) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.pkp_navigation_primary a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.pkp_navigation_primary a:hover::after {
  width: 80%;
}

/* Content Areas */
.pkp_structure_content {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  margin: 20px 0;
  overflow: hidden;
}

.pkp_structure_main {
  background: var(--white);
  padding: 40px;
  position: relative;
}

.pkp_structure_main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-purple), var(--secondary-gold), var(--accent-green));
}

/* Sidebar Styling */
.pkp_structure_sidebar {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
  border-left: 4px solid var(--primary-purple);
  border-radius: 8px;
  padding: 25px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Article Styling */
.obj_article_summary {
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-green);
  border-radius: 8px;
  padding: 25px;
  margin: 20px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obj_article_summary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-purple);
  font-family: 'Segoe UI', sans-serif;
  font-weight: 600;
}

h1 {
  border-bottom: 3px solid var(--secondary-gold);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

h2 {
  border-left: 4px solid var(--accent-green);
  padding-left: 15px;
  margin: 25px 0 15px 0;
}

/* Links */
a {
  color: var(--primary-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-gold);
  text-decoration: underline;
}

/* Buttons */
.btn, .pkp_button {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
  border: none;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(96, 75, 152, 0.3);
}

.btn:hover, .pkp_button:hover {
  background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--dark-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(213, 153, 83, 0.4);
}

/* Forms */
.form-control, input[type="text"], input[type="email"], textarea, select {
  border: 2px solid var(--border-color);
  border-radius: 6px;
  padding: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, input:focus, textarea:focus, select:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 8px rgba(96, 75, 152, 0.3);
  outline: none;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

th {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
  color: var(--white);
  padding: 15px;
  font-weight: 600;
  text-align: left;
}

td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-color);
}

tr:nth-child(even) {
  background: var(--light-gray);
}

tr:hover {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
}

/* Cards and Panels */
.card, .panel {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  margin: 20px 0;
}

.card-header, .panel-header {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--dark-green) 100%);
  color: var(--white);
  padding: 15px 20px;
  font-weight: 600;
}

.card-body, .panel-body {
  padding: 25px;
}

/* Alerts and Notifications */
.alert {
  border-radius: 8px;
  padding: 15px 20px;
  margin: 15px 0;
  border-left: 4px solid;
}

.alert-success {
  background: linear-gradient(135deg, rgba(153, 181, 71, 0.1) 0%, rgba(153, 181, 71, 0.2) 100%);
  border-left-color: var(--accent-green);
  color: var(--dark-green);
}

.alert-warning {
  background: linear-gradient(135deg, rgba(213, 153, 83, 0.1) 0%, rgba(213, 153, 83, 0.2) 100%);
  border-left-color: var(--secondary-gold);
  color: var(--dark-gold);
}

.alert-info {
  background: linear-gradient(135deg, rgba(96, 75, 152, 0.1) 0%, rgba(96, 75, 152, 0.2) 100%);
  border-left-color: var(--primary-purple);
  color: var(--dark-purple);
}

/* Footer */
.pkp_structure_footer {
  color: var(--light-gray);
  border-top: 4px solid var(--secondary-gold);
  padding: 30px 0;
}

.pkp_structure_footer a {
  color: var(--light-gold);
}

.pkp_structure_footer a:hover {
  color: var(--secondary-gold);
}

/* Business-specific Elements */
.business-highlight {
  background: linear-gradient(135deg, rgba(96, 75, 152, 0.1) 0%, rgba(213, 153, 83, 0.1) 100%);
  border: 1px solid var(--primary-purple);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.business-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary-purple), var(--secondary-gold), var(--accent-green));
  border-radius: 8px 8px 0 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pkp_structure_main {
    padding: 20px;
  }
  
  .pkp_structure_sidebar {
    margin: 10px 0;
    padding: 15px;
  }
  
  .obj_article_summary {
    padding: 15px;
    margin: 15px 0;
  }
}


.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark, #2c3e2d);
}

.about-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--sage-green, #9caf88);
}

.mission-vision {
    background: var(--light-green, #e8f5e8);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.focus-areas {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.focus-item {
    background: var(--wheat-yellow, #f5deb3);
    padding: 18px;
    border-radius: 8px;
    border-left: 5px solid var(--secondary-green, #4a7c59);
    transition: transform 0.3s ease;
}

.focus-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(74, 124, 89, 0.2);
}

.commitment-section {
    background: var(--cream, #f5f5dc);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border: 1px solid var(--border-color, #a0b894);
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    margin: 12px 0;
    padding: 10px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid var(--accent-gold, #d4af37);
}

.contact-info {
    background: var(--light-green, #e8f5e8);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.agricultural-accent:before {
    content: "🌾";
    margin-right: 8px;
    color: var(--accent-gold, #d4af37);
}

.growth-icon:before {
    content: "🌱";
    margin-right: 8px;
    color: var(--secondary-green, #4a7c59);
}

.harvest-border {
    border-top: 3px solid var(--accent-gold, #d4af37);
    border-bottom: 3px solid var(--sage-green, #9caf88);
    padding: 20px 0;
    margin: 25px 0;
}

h2 {
    color: var(--primary-green, #2d5016);
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px dotted var(--sage-green, #9caf88);
    padding-bottom: 15px;
}

h3 {
    color: var(--primary-green, #2d5016);
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

strong {
    color: var(--earth-brown, #8b4513);
}


/*Sidebar nav*/
.journal-sidebar-nav {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid var(--sage-green, #9caf88);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    font-family: Georgia, 'Times New Roman', serif;
    margin: 0 auto;
}

.nav-header {
    background: linear-gradient(135deg, var(--primary-green, #2d5016) 0%, var(--secondary-green, #4a7c59) 100%);
    padding: 20px;
    text-align: center;
}

.nav-title {
    color: var(--wheat-yellow, #f5deb3);
    margin: 0;
    font-size: 1.3em;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.sidebar-navigation {
    padding: 0;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    border-bottom: 1px solid var(--border-color, #a0b894);
    transition: all 0.3s ease;
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-item:hover {
    background: linear-gradient(90deg, var(--light-green, #e8f5e8) 0%, transparent 100%);
    transform: translateX(3px);
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--text-dark, #2c3e2d);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    color: var(--primary-green, #2d5016);
    background: rgba(156, 175, 136, 0.1);
}

.nav-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--accent-gold, #d4af37);
    transition: width 0.3s ease;
    z-index: 0;
}

.nav-link:hover:before {
    width: 4px;
}

.nav-icon {
    font-size: 1.2em;
    margin-right: 12px;
    width: 25px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.nav-text {
    flex: 1;
    font-weight: 500;
    font-size: 0.95em;
    z-index: 1;
    position: relative;
}

.nav-arrow {
    font-size: 0.9em;
    color: var(--secondary-green, #4a7c59);
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
}

.nav-link:hover .nav-arrow {
    transform: translateX(5px);
    color: var(--primary-green, #2d5016);
}

.nav-footer {
    background: var(--cream, #f5f5dc);
    padding: 20px;
    text-align: center;
    border-top: 2px solid var(--sage-green, #9caf88);
}

.agricultural-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quote-icon {
    font-size: 1.5em;
    animation: grow 2s ease-in-out infinite;
}

@keyframes grow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.agricultural-quote p {
    margin: 0;
    font-style: italic;
    color: var(--earth-brown, #8b4513);
    font-size: 0.9em;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .journal-sidebar-nav {
        max-width: 100%;
        margin: 10px 0;
    }
    
    .nav-link {
        padding: 15px 18px;
    }
    
    .nav-text {
        font-size: 0.9em;
    }
    
    .nav-title {
        font-size: 1.2em;
    }
}

/* Active state for current page */
.nav-item.active .nav-link,
.nav-link.current {
    background: linear-gradient(90deg, var(--accent-gold, #d4af37) 0%, rgba(212, 175, 55, 0.1) 100%);
    color: var(--primary-green, #2d5016);
    font-weight: bold;
    border-left: 4px solid var(--primary-green, #2d5016);
}

.nav-item.active .nav-link:before,
.nav-link.current:before {
    width: 4px;
    background: var(--primary-green, #2d5016);
}

/* Subtle animation for the entire sidebar */
.journal-sidebar-nav {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    .pkp_block {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .pkp_site_name .is_img img {
        max-height: 203px;
    }
}

@media (max-width: 536px) {
    .pkp_site_name .is_img img {
        display: block;
        max-height: 6.143rem;
        max-width: 100%;
        width: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    .pkp_structure_main {
        padding: 1px;
    }
}



.editorial-board-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-header h1 {
            color: var(--primary-purple);
            font-size: 2.5em;
            margin-bottom: 15px;
            border-bottom: 3px solid var(--secondary-gold);
            display: inline-block;
            padding-bottom: 10px;
        }

        .page-header p {
            color: var(--text-light);
            font-size: 1.1em;
            margin-top: 10px;
        }

        .editorial-section {
            background: var(--white);
            border-radius: 12px;
            padding: 35px;
            margin-bottom: 30px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            border-top: 4px solid var(--accent-green);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .editorial-section:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.15);
        }

        .section-title {
            color: var(--primary-purple);
            font-size: 1.8em;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--secondary-gold);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-title::before {
            content: '';
            width: 8px;
            height: 35px;
            background: linear-gradient(to bottom, var(--primary-purple), var(--accent-green));
            border-radius: 4px;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .member-card {
            background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
            border: 1px solid var(--border-color);
            border-left: 4px solid var(--primary-purple);
            border-radius: 10px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .member-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary-purple), var(--secondary-gold));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .member-card:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 16px rgba(96, 75, 152, 0.2);
            border-left-color: var(--secondary-gold);
        }

        .member-card:hover::before {
            opacity: 1;
        }

        .member-role {
            color: var(--secondary-gold);
            font-weight: 600;
            font-size: 0.95em;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .member-name {
            color: var(--primary-purple);
            font-size: 1.3em;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .member-affiliation {
            color: var(--text-light);
            font-size: 0.95em;
            line-height: 1.5;
            margin-top: 8px;
        }

        .board-members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .board-member-card {
            background: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 20px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 20px;
        }

        .board-member-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent-green);
            border-radius: 8px 0 0 8px;
            transition: width 0.3s ease;
        }

        .board-member-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(153, 181, 71, 0.2);
        }

        .board-member-card:hover::before {
            width: 8px;
            background: linear-gradient(to bottom, var(--accent-green), var(--secondary-gold));
        }

        .board-member-name {
            color: var(--primary-purple);
            font-size: 1.1em;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .board-member-affiliation {
            color: var(--text-light);
            font-size: 0.9em;
            line-height: 1.4;
        }

        .coming-soon {
            background: linear-gradient(135deg, rgba(213, 153, 83, 0.1) 0%, rgba(213, 153, 83, 0.2) 100%);
            border: 2px dashed var(--secondary-gold);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            margin-top: 20px;
        }

        .coming-soon-text {
            color: var(--dark-gold);
            font-size: 1.1em;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .editorial-board-container {
                padding: 20px 15px;
            }

            .page-header h1 {
                font-size: 2em;
            }

            .editorial-section {
                padding: 25px 20px;
            }

            .leadership-grid,
            .board-members-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.5em;
            }
        }