body {
    font-family: 'Inter', sans-serif;
}
/* --- RESUME PAGE STYLES --- */

.resume-wrapper {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 20px;
}

.resume-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 5px solid var(--primary-black);
    padding-bottom: 20px;
    margin-bottom: 50px;
}

.resume-title {
    font-family: 'Anton', sans-serif;
    font-size: 5rem;
    margin: 0;
}

.resume-layout {
    display: flex;
    gap: 60px;
}

.resume-main {
    flex: 2;
}

.resume-sidebar {
    flex: 1;
}

.resume-section {
    margin-bottom: 60px;
}

/* Resume Items */
.resume-item {
    margin-bottom: 35px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.item-date {
    font-size: 0.9rem;
    color: var(--secondary-gray);
    font-weight: 600;
}

.item-sub {
    font-weight: 600;
    color: var(--accent-blue);
    margin: 5px 0 15px 0;
}

.item-list {
    padding-left: 18px;
    color: var(--secondary-gray);
}

.item-list li {
    margin-bottom: 8px;
}

/* Skill Tags */
.skill-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tags li {
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #eee;
}

.contact-info {
    font-size: 0.95rem;
    margin-bottom: 10px;
    word-break: break-all;
}

/* RESPONSIVE RESUME */
@media (max-width: 768px) {
    .resume-layout { flex-direction: column; }
    .resume-header { flex-direction: column; gap: 20px; }
    .resume-title { font-size: 3.5rem; }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%; 
    box-sizing: border-box;
    padding: 20px 5%;
    
    position: fixed;
    top: 0;
    left: 0;
    
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: 'Inter';
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;

    display: inline-block;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.nav-links a.active {
    border-bottom: 2px solid black;
    padding-bottom: 4px;
    color: black;
}

.nav-links a:hover {
    border-bottom: 2px solid black;
    padding-bottom: 4px;
    color: black;
}