/* 
    EMSAJ Publishers - Tablet Card UI Layout
    Theme: Elevated Modern Academic (Navy & Gold)
*/

/************************** Global Background *******************************/

body {
    background-image: url(https://emsajpublishers.org/photos/motif.jpg);
    background-attachment: fixed;
    background-size: cover;
    padding-top: 20px;
}

/************************** Main Content "Tablet" Box *******************************/

/* This makes the entire main content area look like a single lifted tablet */
.pkp_structure_main {
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    padding: 30px !important;
    border: 1px solid #e1e1e1;
    border-top: 6px solid #1A1A3E; /* Navy Top Border Accent */
    margin-bottom: 40px;
}

/************************** Article List (Responsive Card Form) *******************************/

.obj_article_summary {
    background: #ffffff !important;
    border: 1px solid #eee !important;
    border-left: 5px solid #efa83f !important; /* Gold side accent */
    border-radius: 8px !important;
    padding: 25px !important;
    margin-bottom: 25px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important; /* Smooth professional curve */
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

/* Responsive Hover Effect */
.obj_article_summary:hover {
    transform: translateY(-5px) scale(1.01); /* Lifts the card up and slightly grows */
    box-shadow: 0 15px 35px rgba(26, 26, 62, 0.15) !important; /* Deeper shadow on hover */
    border-color: #efa83f !important;
    z-index: 10;
}

.obj_article_summary .title a {
    color: #1A1A3E;
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

/************************** Section Headings as Tabs *******************************/

.obj_issue_toc .section > h2 {
    display: inline-block;
    background: #1A1A3E;
    color: #fff !important;
    padding: 8px 25px;
    border-radius: 4px 20px 20px 4px; /* Tab-like shape */
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0px #efa83f; /* Gold shadow offset */
}

/************************** Sidebar Tablet Blocks *******************************/

.pkp_block {
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    margin-bottom: 30px !important;
    overflow: hidden;
    border: 1px solid #eee;
}

.pkp_block .title {
    background: #1A1A3E !important;
    color: #fff !important;
    padding: 15px !important;
    border-bottom: 3px solid #efa83f !important; /* Gold border beneath title */
    margin: 0 !important;
}

.pkp_block .content {
    padding: 15px !important;
}

/************************** Announcement "Tablet" Form *******************************/

.obj_announcement_summary {
    background: #fdfdfd;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.obj_announcement_summary:hover {
    border-color: #1A1A3E;
}

/************************** Navigation & Buttons *******************************/

/* Make navigation sit on top of the background motif clearly */
.pkp_navigation_primary_row {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(5px);
    border-bottom: 4px solid #efa83f !important;
}

/* Primary Action Buttons */
.obj_galley_link {
    background: #1A1A3E !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 8px 18px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
}

.obj_galley_link:hover {
    background: #efa83f !important;
    color: #1A1A3E !important;
}