






html {
    background-color: #2c2c2c; /* asphalt dark gray */
    background-image: linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
                      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}



main {
    padding: 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto;
    row-gap: 4rem;
    font-family: 'Source Code Pro', monospace;
}

.logo {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-weight: bold;
    border: 2px solid #e6a31a; /* warm yellow-orange */
    color: #e6a31a;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo-placeholder {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-weight: bold;
    border: 2px solid rgba(230,163,26,0.4); /* faint border */
    color: rgba(230,163,26,0.4); /* darker faded color */
    font-size: 1.2rem;
    letter-spacing: 1px;
}


.cv-link {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-weight: bold;
    border: 2px solid #e6a31a; /* warm yellow-orange */
    color: #e6a31a;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skills-grid span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #e6a31a;
    color: #e6a31a;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.language {
    margin-bottom: 0.6rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.language .bar {
    background: rgba(255, 255, 255, 0.05);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.3rem;
}

.language .bar div {
    background: #e6a31a;
    height: 100%;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.two-col > div {
    padding-left: 1.5rem;
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 2rem;
    color: #e0e0e0;
}
.header-info {
    flex: 1;
    margin-left: 0rem;
    padding-right: 1rem;
}

header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    margin: 1rem 0 0;
    font-weight: 800;
}


footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding-top: 1rem;
    margin-top: 4rem;
    color: #e0e0e0;
    font-size: 0.9rem;
    gap: 0rem;
}

.footer-left, .footer-right {
    color: #e6a31a;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.85rem;
}


section:first-of-type {
    margin-top: 0;
}

section {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
    margin-top: 0rem;
    background: transparent;
    transition: background 0.2s ease;
}

section h2 {
    font-family: 'Inter', sans-serif;
    color: #e6a31a;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.5rem;
    
}

section:hover {
    background: rgba(255, 255, 255, 0.02);
}


section p, section li {
    font-family: 'Source Code Pro', monospace;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

a {
    color: #e6a31a;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

strong {
    color: #e6a31a; /* highlight important info */
    font-weight: 700; 
}

em {
    color: rgba(224, 224, 224, 0.85); /* slightly softer than main text */
    font-style: italic;
}


@media (max-width: 900px) {
    .two-col > div {
        padding-left: 0; /* override padding */
    }
}


