/* ============================================================
   VD History Page Widget — history.css
   ============================================================ */

/* ── GLOBALS & UTILS ── */
.vd-history-wrapper {
    font-family: 'Baloo Bhai 2', cursive, sans-serif;
    color: #333;
    background-color: #faf7f2; /* subtle off-white background for the page */
    overflow: hidden;
}

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

.vd-history-section-title-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.vd-history-section-title {
    font-size: 32px;
    color: #7A191A;
    font-weight: 700;
    margin-bottom: 15px;
}

.vd-history-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.vd-history-ornament span:not(.vd-history-diamond) {
    width: 60px;
    height: 1px;
    background: #E9B855;
}
.vd-history-diamond {
    color: #E9B855;
    font-size: 14px;
}

/* ── HERO ── */
.vd-history-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.vd-history-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(122,25,26,0.9) 0%, rgba(90,15,15,0.7) 100%);
    z-index: 1;
}
.vd-history-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 200px 20px 50px;
    width: 100%;
}
.vd-history-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.vd-history-hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 15px 0 0 0;
    font-weight: 500;
}
.vd-history-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    margin-top: 18px;
}
.vd-history-breadcrumb a { color: #E9B855; text-decoration: none; font-weight: 600; }
.vd-history-breadcrumb span:last-child { color: #fff; opacity: 0.8; }

/* ── INTRO SECTION ── */
.vd-history-intro-section {
    padding: 80px 0 100px;
    position: relative;
    background: #fff;
}
.vd-history-intro-grid {
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.vd-history-intro-content {
    flex: 1;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vd-history-intro-title {
    font-size: 32px;
    color: #7A191A;
    font-weight: 700;
    margin-bottom: 20px;
}
.vd-history-intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}
.vd-history-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #7A191A;
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.vd-history-btn:hover {
    background: #5a1012;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122,25,26,0.3);
}

.vd-history-intro-image-wrap {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.vd-history-intro-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vd-history-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 15px;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.vd-history-stat-box {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.1);
    padding: 0 10px;
}
.vd-history-stat-box:last-child {
    border-right: none;
}
.vd-history-stat-icon {
    font-size: 24px;
    color: #E9B855;
    margin-bottom: 8px;
}
.vd-history-stat-label {
    font-size: 12px;
    color: #777;
    font-weight: 600;
    margin-bottom: 4px;
}
.vd-history-stat-value {
    font-size: 15px;
    color: #7A191A;
    font-weight: 700;
}

/* ── HORIZONTAL TIMELINE ── */
.vd-history-timeline-hz-section {
    padding: 60px 0;
}
.vd-history-timeline-hz {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}
.vd-history-timeline-hz::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E9B855;
    z-index: 1;
}
.vd-history-hz-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}
.vd-history-hz-img-wrap {
    position: relative;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
    padding: 4px;
}
.vd-history-hz-img-wrap img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
.vd-history-hz-number {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #7A191A;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.vd-history-hz-node {
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #E9B855;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    z-index: 3;
}
.vd-history-hz-title {
    font-size: 16px;
    color: #7A191A;
    font-weight: 700;
    margin: 0 0 5px 0;
}
.vd-history-hz-year {
    font-size: 14px;
    color: #E9B855;
    font-weight: 700;
    margin-bottom: 10px;
}
.vd-history-hz-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ── HERITAGE GRID ── */
.vd-history-heritage-section {
    padding: 60px 0 80px;
}
.vd-history-heritage-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.vd-history-heritage-card {
    background: #fff;
    border: 1px solid #f0e6d2;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vd-history-heritage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #E9B855;
}
.vd-history-heritage-icon {
    font-size: 32px;
    color: #E9B855;
    margin-bottom: 15px;
}
.vd-history-heritage-title {
    font-size: 16px;
    color: #7A191A;
    font-weight: 700;
    margin-bottom: 10px;
}
.vd-history-heritage-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ── SAINTS VERTICAL TIMELINE ── */
.vd-history-saints-section {
    padding: 80px 0 100px;
    background: #fff;
    position: relative;
}
.vd-history-saints-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: url('../images/pattern-bg.png') center/cover;
    opacity: 0.03;
    pointer-events: none;
}
.vd-history-vt {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}
.vd-history-vt::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #E9B855;
    transform: translateX(-50%);
}
.vd-history-vt-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}
.vd-history-vt-item:last-child {
    margin-bottom: 0;
}
.vd-history-vt-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid #E9B855;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.8);
}
.vd-history-vt-content,
.vd-history-vt-image {
    width: 45%;
}
.vd-history-vt-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* Saints Content */
.vd-history-vt-content-inner {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #f9f9f9;
}
.vd-history-vt-title {
    font-size: 22px;
    color: #7A191A;
    font-weight: 700;
    margin: 0 0 15px 0;
}
.vd-history-vt-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Saints Image */
.vd-history-vt-image-inner {
    background: #7A191A;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(122,25,26,0.2);
}
.vd-history-vt-image-inner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #E9B855;
    display: block;
}
.vd-history-vt-img-caption {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    margin-top: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .vd-history-heritage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 992px) {
    .vd-history-intro-grid {
        flex-direction: column;
    }
    .vd-history-intro-content {
        padding-right: 0;
        text-align: center;
    }
    .vd-history-btn {
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .vd-history-hero { min-height: 360px; }
    .vd-history-hero-content { padding: 160px 16px 40px; }
    .vd-history-hero-title { font-size: 32px; }
    
    .vd-history-stats-overlay {
        flex-direction: column;
        bottom: 10px; left: 10px; right: 10px;
    }
    .vd-history-stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding: 10px 0;
    }
    .vd-history-stat-box:last-child {
        border-bottom: none;
    }

    /* Horizontal timeline becomes vertical */
    .vd-history-timeline-hz {
        flex-direction: column;
        gap: 40px;
    }
    .vd-history-timeline-hz::before {
        left: 20px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }
    .vd-history-hz-item {
        display: flex;
        text-align: left;
        align-items: flex-start;
        gap: 20px;
    }
    .vd-history-hz-node {
        position: absolute;
        left: 12px;
        top: 20px;
        margin: 0;
    }
    .vd-history-hz-img-wrap {
        width: 120px;
        flex-shrink: 0;
        margin-bottom: 0;
        margin-left: 40px;
    }
    
    /* Heritage Grid */
    .vd-history-heritage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Vertical Timeline */
    .vd-history-vt::before {
        left: 20px;
    }
    .vd-history-vt-node {
        left: 20px;
        top: 30px;
    }
    .vd-history-vt-item, .vd-history-vt-item:nth-child(even) {
        flex-direction: column;
        padding-left: 50px;
    }
    .vd-history-vt-content, .vd-history-vt-image {
        width: 100%;
        margin-bottom: 20px;
    }
}
@media (max-width: 480px) {
    .vd-history-heritage-grid {
        grid-template-columns: 1fr;
    }
    .vd-history-hz-item {
        flex-direction: column;
    }
    .vd-history-hz-img-wrap {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}
