:root {
    --primary-yellow: #f8d13e;
    --text-dark: #333;
    --text-light-grey: #666;
    --border-grey: #e0e0e0;
    --background-light: #f5f5f5;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: black;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.container {
    display: flex;
    min-height: 100vh;
}

.menuToggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    top: 20px;
    left: 20px;
}

.menuToggle .bar {
    background: rgb(255, 255, 255);
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
}

.menuToggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menuToggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menuToggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.sidebar {
    width: 250px;
    background-color: var(--text-dark);
    color: #fff;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 30px 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--text-dark);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.profilesmall {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--text-dark);
}

.profilesmall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-nav ul {
    list-style: none;
    width: 100%;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #fff;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 5px solid transparent;
}

.sidebar-nav a i {
    margin-right: 15px;
    font-size: 1.1em;
    color: var(--primary-yellow);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: var(--text-dark);
    color: var(--primary-yellow);
    border-left-color: #fff;
}

.sidebar-nav a.active i {
    color: var(--primary-yellow);
}

.main-content {
    flex-grow: 1;
    background-color: #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-grey);
    overflow: hidden;
}

.section {
    padding: 40px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-grey);
}

.profilelarge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 30px;
    border: 5px solid var(--primary-yellow);
}

.profilelarge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.text h2 {
    font-size: 2.5em;
    margin-bottom: 5px;
    color: var(--primary-yellow);
}

.text p {
    font-size: 1.1em;
    color: var(--text-light-grey);
}

.about-me-content {}

.summary-text {
    margin-bottom: 40px;
}

.summary-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b3aeae;
}

.stats-and-skills {}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.stat-item {
    background-color: #333333;
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffc900;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        padding: 30px;
    }

    .menuToggle {
        display: block;
    }

    .about-me-header {
        flex-direction: column;
        align-items: center;
        padding: 25px;
    }

    .header-text {
        order: 2;
        padding-right: 0;
        text-align: center;
        margin-top: 20px;
    }

    .header-text h2,
    .header-text p {
        padding-left: 0;
        text-align: center;
    }

    .header-text h2::before {
        display: none;
    }

    .profilelarge {
        order: 1;
        margin-left: 0;
    }

    .profilelarge img {
        width: 150px;
        height: 150px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .menuToggle {
        display: flex;
    }

    .sidebar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        background-color: #000000ea;
        padding-top: 70px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .sidebar-nav ul li a {
        font-size: 1.3em;
    }

    .main-content {
        padding: 20px;
    }

    .about-me-header {
        padding: 20px;
    }

    .profilelarge {
        margin: 0 auto 20px auto;
        width: 100px;
        height: 100px;
    }

    .text h2 {
        font-size: 1.8em;
    }

    .text p {
        font-size: 0.9em;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-yellow: #f8d13e;
    --text-dark: #333;
    --text-light-grey: #666;
    --border-grey: #e0e0e0;
    --background-light: #f5f5f5;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: black;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.container {
    display: flex;
    min-height: 100vh;
}

.menuToggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    top: 20px;
    left: 20px;
}

.menuToggle .bar {
    background: rgb(255, 255, 255);
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
}

.menuToggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menuToggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menuToggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.sidebar {
    width: 250px;
    background-color: var(--text-dark);
    color: #fff;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 30px 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--text-dark);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.profilesmall {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--text-dark);
}

.profilesmall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-nav ul {
    list-style: none;
    width: 100%;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #fff;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 5px solid transparent;
}

.sidebar-nav a i {
    margin-right: 15px;
    font-size: 1.1em;
    color: var(--primary-yellow);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: var(--text-dark);
    color: var(--primary-yellow);
    border-left-color: #fff;
}

.sidebar-nav a.active i {
    color: var(--primary-yellow);
}

.main-content {
    flex-grow: 1;
    background-color: #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-grey);
    overflow: hidden;
}

.section {
    padding: 40px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-grey);
}

.profilelarge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 30px;
    border: 5px solid var(--primary-yellow);
}

.profilelarge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.text h2 {
    font-size: 2.5em;
    margin-bottom: 5px;
    color: var(--primary-yellow);
}

.text p {
    font-size: 1.1em;
    color: var(--text-light-grey);
}

