:root {
    --primary: #1a472a;
    --primary-dark: #0d2817;
    --accent: #c9a961;
    --text: #2c2c2c;
    --text-light: #666;
    --bg: #fafafa;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

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

.indexb {
    text-align: justify;
}
/* Header */
header {
    background: var(--primary);
    color: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px var(--shadow);
}


.site-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.site-description {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

/* Navigation */
nav {
    background: var(--primary-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px var(--shadow);
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav li {
    position: relative;
}

nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

nav a:hover, nav a.active {
    background: var(--accent);
    color: var(--primary-dark);
}

/* Main Content */
main {
    min-height: calc(100vh - 400px);
    padding: 3rem 0;
}

.page-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.content-box {
    background: var(--white);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 15px var(--shadow);
}

/* Articles */
.article-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px var(--shadow);
}

.article-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.article-authors {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-abstract {
    margin: 1rem 0;
    line-height: 1.8;
    text-align: justify;
}

.keywords {
    margin: 1rem 0;
}

.keyword {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    margin: 0.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px var(--shadow);
}

.btn-download {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-download:hover {
    background: var(--primary);
    color: var(--white);
}

/* Issue Info */
.issue-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.issue-info h2 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Archive List */
.archive-list {
    list-style: none;
}

.archive-item {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s ease;
}

.archive-item:hover {
    border-left-color: var(--accent);
    transform: translateX(5px);
}

.archive-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0 0;
    margin-top: 4rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {}

.footer-journal-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.footer-desc {
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.5rem;
}

.footer-links-list a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links-list a:hover {
    color: var(--accent);
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.2rem 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: .5rem 0;
    background: var(--white);
}

th, td {
    padding: 0.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

tr:hover {
    background: #f5f5f5;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 4px;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.8rem;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav a {
        padding: 0.8rem 1rem;
    }
    
    .content-box {
        padding: 1.5rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
