/* =========================
   SEJARAH PAGE STYLES
   ========================= */

/* Main Container Layout */
.sejarah-page .container {
    display: flex;
    max-width: 1200px;
    margin: 80px auto 20px auto; /* Top margin for navbar */
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Sidebar Styling */
.sejarah-page .sidebar {
    width: 30%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-right: 2px solid #dee2e6;
    position: relative;
}

.sejarah-page .sidebar h2 {
    margin-bottom: 25px;
    font-weight: bold;
    color: #003f91;
    font-size: 24px;
    border-bottom: 3px solid #003f91;
    padding-bottom: 10px;
    position: relative;
}

.sejarah-page .sidebar h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #0066cc 0%, #003f91 100%);
    border-radius: 2px;
}

.sejarah-page .sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sejarah-page .sidebar li {
    padding: 12px 16px;
    cursor: pointer;
    position: relative;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sejarah-page .sidebar li:not(:last-child)::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, #dee2e6 0%, transparent 100%);
    margin: 8px 0;
}

.sejarah-page .sidebar a {
    text-decoration: none;
    color: #333;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sejarah-page .sidebar a:hover {
    color: #003f91;
    transform: translateX(5px);
}

/* Make Hubungi Kami bold by default */
.sejarah-page .sidebar a[href*="hubungi"] {
    font-weight: bold !important;
    color: #003f91;
}

.sejarah-page .sidebar li:hover {
    background: linear-gradient(135deg, rgba(0, 63, 145, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    transform: translateX(5px);
}

.sejarah-page .sidebar li.active {
    background: linear-gradient(135deg, #003f91 0%, #0066cc 100%);
}

.sejarah-page .sidebar li.active a {
    color: white;
    font-weight: bold;
}

/* Main Content Styling */
.sejarah-page .main-content {
    width: 70%;
    padding: 40px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.sejarah-page .main-content h1 {
    color: #003f91;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: bold;
    border-bottom: 3px solid #003f91;
    padding-bottom: 15px;
    position: relative;
}

.sejarah-page .main-content h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #0066cc 0%, #003f91 100%);
    border-radius: 2px;
}

/* History Section */
.sejarah-page .history-section {
    margin-bottom: 30px;
}

.sejarah-page .history-section p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin: 0 0 20px 0;
}

.sejarah-page .history-section p:last-child {
    margin-bottom: 0;
}

/* Image Styling */
.sejarah-page .history-image {
    text-align: center;
    margin: 30px 0;
}

.sejarah-page .history-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.sejarah-page .history-image img:hover {
    transform: scale(1.02);
}

/* Development Section */
.sejarah-page .development-section {
    margin-bottom: 30px;
}

.sejarah-page .development-section p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin: 0 0 20px 0;
}

.sejarah-page .development-section p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sejarah-page .container {
        flex-direction: column;
        margin: 80px 15px 20px 15px;
    }
    
    .sejarah-page .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #dee2e6;
        padding: 20px;
    }
    
    .sejarah-page .main-content {
        width: 100%;
        padding: 25px;
    }
    
    .sejarah-page .sidebar h2 {
        font-size: 20px;
    }
    
    .sejarah-page .main-content h1 {
        font-size: 24px;
    }
    
    .sejarah-page .history-image {
        margin: 20px 0;
    }
}

@media (max-width: 480px) {
    .sejarah-page .container {
        margin: 80px 10px 15px 10px;
        border-radius: 10px;
    }
    
    .sejarah-page .sidebar {
        padding: 15px;
    }
    
    .sejarah-page .main-content {
        padding: 20px;
    }
    
    .sejarah-page .history-section p,
    .sejarah-page .development-section p {
        font-size: 15px;
    }
    
    .sejarah-page .history-image {
        margin: 15px 0;
    }
}
