/* style.css */
body {
    display: grid;
    grid-template-columns: [sidebar-start] minmax(300px, 350px) [sidebar-end content-start] 1fr [content-end];
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #212121;
    color: lightgrey;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
}

/* Left Sidebar (Sticky) */
.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 2rem;
    background-color: #212121;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #333;
}

/* Name/Title Section */
.intro-container {
    margin-top: 2rem;
}

.intro-container .dianah {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: -0.5px;
}

.intro-container .pro-title {
    font-size: 1rem;
    color: #88a826;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.intro-container .tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #b3b3b3;
    max-width: 80%;
}

/* Footer/Social (if you want to add later) */
.sidebar-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

