/* General Styles */
body {
    background-color: #13192c;
    color: #13192c;           /* Dark text for legibility */
    font-family: 'Inter', sans-serif;
    margin-top: 50px;
    padding: 20px;
}

.container {
    max-width: 85%;
    margin: auto;
    background: #efede7; /* Soft muted blue */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(43, 78, 140, 0.15); /* Subtle blue-ish shadow */
}

/* Profile Section */
.profile-section {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    gap: 30px; /* Space between profile picture and bio */
}

.profile-picture {
    flex-shrink: 0; /* Prevents image from resizing */
    width: 200px; /* Adjust width as needed */
    height: auto;
    border-radius: 12px; /* Optional: Add rounded corners */
    overflow: hidden; /* Ensures the image stays within the rounded corners */
}

.profile-picture img {
    width: 100%;
    height: auto;
    display: block; /* Removes extra space below the image */
}

.profile-content {
    flex-direction: row;
    flex-grow: 1; /* Allows the bio section to take up remaining space */
}

.bio-background {
    padding: 30px;
    background-color: #d8dae0; /* Light background for bio */
    border-radius: 12px;
}

.profile-content h1 {
    font-size: 2.5rem;
    color: #221f1f; /* Dark text */
    margin-bottom: 10px;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #221f1f; /* Dark text */
    margin-bottom: 20px;
}

.profile-links {
    display: flex;
    gap: 15px;
}

.link-button {
    padding: 10px 20px;
    background-color: #2B4E8C; /* Accent color */
    color: #fcfbfa; /* Light text */
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.link-button:hover {
    background-color: #1C3B6E; /* Darker accent color */
    transform: translateY(-2px);
}
