/* ===== General Page Styles ===== */
body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333333;
}

/* ===== Links ===== */
a {
    color: #F9A825; /* golden yellow */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ===== Headings ===== */
h1, h2, h3 {
    font-family: 'Georgia', serif;
    color: #e9edf5;
    margin-top: 0;
}
h2, h3 {
    font-family: 'Georgia', serif;
    color: #2E3B55;
    margin-top: 0;
}

/* ===== Container & Layout ===== */
.container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Sidebar ===== */
.sidebar {
    width: 260px;
    background-color: #2E3B55;
    color: #ffffff;
    padding: 2em 1.5em;
}

.sidebar h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.sidebar p {
    margin: 0.5em 0;
}

.sidebar nav ul {
    list-style: none;
    padding-left: 0;
}

.sidebar nav li {
    margin-bottom: 1em;
}

.sidebar nav a {
    font-weight: bold;
    color: #F9A825;
}

.sidebar nav a.active {
    text-decoration: underline;
}

/* Profile image styling */
.profile-img {
    width: 150px;           /* Adjust size */
    height: auto;            /* Maintain aspect ratio */
    border-radius: 50%;      /* Makes it circular */
    display: block;
    margin: 0 auto 1em auto; /* Center and add bottom spacing */
    border: 3px solid #F9A825; /* Optional: golden border matching link color */
}

/* ===== Main Content ===== */
.content {
    flex: 1;
    padding: 2em;
}

/* Section Cards */
section {
    background-color: #ffffff;
    padding: 1.5em;
    margin-bottom: 1.5em;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 1.5em 0;
    font-size: 0.9em;
    background-color: #2E3B55;
    color: #ffffff;
    margin-top: 2em;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }
    .content {
        padding: 1em;
    }
}
