/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c5aa0;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #f8f9fa;
    color: #2c5aa0;
}

.nav-link.active {
    background-color: #2c5aa0;
    color: white;
}

.nav-separator {
    color: #ccc;
    margin: 0 2px;
}

/* Hamburger Menu */

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c5aa0;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(16px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-16px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 60px;
}

.mobile-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c5aa0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-link {
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #2c5aa0;
    background: #f0f7ff;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.overlay.active {
    display: block;
}

/* Tablet Breakpoint */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        width: 100%;
    }
}

/* Mobile Breakpoint */
@media (max-width: 480px) {
    .hamburger {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu {
        width: 100%;
        padding-top: 50px;
    }

    .mobile-nav {
        padding: 10px;
    }

    .mobile-nav-link {
        padding: 10px;
        font-size: 14px;
    }
}


.user-info {
    color: #2c5aa0;
    font-weight: 500;
}

/* Main Content */
.main {
    min-height: calc(100vh - 120px);
    padding: 2rem 0;
}

/* Page Titles */
.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

.gradient-text {
    background: linear-gradient(135deg, #2c5aa0, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.section-title-blue { color: #2c5aa0; font-size: 1.8rem; margin-bottom: 1.5rem; }
.section-title-teal { color: #14b8a6; font-size: 1.8rem; margin-bottom: 1.5rem; }
.section-title-green { color: #059669; font-size: 1.8rem; margin-bottom: 1.5rem; }
.section-title-purple { color: #7c3aed; font-size: 1.8rem; margin-bottom: 1.5rem; }
.section-title-orange { color: #e6816d; font-size: 1.8rem; margin-bottom: 1.5rem; }

/* Homepage Styles */
.about-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

/* Timeline - Poets */
.timeline-section {
    margin-bottom: 3rem;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.poet-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.poet-item:hover {
    transform: translateY(-5px);
}

.poet-left { flex-direction: row; }
.poet-right { flex-direction: row-reverse; }

.poet-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.poet-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.poet-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.poet-marker.frantz { background-color: #33808D; }
.poet-marker.harold { background-color: #059669; }
.poet-marker.jane { background-color: #7c3aed; }

.poet-text {
    font-size: 1.1rem;
}

/* Awards */
.awards-showcase {
    margin-bottom: 3rem;
}

.awards-header {
    text-align: center;
    margin-bottom: 2rem;
}

.awards-banner {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
}

.awards-grid {
    display: grid;
    gap: 2rem;
}

.award-with-image {
    display: flex;
    gap: 20px;
}

.award-badge {
    background: linear-gradient(135deg, #2c5aa0, #14b8a6);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    flex: 1;
}

.award-badge.nobel { background: linear-gradient(135deg, #e6816d, #f59e0b); }
.award-badge.booker { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.award-badge.pulitzer { background: linear-gradient(135deg, #059669, #10b981); }

.award-badge h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.award-side-image img {
    width: 150px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
}
.award-with-image .award-badge {
    flex: 1;
}

/* Dictionary - Vocabulary */
.dictionary-section {
    margin-bottom: 3rem;
}

.dictionary-content {
    display: flex;
    gap: 2rem;
}

.dictionary-entries {
    flex: 2;
}

.dictionary-entry {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #059669;
}

.word-title {
    font-size: 1.5rem;
    color: #059669;
}

.pronunciation {
    font-style: italic;
    color: #666;
    margin-left: 1rem;
}

.vocabulary-image {
    flex: 1;
}

.vocab-image {
    width: 100%;
    border-radius: 8px;
}

/* Contronyms - Grammar */
.contronyms-panel {
    margin-bottom: 3rem;
}

.contronyms-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.contronyms-content {
    display: flex;
    gap: 2rem;
}

.contronyms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    flex: 2;
}

.contronym-card {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contronym-word {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contronym-meanings {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.contronyms-image {
    flex: 1;
}

.contronyms-img {
    width: 100%;
    border-radius: 8px;
}
/* Executive Members Section */
.executive-section {
  margin-bottom: 3rem;
  background: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 12px;
}

.executive-intro {
  text-align: center;
  color: #555;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.executive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.executive-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-left: 5px solid #2c5aa0;
}

.executive-card:hover {
  transform: translateY(-5px);
}

.executive-card h3 {
  color: #2c5aa0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.executive-card .role {
  color: #14b8a6;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.executive-card .designation {
  color: #555;
  font-size: 0.95rem;
}


/* Conference Styles */
.conference-2025 {
    margin-bottom: 3rem;
}

.conference-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.member-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.member-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.member-role {
    font-size: 0.9rem;
    color: #2c5aa0;
    font-weight: bold;
}

.member-info h4 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Downloads */
.downloads {
    margin-bottom: 3rem;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-link {
    display: block;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #2c5aa0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: #2c5aa0;
    color: white;
    transform: translateX(5px);
}

/* Photo Gallery */
.photo-gallery {
    margin-bottom: 3rem;
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.slide-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-controls button {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
}

/* Journal Styles */
.journal-info {
    margin-bottom: 3rem;
}

.journal-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.featured-journal {
    margin-bottom: 3rem;
}

.journal-card {
    background: linear-gradient(135deg, #2c5aa0, #14b8a6);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.journal-icon {
    font-size: 3rem;
}

.click-hint {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Forms */
.submission-form,
.payment-form,
.login-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.submit-btn,
.login-btn,
.action-btn,
.logout-btn {
    background: linear-gradient(135deg, #2c5aa0, #14b8a6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover,
.login-btn:hover,
.action-btn:hover {
    transform: translateY(-2px);
}

.note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* Membership Plans */
.membership-plans {
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.plan-card.featured {
    border: 3px solid #2c5aa0;
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #e6816d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.plan-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.plan-duration {
    color: #666;
    margin-bottom: 1rem;
}

.plan-features {
    list-style: none;
    margin: 1.5rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #333;
}

.membership-id-format {
    font-size: 0.9rem;
    color: #666;
}

/* Payment */
.payment-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.bank-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.bank-details h4 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.bank-details p {
    margin-bottom: 0.5rem;
}

.qr-code-section {
    text-align: center;
}

.qr-code {
    max-width: 200px;
    border-radius: 8px;
}

/* Login & Dashboard */
.login-container {
    max-width: 500px;
    margin: 0 auto;
}

.login-help {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.dashboard-section {
    padding: 2rem 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #2c5aa0, #14b8a6);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.user-profile {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.profile-avatar {
    font-size: 4rem;
    background: #2c5aa0;
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-badge {
    background: #2c5aa0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.5rem;
}

.privilege-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.privilege-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.privilege-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Placeholder */
.placeholder-section {
    text-align: center;
    padding: 4rem 2rem;
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.suggestion-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.suggestion-btn {
    background: #2c5aa0;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.popup-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.popup-button {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }

    .form-row {
        grid-template-columns: 1fr;
    }

    .awards-grid,
    .payment-details,
    .contronyms-grid,
    .dictionary-content {
        grid-template-columns: 1fr;
    }

    .award-with-image {
        flex-direction: column;
    }

    .poet-left,
    .poet-right {
        flex-direction: column;
        text-align: center;
    }
}