/* ==========================================================================
   Patrika CMS
   Global Stylesheet
   Version : 1.0
   ========================================================================== */


/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root{

    /* Brand Colors */

    --primary:#1B5E20;
    --primary-dark:#124218;
    --secondary:#795548;
    --accent:#C89B3C;

    /* Neutrals */

    --white:#ffffff;
    --light:#f8f9fa;
    --border:#dee2e6;
    --text:#212529;
    --muted:#6c757d;

    /* Footer */

    --footer:#1f1f1f;

    /* Radius */

    --radius:8px;

    /* Shadow */

    --shadow:0 4px 18px rgba(0,0,0,.08);

}


/* ==========================================================================
   RESET
   ========================================================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    font-size:16px;

    line-height:1.7;

    color:var(--text);

    background:var(--white);

}


/* ==========================================================================
   LINKS
   ========================================================================== */

a{

    color:var(--primary);

    text-decoration:none;

    transition:.3s;

}

a:hover{

    color:var(--primary-dark);

}


/* ==========================================================================
   HEADINGS
   ========================================================================== */

h1,h2,h3,h4,h5,h6{

    font-weight:700;

    margin-bottom:15px;

}

h1{

    font-size:2.5rem;

}

h2{

    font-size:2rem;

}

h3{

    font-size:1.75rem;

}

h4{

    font-size:1.4rem;

}

h5{

    font-size:1.2rem;

}

h6{

    font-size:1rem;

}


/* ==========================================================================
   PARAGRAPHS
   ========================================================================== */

p{

    margin-bottom:15px;

}


/* ==========================================================================
   IMAGES
   ========================================================================== */

img{

    max-width:100%;

    height:auto;

}


/* ==========================================================================
   CONTAINER
   ========================================================================== */

.container{

    max-width:1200px;

}


/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header{

    background:#ffffff;

    border-bottom:1px solid var(--border);

}

.site-logo{

    max-height:80px;

}


/* ==========================================================================
   PRIMARY NAVIGATION
   ========================================================================== */

.navbar{

    padding:.8rem 0;

}

.navbar-nav .nav-link{

    font-weight:600;

    padding:.8rem 1rem;

    color:var(--text);

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .active{

    color:var(--primary)!important;

}


/* ==========================================================================
   SECONDARY NAVIGATION
   ========================================================================== */

.secondary-nav{

    background:var(--primary);

}

.secondary-nav .nav-link{

    color:#ffffff;

    font-weight:500;

}

.secondary-nav .nav-link:hover{

    color:#ffffff;

    opacity:.9;

}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn{

    border-radius:var(--radius);

    padding:.65rem 1.25rem;

    font-weight:600;

}

.btn-success{

    background:var(--primary);

    border-color:var(--primary);

}

.btn-success:hover{

    background:var(--primary-dark);

    border-color:var(--primary-dark);

}


/* ==========================================================================
   CARDS
   ========================================================================== */

.card{

    border:none;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}


/* ==========================================================================
   TABLES
   ========================================================================== */

.table{

    vertical-align:middle;

}


/* ==========================================================================
   FORMS
   ========================================================================== */

.form-control{

    border-radius:var(--radius);

}

.form-control:focus{

    border-color:var(--primary);

    box-shadow:none;

}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer{

    background:var(--footer);

    color:#ffffff;

}

.footer-main{

    width:calc(100% - 2rem);

    max-width:1500px;

    padding-top:2.25rem;

    padding-bottom:2.25rem;

}

.footer-grid > .col{

    display:flex;

}

.footer-panel{

    display:flex;

    flex-direction:column;

    width:100%;

    height:100%;

    min-height:250px;

    padding:1.2rem 1.15rem;

    border-top:2px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.025);

    border-radius:0 0 8px 8px;

}

.footer-heading{

    min-height:2.5rem;

    margin:0 0 1rem;

    font-size:1rem;

    line-height:1.25;

    letter-spacing:.02em;

}

.footer-journal-name{

    margin:0 0 .85rem;

    color:#ffffff;

    font-family:Georgia, "Times New Roman", serif;

    font-size:.98rem;

    font-weight:700;

    line-height:1.45;

}

.footer-journal-name--hindi{

    font-family:"Noto Serif Devanagari", Georgia, serif;

}

.footer-issn{

    display:flex;

    flex-wrap:wrap;

    gap:.25rem .45rem;

    margin:.15rem 0 1.15rem;

    color:#d8d8d8;

    font-size:.82rem;

}

.footer-issn strong{

    color:#ffffff;

}

.footer-kicker{

    margin:-.4rem 0 1rem;

    color:#bfc8bf;

    font-size:.78rem;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.footer-email-list{

    margin:0 0 1rem;

    overflow-wrap:anywhere;

}

.footer-email-list li{

    margin-bottom:.75rem;

}

.footer-publisher{

    display:flex;

    flex-direction:column;

    gap:.18rem;

    padding-top:.8rem;

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

    color:#dddddd;

    font-size:.8rem;

}

.footer-publisher span{

    color:#aeb8ae;

    font-size:.7rem;

    letter-spacing:.08em;

    text-transform:uppercase;

}

.footer-publisher strong{

    color:#ffffff;

}

.footer ul{

    list-style:none;

    padding-left:0;

}

.footer ul li{

    margin-bottom:.55rem;

}

.footer a{

    color:#dddddd;

}

.footer a:hover{

    color:#ffffff;

}


/* Footer CTA Buttons */

.footer .btn{

    width:100%;

    min-height:58px;

    padding:.85rem 1rem;

    border-radius:6px;

    font-size:1rem;

    font-weight:600;

}

.footer-actions{

    width:100%;

    margin-top:1.35rem;

}

.footer-contact-btn{

    margin-top:1.15rem;

    border:1px solid rgba(255,255,255,.65);

    color:#ffffff;

    background:transparent;

}

.footer-contact-btn:hover{

    border-color:#ffffff;

    color:#1f1f1f;

    background:#ffffff;

}


/* ==========================================================================
   UTILITIES
   ========================================================================== */

.section{

    padding:70px 0;

}

.section-title{

    margin-bottom:40px;

    text-align:center;

}

.text-primary{

    color:var(--primary)!important;

}

.bg-light{

    background:#f8f9fa!important;

}

.shadow-custom{

    box-shadow:var(--shadow);

}

.rounded-custom{

    border-radius:var(--radius);

}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width:992px){

    .navbar-nav{

        text-align:center;

    }

    .footer{

        text-align:center;

    }

    .footer-panel{

        min-height:0;

    }

    .footer-issn{

        justify-content:center;

    }

}

@media (max-width:768px){

    h1{

        font-size:2rem;

    }

    h2{

        font-size:1.7rem;

    }

    .section{

        padding:50px 0;

    }

}

@media (max-width:576px){

    body{

        font-size:15px;

    }

    .site-logo{

        max-height:60px;

    }

}
