:root{
    --background:  #181818;
    --highlight-text: #60e7e6;
    --main-text-color: #dcdcdc;
    --secondary-text-color: #9f8b5e;
    --keyword-color: #b86826; 
    --bracket-color: #b8b042; /* Gold for brackets */
    --property-color: #9cdcfe; /* Light blue for properties */
}

.bracket{
    color: var(--bracket-color);
}

.keyword{
    color: var(--keyword-color);
}

.property{
    color: var(--property-color);
}

.string{
    color: var(--main-text-color);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Google Sans Code", monospace;
    color: var(--main-text-color);
    background-color: var(--background);
    overflow-x: hidden;
    display: flex;
}

.line-numbers-container {
    display: flex;
    height: 100vh;
}

.numbers-left-section {
    display: flex;
    min-width: 60px;
    flex-shrink: 0;
    border-right: 2px solid #404040;
}

.numbers-left-section .line-numbers {
    color: var(--secondary-text-color);
    background-color: #252526;
    padding: 10px 15px;
    text-align: right;
    width: 100%;
}

.numbers-left-section .line-numbers p {
    line-height: 1.5;
    font-size: 11px;
}

.right-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-bar-section {
    display: flex;
    flex-direction: row;
    padding: 10px;
    background-color: #1e1e1e;
    border-bottom: 2px solid #404040;
    gap: 15px;
}

.nav-bar-section h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--main-text-color);
    cursor: pointer;
    padding: 5px 0;
}

.nav-bar-section h6:hover {
    color: #fff;
}

.main-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.title-and-image{
    display:flex;
    justify-content: space-between;
}

.title-text{
    margin-top: 20px;
    margin-left: 10px
    
}

.image-pic img{
    margin-right: 200px;
    margin-top: 20px;
    width: 300px;
    height: auto;
    border-radius: 50%;
    border: 5px solid var(--highlight-text); 
}

.title-text h1{
    color: var(--highlight-text);
    font-size: 70px;
}

.title-text h3{
    color: var(--main-text-color);
    font-size: 30px;
    margin-top: -5px;
}

.content-section{
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.content-section .summary-content{
    margin: 10px 0px;
}

.summary-content h2{
    color: var(--highlight-text);
    font-size: 32px;
}

.summary-content p{
    font-size: 18px;
    line-height: 1.6;
    padding: 8px 5px;
}

.content-section .inside-content{
    display: flex;
    margin: 10px 0;
    gap: 0px 50px;
}

.left-side-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-side-content h2{
    color: var(--highlight-text);
    font-size: 32px;
}

.left-side-content h3{
    font-size: 25px;
}

.left-side-content p{
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 5px;
}

.right-side-content{
    display:flex;
    flex-direction: column;
    gap: 20px;
}

.skills-content h3{
    color: var(--highlight-text);
    font-size: 25px;
    margin-bottom: 5px;
}

.certificates-content h3{
    color: var(--highlight-text);
    font-size: 25px;
    margin-bottom: 5px;
}

.education-content h3{
    color: var(--highlight-text);
    font-size: 25px;
    margin-bottom: 5px;
}

.right-side-content p{
    font-size: 15px;
    line-height: 1.6;
    padding: 8px 5px;
}
