/* ==========================================================================
   SEJARAH SEKOLAH - INTERNATIONAL ACADEMIC STYLE (TIMES NEW ROMAN EDITION)
   ========================================================================== */

:root {
    --navy-deep: #0D1B2A;
    --blue-royal: #1B263B;
    --blue-accent: #2B3A4A;
    --gold-accent: #D4AF37;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Mengubah font ke Times New Roman */
    --font-heading: 'Times New Roman', Times, serif;
    --font-body: 'Times New Roman', Times, serif;
}

body {
    background-color: #FDFEFE;
    font-family: var(--font-body) !important;
}

/* ==========================================================================
   1. BREADCRUMB SECTION (PREMIUM HEADER)
   ========================================================================== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--blue-royal) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold-accent);
    margin-bottom: 60px;
}

/* Efek hiasan geometris samar di latar belakang breadcrumb */
.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(212, 175, 55, 0.05);
    transform: rotate(45deg);
    pointer-events: none;
}

.breadcrumb-title {
    font-family: var(--font-heading) !important;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.breadcrumb-section nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body) !important;
}

.breadcrumb-section nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-section nav a:hover {
    color: var(--gold-accent);
}

.breadcrumb-section nav span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-section nav span:last-child {
    color: var(--gold-accent);
    font-weight: 600;
}

/* ==========================================================================
   2. SEJARAH CONTENT SECTION
   ========================================================================== */
.sejarah-page {
    padding-bottom: 80px;
}

/* Komponen Frame Foto Sejarah */
.sejarah-image {
    border-radius: 4px;
    border: 1px solid rgba(13, 27, 42, 0.08);
    box-shadow: 0 15px 40px rgba(13, 27, 42, 0.07) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    object-fit: cover;
}

.sejarah-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(13, 27, 42, 0.12) !important;
}

/* Tipografi Judul Sejarah */
.judul-sejarah {
    font-family: var(--font-heading) !important;
    color: var(--navy-deep);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Garis Aksen Emas di Bawah Judul */
.garis-bawah {
    width: 60px;
    height: 3px;
    background-color: var(--gold-accent);
    margin-bottom: 30px;
}

/* Isi Teks Deskripsi Sejarah */
.isi-sejarah {
    font-family: var(--font-body) !important;
    color: var(--blue-accent);
    font-size: 1.1rem; /* Penyesuaian skala Times New Roman agar nyaman dibaca */
    line-height: 1.95;
    text-align: justify;
}

/* Menghias paragraf pertama agar terkesan silsilah/klasik (Drop Cap) */
.isi-sejarah::first-letter {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    color: var(--navy-deep);
    font-size: 1.3em;
}

/* ==========================================================================
   3. TOMBOL KEMBALI PREMIUM (OVERRIDE BOOTSTRAP)
   ========================================================================== */
.sejarah-page .btn-primary {
    background: transparent !important;
    border: 2px solid var(--navy-deep) !important;
    color: var(--navy-deep) !important;
    font-family: var(--font-body) !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.sejarah-page .btn-primary:hover {
    background: var(--navy-deep) !important;
    color: var(--white) !important;
    transform: translateX(-3px);
}

.sejarah-page .btn-primary i {
    transition: transform 0.3s ease;
}

.sejarah-page .btn-primary:hover i {
    transform: translateX(-4px);
}

/* ==========================================================================
   4. RESPONSIVITAS MOBILE
   ========================================================================== */
@media (max-width: 991.98px) {
    .breadcrumb-section {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    .breadcrumb-title {
        font-size: 1.85rem;
    }
    .sejarah-page {
        padding-bottom: 50px;
    }
    .judul-sejarah {
        font-size: 1.75rem;
        margin-top: 15px;
    }
    .isi-sejarah {
        font-size: 1.05rem;
        line-height: 1.85;
    }
}