/* ===================================
   PAGE-SPECIFIC ENHANCEMENTS
   Additional styles for specific journal pages
   =================================== */

/* ===================================
   1. ABOUT PAGE
   =================================== */
.about-event-area2 {
    background: #f5f7fa;
    padding: 40px 0;
    min-height: 100vh;
}

.about-content {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.about-content h3 {
    color: #10b981;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #047857;
}

.about-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #34495e;
    margin-bottom: 18px;
}

/* ===================================
   2. EDITORIAL BOARD PAGE
   =================================== */
.editorial-board-wrapper {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.editorial-member {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 5px solid #10b981;
    transition: all 0.4s ease;
}

.editorial-member:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    transform: translateX(8px);
    border-left-color: #047857;
}

.editorial-member .member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10b981;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    margin-right: 25px;
    float: left;
}

.editorial-member .member-info {
    overflow: hidden;
}

.editorial-member .member-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.editorial-member .member-title {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.editorial-member .member-details {
    font-size: 15px;
    color: #34495e;
    line-height: 1.8;
}

/* ===================================
   3. ARCHIVE PAGE
   =================================== */
.archive-page {
    background: #f5f7fa;
    padding: 40px 0;
}

.archive-volume {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.archive-volume-header {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.archive-volume-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.archive-volume-year {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
}

.archive-article {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #047857;
    transition: all 0.3s ease;
}

.archive-article:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
    border-left-color: #10b981;
}

.archive-article-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.5;
}

.archive-article-authors {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 8px;
}

.archive-article-meta {
    font-size: 13px;
    color: #95a5a6;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.archive-article-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

.archive-article-actions .btn {
    padding: 8px 18px;
    font-size: 13px;
}

/* ===================================
   4. AIMS AND SCOPE PAGE
   =================================== */
.aims-scope-content {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.aims-scope-section {
    margin-bottom: 30px;
}

.aims-scope-section h3 {
    color: #10b981;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #047857;
}

.aims-scope-section ul {
    list-style: none;
    padding: 0;
}

.aims-scope-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.8;
    color: #34495e;
}

.aims-scope-section ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

/* ===================================
   5. INSTRUCTIONS FOR AUTHORS PAGE
   =================================== */
.instructions-page {
    background: #f5f7fa;
    padding: 40px 0;
}

.instruction-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.instruction-step {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 5px solid #10b981;
    position: relative;
    padding-left: 60px;
}

.instruction-step-number {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.instruction-step h4 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.instruction-step p {
    color: #34495e;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   6. PEER REVIEW PAGE
   =================================== */
.peer-review-page {
    background: #f5f7fa;
    padding: 40px 0;
}

.peer-review-process {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.process-step {
    position: relative;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
    padding-left: 80px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.process-step-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.process-step h4 {
    color: #10b981;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    color: #34495e;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   7. FEES AND WAIVERS PAGE
   =================================== */
.fees-waivers-page {
    background: #f5f7fa;
    padding: 40px 0;
}

.pricing-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border-top: 5px solid #10b981;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.pricing-card.featured {
    border-top-color: #047857;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 5px;
}

.pricing-period {
    font-size: 16px;
    color: #7f8c8d;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e1e8ed;
    color: #34495e;
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #10b981;
    margin-right: 10px;
}

/* ===================================
   8. TRACK MANUSCRIPT PAGE
   =================================== */
.track-manuscript-page {
    background: #f5f7fa;
    padding: 40px 0;
}

.tracking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.tracking-result {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
    border-left: 5px solid #10b981;
}

.tracking-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tracking-status.submitted {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #ffffff;
}

.tracking-status.under-review {
    background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
    color: #ffffff;
}

.tracking-status.accepted {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #ffffff;
}

.tracking-status.rejected {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: #ffffff;
}

/* ===================================
   9. REVIEWER FORM PAGE
   =================================== */
.reviewer-form-page {
    background: #f5f7fa;
    padding: 40px 0;
}

.reviewer-info-box {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.reviewer-info-box h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.reviewer-info-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.8;
}

.reviewer-guidelines {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.guideline-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #10b981;
}

.guideline-item:hover {
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* ===================================
   10. COPYRIGHT POLICY PAGE
   =================================== */
.copyright-policy-page {
    background: #f5f7fa;
    padding: 40px 0;
}

.policy-section {
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.policy-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #10b981;
    margin: 20px 0;
}

.policy-highlight strong {
    color: #047857;
}

/* ===================================
   11. ADVERTISING BANNERS
   =================================== */
.adv-inner-banner {
    margin-bottom: 30px;
}

.adv-inner-banner img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.adv-inner-banner img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ===================================
   12. SEARCH & FILTER SECTIONS
   =================================== */
.search-filter-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.search-filter-section .form-control {
    max-width: 500px;
    margin: 0 auto;
}

/* ===================================
   13. RESPONSIVE ENHANCEMENTS
   =================================== */
@media (max-width: 991px) {
    .editorial-member .member-photo {
        width: 120px;
        height: 120px;
        margin-right: 20px;
    }

    .archive-volume-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .pricing-card {
        margin-bottom: 25px;
    }

    .instruction-step {
        padding-left: 50px;
    }

    .instruction-step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .process-step {
        padding-left: 70px;
    }

    .process-step-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .about-content,
    .editorial-board-wrapper,
    .archive-volume,
    .aims-scope-content,
    .instruction-section,
    .peer-review-process,
    .reviewer-guidelines,
    .policy-section {
        padding: 25px 20px;
    }

    .editorial-member .member-photo {
        width: 100px;
        height: 100px;
        margin: 0 auto 15px;
        float: none;
        display: block;
    }

    .editorial-member {
        text-align: center;
    }

    .archive-article-actions {
        flex-direction: column;
    }

    .archive-article-actions .btn {
        width: 100%;
    }

    .tracking-form {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .editorial-member .member-name {
        font-size: 18px;
    }

    .archive-volume-title {
        font-size: 20px;
    }

    .pricing-amount {
        font-size: 36px;
    }

    .instruction-step,
    .process-step {
        padding: 15px;
        padding-left: 15px;
        padding-top: 60px;
    }

    .instruction-step-number,
    .process-step-icon {
        left: 50%;
        transform: translateX(-50%);
        top: 15px;
    }

    .guideline-item {
        padding: 12px;
    }
}

/* ===================================
   END OF PAGE-SPECIFIC STYLES
   =================================== */
