/*!
Theme Name: AUMKAR MSP
Theme URI: https://msp.aumkar.in
Description: Professional Manuscript Submission Platform with integrated dashboard and peer review system
Version: 1.0
Author: AUMKAR Team
Author URI: https://aumkar.in
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aumkar-msp
Domain Path: /languages
Tags: manuscript, submission, peer-review, dashboard, responsive, green

AUMKAR MSP - Comprehensive Manuscript Submission Platform
A professional WordPress theme for academic manuscript submissions with integrated dashboard
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.odia {
    font-family: 'Noto Sans Odia', 'Arial Unicode MS', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2E7D32;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1B5E20;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2E7D32;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #1B5E20;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #81C784;
}

.btn-secondary:hover {
    background-color: #66BB6A;
}

/* Header */
header {
    background: linear-gradient(135deg, #2E7D32 0%, #43A047 50%, #66BB6A 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    height: 50px;
    width: auto;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Main Content */
main {
    min-height: 70vh;
    padding: 40px 0;
    background: linear-gradient(135deg, #f0f9f7 0%, #f1f8e9 50%, #f5faf8 100%);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: #A5D6A7;
}

footer a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* WordPress Specific Styles */
.wp-caption {
    text-align: center;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}
