/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Asimovian&family=Kode+Mono:wght@400..700&family=Mina:wght@400;700&family=Noto+Sans+Meetei+Mayek:wght@100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Special+Elite&display=swap');

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

body {
 font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
    color: #2c3e50;
    background-color: #A888B5;
}

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

/* Typography */
 h3, h4, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-left: 4rem;
}

h1 { 
    font-size: 3.5rem;    
    font-family: 'Asimovian', serif;
    font-weight: 400;
    font-style: normal;
}
h2 {
    font-family: "Kode Mono", monospace;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 1rem 4rem;
    letter-spacing: 0.05em;
}
h3 {   font-family: "Space Mono", monospace;
  font-weight: 700;
    margin: 0 0 1rem 5rem;
    letter-spacing: 0.05em;
}
h4 { font-size: 1rem; text-align: left;}
h5 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    color: #95a5a6;
    letter-spacing: 0.1em;
}

h6 { font-size: 3.5rem;    
  font-family: "Mina", sans-serif;
    font-weight: 400;
    font-style: normal;}

    h7 { font-size: 3.5rem;    
  font-family: "Noto Sans Meetei Mayek", sans-serif;
    font-weight: 400;
    font-style: normal;}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    background: #493D9E;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.nav-logo h1 {
    font-size: 2rem;
    font-weight: 900;
    color: #FBFFE4;
    margin: 0;
}

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

.nav-link {
    text-decoration: none;
    color: #FBFFE4;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FAD0C4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FAD0C4;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #FBFFE4;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-secondary:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
}

.flash-message {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    color: white;
    position: relative;
    animation: slideIn 0.3s ease;
}

.flash-message.success {
    background: #27ae60;
}

.flash-message.error {
    background: #e74c3c;
}

.close-flash {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #493D9E;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: white;
    padding-top: 80px;
    position: relative;
}

