/* Smaller header address text */
.header-address-small {
    font-size: 0.95em;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0px;
    margin-top: 0px;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.1;
}
/* Magazine Title - Professional, No Background */
.magazine-title {
    font-family: 'Merriweather', serif;
    font-size: 2em;
    font-weight: 700;
    color: var(--accent-color) !important;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 8px;
    display: inline-block;
    letter-spacing: 1px;
    line-height: 1.1;
    border: none;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d3748;
    --secondary-color: #4a5568;
    --accent-color: #ed8936;
    --success-color: #38a169;
    --warning-color: #e53e3e;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-light: #a0aec0;
    --background-primary: #ffffff;
    --background-secondary: #f7fafc;
    --background-accent: #edf2f7;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

    body {
        font-family: 'Merriweather', 'Georgia', serif;
        line-height: 1.7;
        color: #222;
        background-color: #f7f7fa;
    }

    .main-content {
        max-width: 800px;
        margin: 0 auto;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        padding: 40px 32px;
        font-family: 'Merriweather', 'Georgia', serif;
    }

    .article-list {
        display: flex;
        flex-direction: column;
        gap: 36px;
        align-items: center;
        margin: 30px 0;
    }

    .article-item {
        width: 100%;
        max-width: 650px;
        background: #f9f9fc;
        padding: 36px 32px;
        border-radius: 14px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        border: 1px solid #e3e6f0;
        font-family: 'Georgia', serif;
    }

    .article-title {
        font-size: 1.6em;
        font-family: 'Merriweather', serif;
        color: #1a237e;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .download-btn {
        background: #3949ab;
        color: #fff;
        font-family: 'Merriweather', serif;
        font-size: 1em;
        padding: 10px 28px;
        border-radius: 6px;
        border: none;
        box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        cursor: pointer;
        transition: background 0.2s;
    }
    .download-btn:active {
        background: #0056b3;
    }

/* Header Styles */
header {
    background-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

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

.logo-section {
    text-align: center;
    padding: 30px 0;
}

.site-title {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.dept-title {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 500;
    margin: 8px 0;
    text-align: center;
}

.journal-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0;
    text-align: center;
}

.issn {
    font-style: italic;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-section {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation Styles */
.main-nav {
    text-align: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 16px 24px;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    position: relative;
}

.main-nav li:last-child a {
    border-right: none;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-1px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 30px auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 0 20px;
}

/* Sidebar Styles */
.sidebar {
    background: var(--background-primary);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    border: 1px solid var(--border-color);
}

.sidebar section {
    margin-bottom: 30px;
}

.sidebar h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.sidebar ul, .sidebar ol {
    padding-left: 20px;
}

.sidebar li {
    margin-bottom: 10px;
}

.sidebar a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Main Content Styles */
.main-content {
    background: var(--background-primary);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.main-content h1 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.main-content h2 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.main-content hr {
    border: none;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 25px;
    border-radius: 1px;
}

.main-content p {
    margin-bottom: 18px;
    text-align: justify;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Inspirational Quote */
.quote-section {
    margin-bottom: 40px;
    text-align: center;
}

.inspirational-quote {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    padding: 30px;
    background-color: var(--background-accent);
    border-radius: 8px;
    text-align: center;
    line-height: 1.4;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

/* Principal Message */
.principal-message,
.hod-message,
.mentor-message {
    margin-bottom: 30px;
    background-color: var(--background-secondary);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.principal-message h2,
.hod-message h2,
.mentor-message h2,
.team-introduction h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.message-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.principal-info {
    flex-shrink: 0;
}

.principal-image {
    text-align: center;
}

.principal-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
    margin-bottom: 15px;
}

.principal-title {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.message-text {
    flex: 1;
}

.message-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.message-text p:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Journal Introduction */
.journal-intro {
    margin-bottom: 30px;
}

.journal-intro h1,
.journal-intro h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.journal-intro h2 {
    font-size: 24px;
}

.journal-intro p {
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}


/* Department Info Section */
.department-info {
    margin-top: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    background: var(--background-primary);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Publication Info Section */
.publication-info {
    margin-top: 40px;
    background-color: var(--background-gray);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.publication-info p {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Indexing Section */
.indexing-section {
    margin-top: 40px;
}

.indexing-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    align-items: center;
    justify-items: center;
    margin-top: 20px;
}

.indexing-logos img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(50%);
    transition: filter 0.3s;
}

.indexing-logos img:hover {
    filter: grayscale(0%);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.footer-nav {
    margin-bottom: 25px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.copyright {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.copyright a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: white;
}

.copyright strong {
    color: var(--accent-color);
}

/* NAAC Accredited text */
.naac-accredited {
    color: #e53935;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 2px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-section {
        padding: 15px 0;
        background-color: var(--primary-color);
    }

    .site-title {
        font-size: 24px;
    }

    .dept-title {
        font-size: 16px;
    }

    .journal-title {
        font-size: 14px;
    }

    .issn {
        font-size: 14px;
        margin-top: 8px;
    }

    .nav-section {
        padding: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        padding: 12px 20px;
        font-size: 14px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card {
        padding: 15px;
    }

    .inspirational-quote {
        font-size: 24px;
        padding: 20px 15px;
        letter-spacing: 0.5px;
    }

    .message-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* .principal-photo {
        width: 120px;
        height: 120px;
    } */

    .principal-title {
        font-size: 13px;
        padding: 8px 12px;
    }

    .indexing-logos {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 15px;
    }

    .indexing-logos img {
        max-height: 40px;
        max-width: 80px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-member {
        padding: 15px;
    }

    .team-photo {
        width: 100px;
        height: 100px;
    }
}

/* Animation Effects */
.sidebar, .main-content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Team Introduction */
.team-introduction {
    margin-bottom: 30px;
    background: var(--background-secondary);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.team-member {
    background: var(--background-primary);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.team-member.leadership {
    border-left: 3px solid var(--primary-color);
}

.team-member.student {
    border-left: 3px solid var(--accent-color);
}

.member-photo {
    margin-bottom: 15px;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: border-color 0.3s ease;
}

.team-member.student .team-photo {
    border-color: var(--accent-color);
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.member-role {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    background-color: var(--background-gray);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Archives Page Styles */
.search-section {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-accent) 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 35px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.search-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.search-box {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background-color: var(--background-primary);
}

.search-box:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(237, 137, 54, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 18px;
    border: 2px solid var(--secondary-color);
    background: var(--background-primary);
    color: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.archives-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.archive-year {
    background: var(--background-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.archive-year:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.year-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 20px 30px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.year-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.issues-container {
    padding: 25px;
}

.issue-card {
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    opacity: 0.1;
    border-radius: 0 10px 0 60px;
}

.issue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.issue-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.issue-details {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.issue-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.issue-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.view-issue-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f6ad55 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.view-issue-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.view-issue-btn.secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #718096 100%);
}

.view-issue-btn.secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Hover Effects */
.sidebar section {
    transition: transform 0.3s ease;
}

.sidebar section:hover {
    transform: translateX(5px);
}
