﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
    --bg-pearl: #fdfbf7;
    --royal-blue: #1a365d;
    --classic-gold: #b45309;
    --text-dark: #2d3748;
    --text-muted: #4a5568;
    --border-light: #e2e8f0;
}
body.no-scroll {
    overflow: hidden !important;
}
* {
    user-select: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body.no-scroll {
    overflow: hidden !important;
}
body {
    overflow-x: clip;
    height: auto;
    background-color: var(--bg-pearl);
    color: var(--text-dark);
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.text-blue {
    color: var(--royal-blue);
}

.text-gold {
    color: var(--classic-gold);
}

.bg-blue {
    background-color: var(--royal-blue);
}

.bg-gold {
    background-color: var(--classic-gold);
}

h1, h2, h3, .serif-text {
    font-family: 'Playfair Display', serif;
    color: var(--royal-blue);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.internal-page-content {
    padding: 20px 0;
    min-height: 50vh;
}

.page-header-banner {
    background-color: var(--royal-blue);
    color: white;
    padding: 30px 0;
    text-align: center;
    border-bottom: 3px solid var(--classic-gold);
}

    .page-header-banner h1 {
        color: white;
        font-size: 2rem;
        margin-bottom: 8px;
        font-weight: 600;
        line-height: 1.2;
    }

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .breadcrumb a {
        color: var(--classic-gold);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .breadcrumb a:hover {
            color: white;
        }

.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--bg-pearl);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease, background-color 0.3s ease !important;
}

    .site-header.scrolled {
        box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
        background-color: rgba(253, 251, 247, 0.98) !important;
    }

.top-brand-bar {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-light);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.lang-form-small {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .lang-form-small button {
        background: none;
        border: none;
        color: var(--royal-blue);
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        padding: 0;
    }

        .lang-form-small button:hover {
            color: var(--classic-gold);
        }

    .lang-form-small span {
        color: var(--border-light);
    }

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--bg-pearl);
    border-bottom: 2px solid var(--classic-gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nav-main-row {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

    .nav-links .nav-item {
        position: relative;
    }

    .nav-links .nav-link {
        text-decoration: none;
        color: var(--text-dark);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        padding: 8px 10px;
        display: block;
        transition: color 0.3s ease;
        white-space: nowrap;
    }

        .nav-links .nav-link:hover,
        .nav-link.active,
        .nav-item.has-dropdown .nav-link.active {
            color: var(--classic-gold) !important;
        }

.nav-link.active {
    border-bottom: 2px solid var(--classic-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--royal-blue);
    cursor: pointer;
    padding: 5px 0;
    margin-left: auto;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-top: 3px solid var(--royal-blue);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 0 0 4px 4px;
}

    .dropdown-menu li {
        padding: 0;
        margin: 0;
    }

        .dropdown-menu li a {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            transition: background 0.3s ease;
            border-bottom: 1px solid var(--border-light);
        }

        .dropdown-menu li:last-child a {
            border-bottom: none;
        }

        .dropdown-menu li a:hover {
            background-color: var(--bg-pearl);
            color: var(--royal-blue);
            padding-left: 25px;
        }

.has-dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-carousel-section {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 4px solid var(--classic-gold);
}

.carousel-container-full {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    max-height: 700px;
    overflow: hidden;
    background-color: var(--royal-blue);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

    .carousel-slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(26, 54, 93, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
        pointer-events: none;
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

    .dot:hover {
        background-color: rgba(255, 255, 255, 0.8);
    }

    .dot.active {
        background-color: var(--classic-gold);
        border-color: var(--classic-gold);
        transform: scale(1.3);
    }

.tribute-hero {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.hero-portrait {
    flex: 1;
    text-align: center;
}

    .hero-portrait img {
        width: 100%;
        max-width: 400px;
        border-radius: 4px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border: 8px solid white;
        height: auto;
    }

.hero-text {
    flex: 1.2;
}

    .hero-text h1 {
        font-size: 3rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.lifespan {
    color: var(--classic-gold);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    border-left: 4px solid var(--classic-gold);
    padding-left: 20px;
    margin: 30px 0;
    color: var(--text-muted);
}

.btn-gold {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid var(--classic-gold);
    color: var(--classic-gold);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .btn-gold:hover {
        background-color: var(--classic-gold);
        color: white;
    }

.hero-btn {
    margin-top: 20px;
}

.btn-gold-small {
    font-size: 0.9rem;
    padding: 5px 15px;
}

.legacy-pillars {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        background-color: var(--classic-gold);
        margin: 15px auto 0;
    }

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: white;
    padding: 30px;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--royal-blue);
    transition: transform 0.3s ease;
}

    .pillar-card:hover {
        transform: translateY(-5px);
    }

    .pillar-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--royal-blue);
    }

    .pillar-card p {
        font-size: 0.95rem;
        color: var(--text-muted);
        margin-bottom: 20px;
    }

.achievements-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
}

.tabs-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.tab-buttons {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-btn {
    background: white;
    border: 1px solid var(--border-light);
    color: var(--royal-blue);
    padding: 10px;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    width: 100%;
}

    .tab-btn:hover {
        background: #f4f6f9;
        border-left: 4px solid var(--classic-gold);
    }

    .tab-btn.active {
        background: var(--royal-blue);
        color: white;
        border-left: 4px solid var(--classic-gold);
        box-shadow: 0 4px 10px rgba(26, 54, 93, 0.2);
    }

.tab-content-wrapper {
    flex: 2.5;
    background: var(--bg-pearl);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 20px;
    min-height: 350px;
}

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

    .tab-content h3 {
        color: var(--royal-blue);
        margin-bottom: 20px;
    }

    .tab-content ul {
        list-style: none;
        padding: 0;
        line-height: 2.2;
    }

    .tab-content li {
        border-bottom: 1px dashed var(--border-light);
        padding-bottom: 8px;
    }

.vision-mission-section {
    padding: 80px 0 40px;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.vm-card {
    position: relative;
    padding: 50px 40px 40px;
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-radius: 4px;
}

.vm-card-blue {
    border-top: 4px solid var(--royal-blue);
}

.vm-card-gold {
    border-top: 4px solid var(--classic-gold);
}

.vm-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.vm-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.vm-intro {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.vm-icon-wrapper {
    position: absolute;
    top: -35px;
    left: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 6px solid var(--bg-pearl);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mission-list {
    list-style: none;
    padding: 0;
    color: var(--text-dark);
}

    .mission-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
        line-height: 1.7;
    }

        .mission-list li::before {
            content: "■";
            position: absolute;
            left: 0;
            color: var(--classic-gold);
            font-size: 0.8rem;
            top: 4px;
        }

.institutions-directory {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

.inst-card {
    display: flex;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

    .inst-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background-color: var(--classic-gold);
    }

    .inst-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(26, 54, 93, 0.08);
    }

.inst-content {
    flex: 6.5;
    padding: 40px 45px;
}

.inst-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--royal-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.inst-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

    .inst-desc strong {
        color: var(--text-dark);
    }

.inst-contact-panel {
    flex: 3.5;
    background-color: #f8fafc;
    padding: 40px 35px;
    border-left: 1px solid var(--border-light);
}

.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--royal-blue);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }

        .contact-list li:last-child {
            margin-bottom: 0;
        }

.icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--classic-gold);
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--royal-blue);
    margin-bottom: 3px;
}

.info-value {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.site-footer {
    background-color: var(--royal-blue);
    color: var(--bg-pearl);
    padding: 50px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.footer-title {
    color: var(--classic-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-subheading {
    color: var(--bg-pearl);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

    .footer-text a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none !important;
    }

        .footer-text a:hover {
            color: var(--classic-gold) !important;
        }

.footer-links {
    list-style: none;
    padding: 0;
    line-height: 2;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.hero-qualifications {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.qual-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.qual-bullet {
    color: var(--classic-gold);
    font-size: 1.2rem;
    font-weight: bold;
}

.tab-inner-heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 15px;
}

.custom-achievement-list {
    list-style: none;
    padding: 0;
}

    .custom-achievement-list li {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 5px;
        color: #333;
    }

.gallery-description {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
}

.gallery-img-wrapper {
    overflow: hidden;
    border-radius: 6px;
    height: 250px;
    background: #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img-wrapper:hover .gallery-img,
.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-title {
    color: var(--royal-blue);
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
}

.gallery-caption {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0;
}

.album-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

    .album-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    }

.album-img {
    transition: transform 0.4s ease;
}

.album-card:hover .album-img {
    transform: scale(1.08);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.photo-item {
    transition: box-shadow 0.3s ease;
}

    .photo-item:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
    }

.photo-img {
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.photo-item:hover .photo-img {
    transform: scale(1.05);
}

.gallery-sidebar .list-group-item {
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
}

    .gallery-sidebar .list-group-item:hover {
        background-color: #f8f9fa;
        border-left: 4px solid #003366;
    }

.gallery-sidebar .active-album-link {
    background-color: #fcf8e3 !important;
    border-left: 4px solid #dc3545 !important;
}

.news-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.news-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border: 1px solid var(--border-light);
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .news-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    }

.news-item-primary {
    border-left: 4px solid var(--royal-blue);
}

.news-item-secondary {
    border-left: 4px solid var(--classic-gold);
}

.news-date-badge {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    background: var(--bg-pearl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge-border-gold {
    border: 1px solid var(--classic-gold);
}

.badge-border-blue {
    border: 1px solid var(--royal-blue);
}

.news-date-day {
    color: var(--royal-blue);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.news-date-month {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.news-category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    border-radius: 4px;
    margin-bottom: 12px;
    font-weight: 600;
}

.cat-blue {
    background: #eef2f7;
    color: var(--royal-blue);
}

.cat-yellow {
    background: #fef3c7;
    color: #92400e;
}

.news-title {
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.news-desc {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.news-link {
    color: var(--classic-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--classic-gold);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

    .news-link:hover {
        color: var(--royal-blue);
        border-bottom-color: var(--royal-blue);
    }

.news-theme-banner, .news-detail-banner {
    background-color: var(--bg-pearl);
    border-bottom: 1px solid var(--border-light);
    padding: 50px 0;
}

.theme-main-title {
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
}

.theme-heading {
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.theme-grid-card {
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--royal-blue);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

    .theme-grid-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.theme-card-img {
    transition: transform 0.5s ease;
}

.theme-grid-card:hover .theme-card-img {
    transform: scale(1.05);
}

.theme-category-text {
    color: var(--classic-gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-card-title {
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.4;
    font-size: 1.25rem;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.theme-grid-card:hover .theme-card-title {
    color: var(--classic-gold);
}

.theme-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
    font-family: 'Source Sans Pro', sans-serif;
}

    .theme-content p {
        margin-bottom: 1.2rem;
    }

    .theme-content img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        margin-bottom: 1rem;
    }

.theme-image-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.theme-divider {
    border-color: var(--border-light);
    opacity: 1;
}

.theme-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-pearl);
    color: var(--royal-blue);
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 2px;
    border: 1px solid var(--classic-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.theme-sidebar-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--royal-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border-radius: 4px;
}

.theme-author-img {
    border: 2px solid var(--classic-gold);
    padding: 2px;
}

.theme-recent-item {
    transition: background 0.3s ease;
}

    .theme-recent-item:hover {
        background-color: var(--bg-pearl);
    }

.theme-recent-link {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
}

    .theme-recent-link:hover {
        color: var(--classic-gold);
    }

.theme-input {
    background: var(--bg-pearl);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 12px 15px;
    color: var(--text-dark);
}

    .theme-input:focus {
        background: #fff;
        border-color: var(--classic-gold);
        box-shadow: none;
    }

.theme-btn-primary {
    background-color: var(--royal-blue);
    color: #fff;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .theme-btn-primary:hover {
        background-color: var(--classic-gold);
        color: var(--royal-blue);
    }

.theme-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-pearl);
    border: 1px solid var(--border-light);
    color: var(--royal-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .theme-social-btn:hover {
        background: var(--classic-gold);
        color: #fff;
        border-color: var(--classic-gold);
        transform: translateY(-3px);
    }

.clipping-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.clipping-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-light);
    transition: background-color 0.3s ease, border-radius 0.3s ease, padding 0.3s ease;
}

    .clipping-item:hover {
        background-color: var(--bg-pearl);
        border-radius: 4px;
        padding-left: 10px;
        padding-right: 10px;
    }

.clipping-img-box {
    width: 120px;
    height: 120px;
    background: #eee;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

    .clipping-img-box span {
        color: #aaa;
        font-size: 0.8rem;
    }

.clipping-meta-badge {
    display: inline-block;
    background: var(--bg-pearl);
    color: var(--classic-gold);
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    border: 1px solid var(--border-light);
}

.clipping-title {
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.clipping-item:hover .clipping-title {
    color: var(--classic-gold);
}

.clipping-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.clipping-link {
    color: var(--royal-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

    .clipping-link:hover {
        color: var(--classic-gold);
        text-decoration: underline;
    }

.clipping-filter-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 25px;
    padding-bottom: 5px;
    justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .clipping-filter-container::-webkit-scrollbar {
        display: none;
    }

.clipping-filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    background: transparent;
    border: 1px solid var(--royal-blue);
    color: var(--royal-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .clipping-filter-btn:hover {
        background: var(--bg-pearl);
        border-color: var(--classic-gold);
        color: var(--classic-gold);
    }

    .clipping-filter-btn.active {
        background: var(--royal-blue);
        color: #fff;
        border-color: var(--royal-blue);
        box-shadow: 0 3px 8px rgba(0, 51, 102, 0.15);
    }

.theme-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 8px;
    flex-wrap: wrap;
}

.theme-page-btn {
    background: #fff;
    border: 1px solid var(--royal-blue);
    color: var(--royal-blue);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .theme-page-btn:hover:not(.disabled) {
        background: var(--bg-pearl);
        border-color: var(--classic-gold);
        color: var(--classic-gold);
    }

    .theme-page-btn.active {
        background: var(--royal-blue);
        color: #fff;
        border-color: var(--royal-blue);
        box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
    }

    .theme-page-btn.disabled {
        border-color: #ccc;
        color: #ccc;
        cursor: not-allowed;
    }

.doc-intro-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.doc-card {
    background: #fff;
    padding: 30px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    border-top: 4px solid var(--classic-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .doc-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

.doc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.doc-badge {
    background: var(--bg-pearl);
    color: var(--text-muted);
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 600;
}

.doc-date {
    color: var(--royal-blue);
    font-weight: bold;
    font-size: 0.85rem;
}

.doc-title {
    color: var(--royal-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    line-height: 1.4;
}

.doc-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.doc-link {
    color: var(--classic-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--classic-gold);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

    .doc-link:hover {
        color: var(--royal-blue);
        border-bottom-color: var(--royal-blue);
    }

.manuscript-intro {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.manuscript-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.manuscript-card {
    background: #fdfbf7;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .manuscript-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.manuscript-img-box {
    height: 300px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

    .manuscript-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.manuscript-card:hover .manuscript-img-box img {
    transform: scale(1.03);
}

.manuscript-title {
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 700;
}

.manuscript-topic {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0;
    font-weight: 500;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    border-bottom: 4px solid var(--royal-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .program-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .program-card:nth-child(even) {
        border-bottom-color: var(--classic-gold);
    }

.program-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

    .program-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.program-card:hover .program-img-box img {
    transform: scale(1.05);
}

.program-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-title {
    color: var(--royal-blue);
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
}

.gallery-header-container {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-main-title {
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

.gallery-divider {
    width: 60px;
    height: 3px;
    background: var(--classic-gold);
    margin: 15px auto;
}

.memorial-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.memorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.memorial-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    border-bottom: 4px solid var(--royal-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .memorial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .memorial-card:nth-child(even) {
        border-bottom-color: var(--classic-gold);
    }

.memorial-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

    .memorial-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.memorial-card:hover .memorial-img-box img {
    transform: scale(1.05);
}

.memorial-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 4px;
    border-left: 3px solid var(--classic-gold);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

.memorial-badge-year {
    display: block;
    font-size: 1.1rem;
    color: var(--royal-blue);
    font-weight: bold;
}

.memorial-badge-type {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.memorial-content {
    padding: 25px;
    flex-grow: 1;
}

.memorial-title {
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.memorial-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.video-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.video-card {
    display: flex;
    flex-direction: column;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .video-thumbnail:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.video-play-btn {
    width: 60px;
    height: 40px;
    background: red;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-thumbnail:hover .video-play-btn {
    transform: scale(1.15);
    background: #e60000;
}

.video-play-icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid white;
    margin-left: 5px;
}

.video-title {
    margin-top: 15px;
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
}

.fancybox__container {
    z-index: 99999 !important;
}

. /* ==========================================
   📚 BOOK GALLERY FIX (Uniform Sizes)
   ========================================== */
.book-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    align-items: stretch;
    margin-top: 20px;
}

.book-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .book-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        border-color: #1a365d; /* Royal Blue Border on Hover */
    }

/* सबसे ज़रूरी: Fixed Height */
.book-cover-box {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f8f9fa;
}

    .book-cover-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* इमेज बिना पिचके फिट होगी */
        object-position: top center;
        box-shadow: 3px 5px 12px rgba(0, 0, 0, 0.25);
        border-radius: 2px;
        transition: transform 0.3s ease;
    }

.book-card:hover .book-cover-box img {
    transform: scale(1.04);
}

.book-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2 लाइन से बड़ा नाम होने पर ... लगा देगा */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.book-card:hover .book-title {
    color: var(--classic-gold);
}
@media (min-width: 768px) {
    .book-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .book-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
._df_button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    background: transparent !important;
    border: none !important;
    padding: 0;
}

@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }
}

@media (max-width: 991px) {
    .brand-logo img {
        height: 50px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-main-row {
        justify-content: flex-end;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background-color: white;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-light);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    @media (max-width: 991px) {
        .nav-links {
          
            max-height: calc(100vh - 70px); 
            overflow-y: auto; 
            padding-bottom: 40px; 
        }
    }
        .nav-links.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-links .nav-item {
            width: 100%;
            border-bottom: 1px solid var(--border-light);
            padding-bottom: 12px;
        }

            .nav-links .nav-item:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--classic-gold);
        padding-left: 15px;
        margin-top: 10px;
        width: 100%;
        display: none;
    }

    .has-dropdown:hover .dropdown-menu {
        display: none;
    }

    .has-dropdown.mobile-open .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .tribute-hero {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
        padding: 40px 20px !important;
    }

    .hero-text h1 {
        font-size: 2.2rem !important;
    }

    .hero-portrait {
        margin-bottom: 20px;
    }

    .vision-mission-section {
        padding: 60px 20px 40px !important;
    }
}

@media (max-width: 768px) {
    .page-header-banner {
        padding: 20px 0;
    }

        .page-header-banner h1 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .hero-text h1 {
        font-size: 2rem !important;
    }

    .tabs-container {
        flex-direction: column;
        gap: 20px !important;
    }

    .tab-buttons {
        width: 100%;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-btn {
        flex: 1 1 auto;
        text-align: center !important;
        font-size: 0.9rem !important;
        padding: 10px !important;
    }

    .tab-content-wrapper {
        width: 100%;
        padding: 20px !important;
        min-height: auto !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .pillar-card {
        padding: 30px 20px;
    }

    .vm-card {
        padding: 60px 20px 30px !important;
        text-align: center;
    }

    .vm-icon-wrapper {
        left: 50% !important;
        transform: translateX(-50%);
    }

    .mission-list li {
        text-align: left;
    }

    .inst-card {
        flex-direction: column;
    }

    .inst-content {
        padding: 30px 20px;
    }

    .inst-contact-panel {
        padding: 30px 20px;
        border-left: none;
        border-top: 1px solid var(--border-light);
    }

    .inst-title {
        font-size: 1.6rem;
    }

    .carousel-container-full {
        height: 40vh;
        min-height: 250px;
    }

    .carousel-indicators {
        bottom: 15px;
    }
}

@media (max-width: 576px) {
    .news-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .news-date-badge {
        width: 70px;
        height: 70px;
    }

    .news-date-day {
        font-size: 1.5rem;
    }

    .news-title {
        font-size: 1.3rem;
    }

    .clipping-item {
        flex-direction: column;
        gap: 15px;
        padding-left: 0;
        padding-right: 0;
    }

    .clipping-img-box {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .pillar-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (min-width: 768px) {
    .clipping-filter-container {
        justify-content: center;
    }

    .video-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .book-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .video-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .book-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .video-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.event-hero-banner {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 4px solid var(--classic-gold);
}

.event-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,54,93,0.1) 0%, rgba(26,54,93,0.7) 100%);
}

.event-content-container {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.event-main-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top: 4px solid var(--royal-blue);
}

.event-category-tag {
    background-color: #fef3c7;
    color: #92400e;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-main-title {
    color: var(--royal-blue);
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.event-meta-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    background: var(--bg-pearl);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
}

.meta-item {
    font-size: 0.95rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .meta-item i {
        color: var(--classic-gold);
        font-size: 1.1rem;
    }

    .meta-item a {
        color: var(--text-muted);
        text-decoration: none;
    }

        .meta-item a:hover {
            color: var(--royal-blue);
        }

.elegant-divider {
    border-top: 1px dashed #cbd5e1;
    opacity: 1;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--royal-blue);
    line-height: 1.8;
    font-family: 'Playfair Display', serif;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid var(--classic-gold);
    transition: transform 0.3s ease;
}

    .detail-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

.detail-icon {
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--royal-blue);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.detail-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

    .detail-text strong {
        color: var(--royal-blue);
        font-size: 0.85rem;
        text-transform: uppercase;
    }

.serif-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.attachment-thumb img {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.attachment-thumb:hover img {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

@media (max-width: 768px) {
    .event-main-card {
        padding: 30px 20px;
    }

    .event-main-title {
        font-size: 1.8rem;
    }

    .event-meta-bar {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}