.hero-logo {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.club-logo {
    max-width: 100px;
    height: auto;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 0px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.club-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Gradient overlay for smooth transition */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(73, 61, 158, 1) 0%, 
        rgba(73, 61, 158, 0.8) 30%, 
        rgba(73, 61, 158, 0.4) 60%, 
        rgba(73, 61, 158, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

/* Hero Title Container */
.hero-title-container {
    position: relative;
    height: 50px;
    margin: 0 0 0.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-title {
    position: absolute;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #FBFFE4;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.1s ease;
    margin: 0;
}

.hero-title.active {
    opacity: 1;
    transform: translateY(0);
}

/* Individual script styling */
.hero-title[data-script="english"] {
    font-family: 'Asimovian', serif;
}

.hero-title[data-script="bengali"] {
    font-family: "Mina", sans-serif;
}

.hero-title[data-script="manipuri"] {
    font-family: "Noto Sans Meetei Mayek", sans-serif;
}


.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;

    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    margin: 0 0 0.5rem 0;
    color: #fcffff;
    letter-spacing: 0.03em;
    max-width: 600px;
    line-height: 1.5;
    margin-left: 4rem;
}


.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
    margin-left: 4rem;
}

/* Home Page Specific Hero Layout */
.home-hero {
    position: relative;
    min-height: 60vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

/* Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video Overlay for better text readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(73, 61, 158, 0.7) 0%,
        rgba(73, 61, 158, 0.5) 50%,
        rgba(73, 61, 158, 0.8) 100%
    );
    z-index: 2;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.home-hero .hero-logo {
    position: static !important;
    flex: 0 0 auto;
    margin-right: 0rem;
    margin-left: 0;
    transform: none !important;
    z-index: auto !important;
    top: auto !important;
    right: auto !important;
}

.home-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.home-hero .hero-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.home-hero .hero-title-container h1,
.home-hero .hero-title-container h6,
.home-hero .hero-title-container h7 {
    margin: 0;
    display: inline-block;
    white-space: nowrap;
}

.home-hero .hero-content h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #FBFFE4;
    opacity: 0.9;
}

.home-hero .hero-content h2 {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 400;
    color: #FBFFE4;
    opacity: 0.8;
}

.home-hero .hero-logo .club-logo {
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

/* Removed old hero image styles - now using background image */

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

/* Removed float animation - no longer needed */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Latest Issue Section */
.latest-issue {
    padding: 5rem 0;
    background: #A888B5;
}

.issue-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.issue-cover {
    text-align: center;
}

.cover-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cover-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.issue-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.issue-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.featured-articles h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.featured-articles ul {
    list-style: none;
    margin-bottom: 2rem;
}

.featured-articles li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.featured-articles li:last-child {
    border-bottom: none;
}

/* Recent Issues Grid */
.recent-issues {
    padding: 5rem 0;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.issue-card {
    background: #8174A0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.issue-card-cover {
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.issue-card-content {
    padding: 1.5rem;
}

.issue-card-content h4 {
    color: #FBFFE4;
    margin-bottom: 0.5rem;
}

.issue-card-content p {
    color: #FBFFE4;
    margin-bottom: 1rem;
}

.view-all-container {
    text-align: center;
}

/* Subscribe Section */
.subscribe-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 4rem 0;
}

.subscribe-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-content h2 {
    margin-bottom: 1rem;
}

.subscribe-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.subscribe-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #441752;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #bdc3c7;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.proudly-built {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.proudly-built span {
    font-weight: 500;
}

.lookmai-logo {
    height: 100px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.lookmai-logo:hover {
    opacity: 1;
}

/* Page Header */
    .page-header {
        background: #493D9E;
        color: #FBFFE4;
        padding: 8rem 0 4rem;
        text-align: center;
        position: relative;
    }

    @media (max-width: 768px) {
        .page-header {
            margin-top: 70px;
            padding: 2rem 0;
        }
    }

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(73, 61, 158, 1) 0%, 
        rgba(73, 61, 158, 0.8) 30%, 
        rgba(73, 61, 158, 0.4) 60%, 
        rgba(73, 61, 158, 0) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Issues Page */
.issues-page {
    padding: 4rem 0;
    background: #A888B5;
}

.issues-filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: #2c3e50;
}

.filter-group select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.issues-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.issue-card-large {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.issue-card-large:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(143, 135, 241, 0.3);
}

.issue-card-cover-large {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: transparent;
}

.issue-card-cover-large-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.issue-card-large:hover .issue-card-cover-large-img {
    transform: scale(1.05);
}

.cover-placeholder-large {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.cover-placeholder-large h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.issue-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
    z-index: 1;
}

.issue-card-large:hover .issue-overlay {
    opacity: 1;
}

.issue-card-content-large {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.issue-card-large:hover .issue-card-content-large {
    transform: translateY(0);
}

.issue-card-content-large h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-articles-preview {
    margin: 1rem 0;
}

.featured-articles-preview h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.featured-articles-preview ul {
    list-style: none;
}

.featured-articles-preview li {
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.issue-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.issue-card-large:hover .issue-actions {
    opacity: 1;
    transform: translateY(0);
}

.issue-card-content-large .issue-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.no-issues {
    text-align: center;
    padding: 4rem 0;
}

.no-issues-content i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.no-issues-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.no-issues-content p {
    color: #666;
}

/* Issue Detail Page */
.issue-header {
    background: #493D9E;
    color: #FBFFE4;
    padding: 8rem 0 4rem;
    position: relative;
}

.issue-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(73, 61, 158, 1) 0%, 
        rgba(73, 61, 158, 0.8) 30%, 
        rgba(73, 61, 158, 0.4) 60%, 
        rgba(73, 61, 158, 0) 100%);
    z-index: 1;
}

.issue-header .container {
    position: relative;
    z-index: 2;
}

.issue-header-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.issue-cover-large {
    text-align: center;
}

.cover-placeholder-detail {
    width: 350px;
    height: 450px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

.issue-header-info h1 {
    margin-bottom: 1rem;
}

.issue-meta {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.issue-actions-header {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.issue-content-detail {
    padding: 4rem 0;
    background: #A888B5;
}

.issue-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.toc-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.toc-content {
    background: #8174A0;
    padding: 2rem;
    border-radius: 10px;
}

.toc-content h3 {
    margin-bottom: 1.5rem;
    color: #FBFFE4;
}

.toc-nav ul {
    list-style: none;
}

.toc-nav li {
    margin-bottom: 0.5rem;
}

.toc-nav a {
    color: #FBFFE4;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.toc-nav a:hover {
    color: #e74c3c;
}

.issue-article {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.issue-article:last-child {
    border-bottom: none;
}

.issue-article h2 {
    color: #FBFFE4;
    margin-bottom: 0.5rem;
}

.article-meta {
    color: #FBFFE4;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-quote {
    margin: 2rem 0;
    padding: 2rem;
    background: #8174A0;
    border-left: 4px solid #e74c3c;
    border-radius: 0 6px 6px 0;
}

.article-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #FBFFE4;
    margin: 0;
}

.contributors-section,
.gallery-section {
    margin-top: 4rem;
}

/* Contributors Tabs */
.contributors-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contrib-tab {
    padding: 0.75rem 1.5rem;
    background: #8174A0;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #FBFFE4;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contrib-tab:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.contrib-tab.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Contributors Groups */
.contributors-groups {
    margin-top: 2rem;
}

.contrib-group {
    animation: fadeIn 0.5s ease-in-out;
}

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

.contrib-group h4 {
    text-align: center;
    color: #FBFFE4;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
}

.contrib-group h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e74c3c;
    border-radius: 2px;
}

.contrib-group ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.contrib-group li {
    background: #8174A0;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contrib-group li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e74c3c;
    flex-shrink: 0;
}

.team-member-info {
    flex: 1;
}

.team-member-name {
    font-weight: 600;
    color: #FBFFE4;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.team-member-role {
    color: #FBFFE4;
    font-size: 0.9rem;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: #8174A0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FBFFE4;
}

.gallery-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.related-issues {
    background: #A888B5;
    padding: 4rem 0;
}

.related-issues h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-issue-card {
    background: #8174A0;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.related-issue-card:hover {
    transform: translateY(-5px);
}

.related-issue-cover {
    height: 150px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.cover-placeholder-small h4 {
    font-size: 1.2rem;
}

.related-issue-content {
    padding: 1.5rem;
}

.related-issue-content h4 {
    color: #FBFFE4;
    margin-bottom: 0.5rem;
}

.related-issue-content p {
    color: #FBFFE4;
}

/* About Page */
.our-story {
    padding: 5rem 0;
    background: #A888B5;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    color: #FBFFE4;
    margin-bottom: 1.5rem;
}

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

.story-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
}

.story-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-values {
    background: #A888B5;
    padding: 5rem 0;
}

.mission-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #FBFFE4;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #8174A0;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    color: #FBFFE4;
    margin-bottom: 1rem;
}

.editorial-team {
    padding: 5rem 0;
    background: #A888B5;
}

.editorial-team h2 {
    text-align: left;
    margin-bottom: 3rem;
    color: #FBFFE4;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Team Group Styling */
.team-group {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.team-group:last-child {
    border-bottom: none;
}

.team-group-title {
    font-family: "Space Mono", monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FBFFE4;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    padding-left: 1rem;
}

.team-group-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: #e74c3c;
    border-radius: 2px;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-left: 1rem;
}

.team-member-card {
    background: #8174A0;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-left: 5px solid #e74c3c;
    min-height: 180px;
}

.team-member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-avatar {
    width: 160px;
    height: 160px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-family: "Space Mono", monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FBFFE4;
    margin-bottom: 0.8rem;
    margin-left: 0;
    line-height: 1.3;
}

.member-details {
    font-family: "Special Elite", system-ui;
    font-size: 1rem;
    color: #FBFFE4;
    line-height: 1.5;
    margin: 0;
}

/* Legacy styles for backward compatibility */
.team-member {
    text-align: left;
    padding: 2rem;
}

.team-member h3 {
    color: #FBFFE4;
    margin-bottom: 1rem;
}

.publication-process {
    background: #A888B5;
    padding: 5rem 0;
}

.publication-process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #FBFFE4;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #FBFFE4;
    margin-bottom: 0.5rem;
}

.about-cta {
    padding: 5rem 0;
    background: #493D9E;
    color: #FBFFE4;
    text-align: center;
    position: relative;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(73, 61, 158, 1) 0%, 
        rgba(73, 61, 158, 0.8) 30%, 
        rgba(73, 61, 158, 0.4) 60%, 
        rgba(73, 61, 158, 0) 100%);
    z-index: 1;
}

.about-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
    background: #A888B5;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #FBFFE4;
    margin-bottom: 1rem;
}

.contact-form-section p,
.contact-info-section p {
    color: #FBFFE4;
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #FBFFE4;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: #FBFFE4;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: #FBFFE4;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.social-contact {
    margin-top: 3rem;
}

.social-contact h3 {
    color: #FBFFE4;
    margin-bottom: 1rem;
}

.social-contact p {
    color: #FBFFE4;
    margin-bottom: 1.5rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 16px;
    background: #8174A0;
    border-radius: 6px;
    text-decoration: none;
    color: #FBFFE4;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

.faq-section {
    background: #A888B5;
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #FBFFE4;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #8174A0;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #FBFFE4;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #FBFFE4;
    margin-bottom: 0;
}

.newsletter-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

/* Image Styles */
.issue-cover-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    display: block;
    object-fit: cover;
}

.issue-card-cover-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.issue-cover-detail-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
    object-fit: cover;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-logo {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .nav-logo h1 {
        font-size: 1.1rem;
        white-space: nowrap;
        line-height: 1.2;
    }

    .nav-logo-img {
        height: 30px;
        width: auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(73, 61, 158, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu .nav-link {
        color: #FBFFE4 !important;
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(251, 255, 228, 0.1);
    }

    .nav-menu .nav-link:hover {
        color: #8F87F1 !important;
        background-color: rgba(143, 135, 241, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
        background-position: center center;
        margin-top: 70px;
        min-height: auto;
    }
    
    .hero::before {
        background: linear-gradient(180deg, 
            rgba(73, 61, 158, 1) 0%, 
            rgba(73, 61, 158, 0.8) 30%, 
            rgba(73, 61, 158, 0.4) 60%, 
            rgba(73, 61, 158, 0) 100%);
    }

    .hero-title-container {
        height: 80px;
        margin: 0 0 0.5rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 2rem;
    }

    .club-logo {
        max-width: 150px;
    }

    /* Home hero responsive */
    .home-hero {
        min-height: auto;
        padding: 2rem 1rem;
        margin-top: 70px;
    }

    .home-hero .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .home-hero .hero-title-container {
        flex-direction: row;
        gap: 0.5rem;
        text-align: left;
        white-space: nowrap;
        margin-bottom: 0.5rem;
        justify-content: flex-start;
        align-items: center;
    }

    .issue-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .issues-grid {
        grid-template-columns: 1fr;
    }

    .issues-grid-large {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .issue-card-large {
        aspect-ratio: 3/4;
    }

    .issue-header {
        margin-top: 70px;
        padding: 2rem 0;
    }

    .issue-header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .issue-cover-detail-img {
        max-width: 200px;
        height: auto;
    }

    .issue-header-info h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .issue-meta {
        flex-direction: column;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .issue-actions-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .issue-layout {
        grid-template-columns: 1fr;
    }

    .toc-sidebar {
        position: static;
        order: 2;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .subscribe-form .form-group,
    .newsletter-form .form-group {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .issue-actions {
        flex-direction: column;
    }

    .issue-actions-header {
        flex-direction: column;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .contributors-tabs {
        gap: 0.5rem;
    }
    
    .contrib-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .contrib-group ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contrib-group li {
        padding: 1rem;
    }
    
    /* Team Group Responsive */
    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-left: 0;
    }
    
    .team-member-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        min-height: auto;
    }
    
    .member-avatar {
        width: 140px;
        height: 140px;
        font-size: 3rem;
        margin: 0 auto 1.5rem;
    }
    
    .team-group-title {
        font-size: 1.5rem;
        text-align: center;
        padding-left: 0;
    }
    
    .team-group-title::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo h1 {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .nav-logo-img {
        height: 25px;
    }

    .hero-title-container {
        height: 60px;
        margin: 0 0 0.5rem 0;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .home-hero .hero-title-container h1,
    .home-hero .hero-title-container h6,
    .home-hero .hero-title-container h7 {
        font-size: 2.0rem !important;
        white-space: nowrap;
        max-width: 100%;
    }

    /* Override general h6 and h7 styles for home hero mobile */
    .home-hero h6,
    .home-hero h7 {
        font-size: 2.0rem !important;
    }

    /* Override general hero-title style for home hero mobile */
    .home-hero .hero-title {
        font-size: 2.0rem !important;
    }

    /* Additional overrides to ensure consistency */
    .home-hero .hero-title[data-script="english"],
    .home-hero .hero-title[data-script="bengali"],
    .home-hero .hero-title[data-script="manipuri"] {
        font-size: 2.0rem !important;
    }

    .home-hero .hero-content h2 {
        font-size: 0.9rem !important;
        white-space: nowrap;
        text-align: left;
        margin-left: 0 !important;
    }

    .home-hero .hero-content h3 {
        text-align: left;
        margin-left: 0 !important;
    }

    @media (max-width: 480px) {
        .home-hero .hero-title-container h1,
        .home-hero .hero-title-container h6,
        .home-hero .hero-title-container h7 {
            font-size: 1.6rem !important;
        }
        
        .home-hero h6,
        .home-hero h7 {
            font-size: 1.6rem !important;
        }

        .home-hero .hero-title {
            font-size: 1.6rem !important;
        }

        /* Additional overrides to ensure consistency for smaller screens */
        .home-hero .hero-title[data-script="english"],
        .home-hero .hero-title[data-script="bengali"],
        .home-hero .hero-title[data-script="manipuri"] {
            font-size: 1.6rem !important;
        }
        
        .home-hero .hero-content h2 {
            font-size: 1.0rem !important;
            text-align: left;
            margin-left: 0 !important;
        }

        .home-hero .hero-content h3 {
            text-align: left;
            margin-left: 0 !important;
        }
    }

    /* Mapao page hero title mobile styles */
    .hero .hero-content {
        text-align: center;
    }
    
    .hero .hero-title-container {
        margin: 0 0 0.5rem 0 !important;
        justify-content: center;
    }
    
    .hero .hero-title-container h1 {
        font-size: 3.5rem !important;
        text-align: center;
    }

    .hero .hero-content h2 {
        font-size: 0.8rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    @media (max-width: 480px) {
        .hero .hero-content {
            text-align: center;
        }
        
        .hero .hero-title-container {
            margin: 0 0 0.5rem 0 !important;
            justify-content: center;
        }
        
        .hero .hero-title-container h1 {
            font-size: 2.8rem !important;
            text-align: center;
        }
        
        .hero .hero-content h2 {
            font-size: 0.7rem !important;
        }
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .cover-placeholder {
        width: 250px;
        height: 350px;
    }

    .cover-placeholder-detail {
        width: 280px;
        height: 380px;
    }

    .magazine-mockup {
        width: 250px;
        height: 350px;
    }
    
    .journal-type-tabs {
        gap: 0.5rem;
    }
    
    .journal-tab {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .issues-grid-large {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .issue-card-large {
        aspect-ratio: 3/4;
    }
    
    .issue-card-content-large {
        padding: 1rem;
    }
    
    .issue-card-content-large h3 {
        font-size: 1.1rem;
    }
    
    .issue-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .proudly-built {
        flex-direction: column;
        gap: 0.25rem;
        margin-top: 0.75rem;
    }
    
    .lookmai-logo {
        height: 18px;
    }
}

/* Journal Type Tabs */
.journal-type-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.journal-tab {
    padding: 0.75rem 1.5rem;
    background: #8174A0;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #FBFFE4;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.journal-tab:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.journal-tab.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Issue Type Badges */
.issue-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.issue-type-badge.literary {
    background: linear-gradient(135deg, #8F87F1, #493D9E);
    color: white;
}

.issue-type-badge.research {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

/* Homepage Styles */
.about-club {
    padding: 5rem 0;
    background: #f8f9fa;
}

.club-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.club-info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.club-info-card:hover {
    transform: translateY(-5px);
}

.club-info-card .info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #493D9E, #8F87F1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.club-info-card h3 {
    margin-bottom: 1rem;
    color: #493D9E;
}

.mapao-showcase {
    padding: 5rem 0;
    background: white;
}

.mapao-preview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.mapao-cover {
    text-align: center;
}

.mapao-cover-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mapao-info h3 {
    margin-bottom: 1rem;
    color: #493D9E;
}

.mapao-description {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.mapao-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #493D9E;
}

.feature-item i {
    color: #8F87F1;
}

.mapao-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.activities {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #493D9E, #8F87F1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.activity-card h3 {
    margin-bottom: 1rem;
    color: #493D9E;
}

.leadership {
    padding: 5rem 0;
    background: white;
}

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

.president-info,
.founder-info {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.president-info h3,
.founder-info h3 {
    color: #493D9E;
    margin-bottom: 0.5rem;
}

.position {
    font-weight: 600;
    color: #8F87F1;
    margin-bottom: 1rem;
}

.affiliation {
    color: #666;
    margin-bottom: 1rem;
}

.achievement {
    font-style: italic;
    color: #493D9E;
    font-weight: 500;
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
    .mapao-preview {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mapao-actions {
        justify-content: center;
    }
    
    .club-info-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-info {
        grid-template-columns: 1fr;
    }
}

/* Moments & Milestones Page Styles */
.moments-hero {
    background: #493D9E;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FBFFE4;
    position: relative;
}

.moments-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(73, 61, 158, 1) 0%, 
        rgba(73, 61, 158, 0.8) 30%, 
        rgba(73, 61, 158, 0.4) 60%, 
        rgba(73, 61, 158, 0) 100%);
    z-index: 1;
}

.moments-hero .container {
    position: relative;
    z-index: 2;
}

.moments-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.moments-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Filter Section */
.filter-section {
    background: #A888B5;
    padding: 3rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-container {
    text-align: center;
}

.filter-container h3 {
    color: #FBFFE4;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: #8174A0;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #FBFFE4;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.filter-btn.active {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Moments Section */
.moments-section {
    padding: 4rem 0;
    background: #A888B5;
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.moment-card {
    background: #8174A0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-in;
}

.moment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.moment-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.moment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.moment-card:hover .moment-img {
    transform: scale(1.05);
}

.moment-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.moment-content {
    padding: 1.5rem;
}

.moment-date {
    color: #FBFFE4;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.moment-title {
    color: #FBFFE4;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.moment-description {
    color: #FBFFE4;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.moment-actions {
    display: flex;
    justify-content: flex-end;
}

.moment-share-btn {
    background: #8174A0;
    border: 1px solid #e9ecef;
    color: #FBFFE4;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.moment-share-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
}

/* Timeline Section */
.timeline-section {
    background: #A888B5;
    padding: 4rem 0;
}

.timeline-section h2 {
    text-align: center;
    color: #FBFFE4;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #e74c3c;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    animation: slideIn 0.6s ease-in;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: #e74c3c;
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px #f8f9fa;
}

.timeline-content {
    background: #8174A0;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.timeline-date {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: #FBFFE4;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #FBFFE4;
    line-height: 1.5;
    margin: 0;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* CTA Section */
.cta-section {
    background: #493D9E;
    color: #FBFFE4;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(73, 61, 158, 1) 0%, 
        rgba(73, 61, 158, 0.8) 30%, 
        rgba(73, 61, 158, 0.4) 60%, 
        rgba(73, 61, 158, 0) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: #e74c3c;
    color: white;
    border: 2px solid #e74c3c;
}

.cta-buttons .btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #FBFFE4;
    border: 2px solid #FBFFE4;
}

.cta-buttons .btn-secondary:hover {
    background: #FBFFE4;
    color: #493D9E;
    transform: translateY(-2px);
}

/* Responsive Design for Moments Page */
@media (max-width: 768px) {
    .moments-hero {
        margin-top: 70px;
        padding: 2rem 0;
        min-height: auto;
    }

    .moments-hero h1 {
        font-size: 2.5rem;
    }
    
    .moments-hero p {
        font-size: 1.1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .moments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-marker {
        left: 20px;
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .moments-hero h1 {
        font-size: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .moment-card {
        margin: 0 1rem;
    }
}
