:root {

    --background: #E8E9E3;      /* Warm Sage White */
    --surface: #F1F2ED;         /* Soft Sage */
    --surface-muted: #c3c4c1;   /* Muted Sage White */
    --surface-muted-dark: #AEB5A6;  /* Stone Sage */

    --text: #181B16;            /* Deep Olive Black */
    --text-secondary: #454A42;  /* Moss Gray */
    --text-tertiary: #34412D;   /* Forest Olive */
    --muted: #6B6F63;          /* Muted Olive Gray */


    --accent: #5C6851;          /* Muted Sage */
    --accent-hover: #566949;    /* Deep Sage */


    --border: #CDD1C7;          /* Misty Sage Gray */
    --border-dark: #AEB5A6;     /* Stone Sage */


    --highlight: #D9DCCF;       /* Pale Olive */
    --warm: #C8BFA8;            /* Warm Stone */
    --success: #687A58;         /* Moss Green */
    --danger: #8A6258;          /* Muted Terracotta */

    --button: #3d5730;
    --button-hover: #4b7c32;
    --button-text: #F4F5F0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}



body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(1rem, 1fr) minmax(0, 800px) minmax(1rem, 1fr);
    padding-top: 3rem;

    background-color: var(--background);
    color: var(--text);

    overflow-x: hidden;
}

h1 {
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-tertiary);
}

h2 {
    font-size: 1.0rem;
    font-weight: 700;
    color: var(--text);
}


p {
    color: var(--text-secondary);
}

@media (min-width: 769px) and (max-width: 1000px) {
    body {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .profile-content {
        grid-column: 1;
    }

    .main-content {
        grid-column: 2;
    }
}





@media (max-width: 768px) {
    body {
        display: block;
        padding-top: 0;
    }

    .profile-content {
        padding: 2rem 1rem 1rem;
        justify-content: center;
        text-align: center;
        border-right: none;
    }

    .profile-content .profile {
        width: 100%;
        max-width: 420px;
    }

    .main-content {
        width: 100%;
        border-right: 0;
        border-left: 0;
    }

    h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .profile-content {
        padding-top: 1.25rem;
    }

    .avatar {
        --size: 82px;
    }
}