.about-me-content {}

.summary-text {
    margin-bottom: 40px;
}

.summary-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b3aeae;
}

.stats-and-skills {}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.stat-item {
    background-color: #333333;
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffc900;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        padding: 30px;
    }

    .menuToggle {
        display: block;
    }

    .about-me-header {
        flex-direction: column;
        align-items: center;
        padding: 25px;
    }

    .header-text {
        order: 2;
        padding-right: 0;
        text-align: center;
        margin-top: 20px;
    }

    .header-text h2,
    .header-text p {
        padding-left: 0;
        text-align: center;
    }

    .header-text h2::before {
        display: none;
    }

    .profilelarge {
        order: 1;
        margin-left: 0;
    }

    .profilelarge img {
        width: 150px;
        height: 150px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .menuToggle {
        display: flex;
    }

    .sidebar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        background-color: #000000ea;
        padding-top: 70px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .sidebar-nav ul li a {
        font-size: 1.3em;
    }

    .main-content {
        padding: 20px;
    }

    .about-me-header {
        padding: 20px;
    }

    .profilelarge {
        margin: 0 auto 20px auto;
        width: 100px;
        height: 100px;
    }

    .text h2 {
        font-size: 1.8em;
    }

    .text p {
        font-size: 0.9em;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary-yellow: #f8d13e;
    --text-dark: #333;
    --text-light-grey: #666;
    --border-grey: #e0e0e0;
    --background-light: #f5f5f5;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: black;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.container {
    display: flex;
    min-height: 100vh;
}

.menuToggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    top: 20px;
    left: 20px;
}

.menuToggle .bar {
    background: rgb(255, 255, 255);
    height: 3px;
    width: 25px;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
}

.menuToggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menuToggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menuToggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.sidebar {
    width: 250px;
    background-color: var(--text-dark);
    color: #fff;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 30px 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid var(--text-dark);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.profilesmall {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--text-dark);
}

.profilesmall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-nav ul {
    list-style: none;
    width: 100%;
}

.sidebar-nav li {
    margin-bottom: 10px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    color: #fff;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 5px solid transparent;
}

.sidebar-nav a i {
    margin-right: 15px;
    font-size: 1.1em;
    color: var(--primary-yellow);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background-color: var(--text-dark);
    color: var(--primary-yellow);
    border-left-color: #fff;
}

.sidebar-nav a.active i {
    color: var(--primary-yellow);
}

.main-content {
    flex-grow: 1;
    background-color: #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-grey);
    overflow: hidden;
}

.section {
    padding: 40px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-grey);
}

.profilelarge {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 30px;
    border: 5px solid var(--primary-yellow);
}

.profilelarge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.text h2 {
    font-size: 2.5em;
    margin-bottom: 5px;
    color: var(--primary-yellow);
}

.text p {
    font-size: 1.1em;
    color: var(--text-light-grey);
}

.about-me-content {}

.summary-text {
    margin-bottom: 40px;
}

.summary-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b3aeae;
}

.stats-and-skills {}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.stat-item {
    background-color: #333333;
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffc900;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        padding: 30px;
    }

    .menuToggle {
        display: block;
    }

    .about-me-header {
        flex-direction: column;
        align-items: center;
        padding: 25px;
    }

    .header-text {
        order: 2;
        padding-right: 0;
        text-align: center;
        margin-top: 20px;
    }

    .header-text h2,
    .header-text p {
        padding-left: 0;
        text-align: center;
    }

    .header-text h2::before {
        display: none;
    }

    .profilelarge {
        order: 1;
        margin-left: 0;
    }

    .profilelarge img {
        width: 150px;
        height: 150px;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .menuToggle {
        display: flex;
    }

    .sidebar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        background-color: #000000ea;
        padding-top: 70px;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding-top: 20px;
        margin-bottom: 20px;
    }

    .sidebar-nav ul li a {
        font-size: 1.3em;
    }

    .main-content {
        padding: 20px;
    }

    .about-me-header {
        padding: 20px;
    }

    .profilelarge {
        margin: 0 auto 20px auto;
        width: 100px;
        height: 100px;
    }

    .text h2 {
        font-size: 1.8em;
    }

    .text p {
        font-size: 0.9em;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}