/* --- OVERRIDE QUARTO'S DEFAULT MARGINS --- */
/* #quarto-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
} */

/* --- SPLIT LAYOUT CONTAINER --- */
.split-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh; /* Stretches from the very top to the bottom of the screen */
    width: 100%;       /* Forces it to stretch edge-to-edge horizontally */
    margin: 0;
}

/* --- LEFT SIDE (Grey) --- */
.left-pane {
    flex: 1 1 40%;
    background-color: #f4f4f4;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* This ensures your profile pic stays centered vertically */
    text-align: center;
}

.profile-pic {
    width: 220px;
    height: 220px;
    object-fit: cover; 
    margin-bottom: 1.5rem;
}

.left-pane h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.left-pane h2 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    margin-bottom: 2rem;
}

/* --- RIGHT SIDE (White) --- */
.right-pane {
    flex: 1 1 60%;
    background-color: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-pane h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
}

.right-pane p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
}

/* --- CUSTOM BUTTONS --- */
.btn-dark {
    background-color: #333333;
    color: #ffffff !important;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-dark:hover {
    background-color: #000000;
    color: #ffffff !important;
}

.button-group {
    display: flex;
    gap: 15px;
}

/* --- SOCIAL ICONS --- */
.social-icons {
    margin-top: 3rem;
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #333333;
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-icons a:hover {
    color: #000000;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 800px) {
    .left-pane, .right-pane {
        flex: 1 1 100%;
        padding: 3rem 2rem;
    }
}