/* =====================================================
   NOVADEX PUBLICATIONS
   OJS 3.5.0-5
   Professional Publisher Theme
   ===================================================== */

body{
    background:#f5f7fb;
    font-family:"Segoe UI",Arial,sans-serif;
    color:#333;
    font-size:16px;
    line-height:1.7;
}

/* ===========================
   HERO
=========================== */
/* =====================================================
   HERO
===================================================== */

.novadex-hero{

    background:linear-gradient(135deg,#0F4C81,#1976D2);

    color:#fff;

    padding:90px 30px;

}

.hero-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    align-items:center;

}

.hero-left h1{

    font-size:56px;

    line-height:1.2;

    margin:20px 0;

    font-weight:700;

}

.hero-left p{

    font-size:20px;

    line-height:1.9;

    opacity:.95;

    margin-bottom:35px;

}

.hero-badge{

    display:inline-block;

    background:#16A34A;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:.8px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-btn{

    display:inline-block;

    padding:14px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.hero-btn.primary{

    background:#fff;

    color:#0F4C81;

}

.hero-btn.primary:hover{

    background:#eef5ff;

}

.hero-btn.secondary{

    border:2px solid #fff;

    color:#fff;

}

.hero-btn.secondary:hover{

    background:#fff;

    color:#0F4C81;

}

.hero-right{

    text-align:center;

}

.hero-right img{

    width:100%;

    max-width:500px;

}

/*Statisitcs*/
/* ===================================================
   Statistics
=================================================== */

.novadex-stats{
    max-width:1300px;
    margin:-60px auto 80px;
    padding:0 20px;
    position:relative;
    z-index:20;
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background:#fff;
    border-radius:16px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.stat-number{
    font-size:42px;
    font-weight:700;
    color:#005fa3;
}

.stat-title{
    margin-top:12px;
    color:#666;
    font-size:16px;
    font-weight:600;
}

/* =====================================================
   JOURNAL CARDS
===================================================== */

.journals-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:35px;
    transition:.35s ease;
}

.journal-card{
    display:flex;
    gap:30px;
    align-items: flex-start;
    background:#fff;
    border-radius:16px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.journal-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.journal-image{
    width:250px;
    flex-shrink:0;
}

.journal-image img{
    width:100%;
    display:block;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.journal-placeholder{
    width:220px;
    height:300px;
    background:#f2f4f7;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:10px;
    color:#777;
}

.journal-body{
    flex:1;
    display:flex;
    flex-direction:column;
}

.badge-open{
    display:inline-block;
    background:#16a34a;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
    width:max-content;
}

.journal-body h3{
    margin:0 0 18px;
    font-size:30px;
    line-height:1.3;
}

.journal-body h3 a{
    color:#12385f;
    text-decoration:none;
}

.journal-description{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.journal-actions{
    margin-top:auto;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary-custom,
.btn-secondary-custom{
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary-custom{
    background:#0f4c81;
    color:#fff;
}

.btn-secondary-custom{
    border:1px solid #d6d6d6;
    color:#0f4c81;
}

.btn-primary-custom:hover{
    background:#0b3b63;
}

.btn-secondary-custom:hover{
    background:#f5f7fb;
}

@media(max-width:900px){

    .journal-card{
        flex-direction:column;
    }

    .journal-image{
        width:220px;
        margin:auto;
    }

}

/* =====================================================
   Section Header
===================================================== */

.journals-section{

    max-width:1450px;

    margin:80px auto;

    padding:0 30px;

}

.section-header{

    text-align:center;

    margin-bottom:60px;

}

.section-subtitle{

    display:inline-block;

    background:#e8f2fc;

    color:#0f4c81;

    padding:8px 18px;

    border-radius:25px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.section-header h2{

    font-size:42px;

    color:#12385f;

    margin-bottom:15px;

}

.section-header p{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.8;

}

@media (max-width:992px){

    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:576px){

    .stats-container{
        grid-template-columns:1fr;
    }

}

@media (max-width:900px){

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-left h1{

font-size:40px;

}

.hero-left p{

font-size:18px;

}

.hero-right{

margin-top:40px;

}

}
/* =====================================================
   FEATURES
===================================================== */

.features-section{
    max-width:1300px;
    width:100%;
    margin:80px auto;
    padding:0 20px;
    box-sizing:border-box;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:30px;
    width:100%;
    box-sizing:border-box;
}

.feature-card{
    width:100%;
    box-sizing:border-box;
    background:#fff;
    border-radius:20px;
    padding:45px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}
.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.feature-icon{
    font-size:48px;
    margin-bottom:22px;
}

.feature-card h3{
    font-size:28px;
    line-height:1.3;
    color:#0F4C81;
    margin:18px 0;
    font-weight:700;
}
.feature-card p{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin:0;
}
@media (max-width:1200px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .features-grid{
        grid-template-columns:1fr;
    }

}
/* ==========================================
   PUBLISHING SERVICES
========================================== */

.services-section{

    max-width:1300px;

    margin:100px auto;

    padding:0 20px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#fff;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.14);

}

.service-icon{

    font-size:54px;

    margin-bottom:20px;

}

.service-card h3{

    font-size:26px;

    color:#0F4C81;

    margin-bottom:18px;

}

.service-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:1000px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:650px){

.services-grid{

grid-template-columns:1fr;

}

}
/* =====================================================
   PUBLICATION WORKFLOW
===================================================== */

.workflow-section{
    max-width:1300px;
    margin:100px auto;
    padding:0 20px;
}

.workflow-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.workflow-step{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    transition:.3s;
}

.workflow-step:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.14);
}

.step-number{
    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#0F4C81;
    color:#fff;
    font-size:26px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.workflow-step h3{
    font-size:24px;
    color:#12385f;
    margin-bottom:18px;
    line-height:1.3;
}

.workflow-step p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin:0;
}

@media(max-width:992px){

    .workflow-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .workflow-grid{
        grid-template-columns:1fr;
    }

}
/* =====================================================
   CALL FOR PAPERS
===================================================== */

.call-papers-section{

    background:linear-gradient(135deg,#0F4C81,#1976D2);

    color:#fff;

    margin:100px 0;

    padding:80px 30px;

}

.call-papers-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

}

.call-badge{

    display:inline-block;

    background:#16A34A;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.call-left h2{

    font-size:46px;

    margin-bottom:20px;

}

.call-left p{

    font-size:18px;

    line-height:1.9;

    opacity:.95;

}

.call-list{

    list-style:none;

    padding:0;

    margin:35px 0 0;

}

.call-list li{

    margin-bottom:14px;

    font-size:17px;

}

.call-right{

    text-align:center;

}

.call-btn-primary{

    display:block;

    background:#fff;

    color:#0F4C81;

    text-decoration:none;

    padding:16px 30px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:18px;

}

.call-btn-secondary{

    display:block;

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    padding:16px 30px;

    border-radius:40px;

    font-weight:700;

}

.call-btn-primary:hover{

    background:#eef5ff;

}

.call-btn-secondary:hover{

    background:#fff;

    color:#0F4C81;

}

@media(max-width:900px){

    .call-papers-container{

        grid-template-columns:1fr;

        text-align:center;

    }

}
/* =====================================================
   LATEST ANNOUNCEMENTS
===================================================== */

.announcements-section{

    max-width:1300px;

    margin:100px auto;

    padding:0 20px;

}

.announcements-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.announcement-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.announcement-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.announcement-card h3{

    font-size:22px;

    line-height:1.4;

    margin-bottom:18px;

}

.announcement-card a{

    color:#0F4C81;

    text-decoration:none;

}

.announcement-card a:hover{

    text-decoration:underline;

}

@media(max-width:900px){

    .announcements-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:600px){

    .announcements-grid{

        grid-template-columns:1fr;

    }

}

/* =====================================================
   FOOTER
===================================================== */

.novadex-footer{

    background:#0b2743;

    color:#d9e3ef;

    margin-top:100px;

}

.footer-container{

    max-width:1300px;

    margin:auto;

    padding:70px 20px;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-column h3,
.footer-column h4{

    color:#fff;

    margin-bottom:20px;

}

.footer-column p{

    line-height:1.9;

    color:#c7d3df;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#c7d3df;

    text-decoration:none;

}

.footer-column a:hover{

    color:#fff;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    padding:25px;

    color:#b8c4d0;

    font-size:14px;

}

@media(max-width:900px){

    .footer-container{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:600px){

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

}
.pkp_structure_page{
    max-width:100%;
    width:100%;
}

.pkp_structure_content{
    max-width:100%;
    width:100%;
    padding:0;
}

.page_index_site{
    max-width:100%;
    width:100%;
}
/*Journal Search */
.journal-search{

    max-width:600px;

    margin:40px auto 60px;

}

.journal-search input{

    width:100%;

    padding:16px 22px;

    border:1px solid #d9e2ec;

    border-radius:40px;

    font-size:17px;

    outline:none;

    transition:.3s;

}

.journal-search input:focus{

    border-color:#0F4C81;

    box-shadow:0 0 0 4px rgba(15,76,129,.12);

}
/*Full Width*/
/* Full-width page */

.pkp_structure_page{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0;
}

.pkp_structure_content{
    width:100%;
    max-width:100%;
    padding:0;
}

.page_index_site{
    width:100%;
    max-width:100%;
}
.hero-container,
.stats-container,
.journals-section,
.features-section,
.workflow-section,
.footer-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 30px;
}
/* Make OJS homepage full width */

.pkp_page_index .pkp_structure_content,
.pkp_page_index .pkp_structure_main{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0;
}

/* Hero should span edge to edge */

.novadex-hero{
    width:100%;
}

/* All homepage sections */

.page_index_site,
.features-section,
.services-section,
.workflow-section,
.call-papers-section,
.novadex-footer{
    width:100%;
}

/* Keep content centered */

.hero-container,
.stats-container,
.journals-section,
.features-section > .section-header,
.features-grid,
.services-section > .section-header,
.services-grid,
.workflow-section > .section-header,
.workflow-grid,
.call-papers-container,
.footer-container{
    max-width:1400px;
    margin:0 auto;
}
/* Remove OJS vertical borders */

.pkp_structure_content,
.pkp_structure_main,
.pkp_page_index,
.page_index_site{
    border:none !important;
    box-shadow:none !important;
}
.pkp_structure_content::before,
.pkp_structure_content::after,
.pkp_structure_main::before,
.pkp_structure_main::after{
    display:none !important;
    content:none !important;
}
