/* kingdom.css - Styles for The Kingdom Section */
.sub-nav-container {
    position: sticky;
    top: 118px; /* Height of the main header + nav */
    z-index: 999;
}

.nav-sub {
    background-color: #4a4a4a;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.nav-sub a {
    color: #f2f2f2;
    padding: 12px 18px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
}

.nav-sub a:hover {
    background-color: #ddd;
    color: #333;
}

/* Two-column layout for bio pages */
.page-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.main-content {
    flex: 3; /* Takes up 3/4 of the space */
}

.sidebar {
    flex: 1; /* Takes up 1/4 of the space */
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.sidebar h3 {
    margin-top: 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.5rem;
    color: #002855;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 0.5rem;
}

.sidebar li strong {
    color: #333;
}

/* New class for the square ADBC logo */
.sidebar-logo-square {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    aspect-ratio: 1 / 1; /* Ensure the container is square */
    object-fit: cover; /* Cover the area without stretching */
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Symbol styling */
.symbol-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.anthem-lyrics {
    background-color: #f9f9f9;
    border-left: 4px solid #002855;
    padding: 1rem 1.5rem;
    font-style: italic;
    white-space: pre-wrap;
    font-family: serif;
}