:root {
    --bg-color: #f7f6f0; /* Soft warm gallery white */
    --primary: #ff3366;  /* Vibrant pink/rose */
    --secondary: #111111; /* Neo-brutalist dark black */
    --accent: #ffd200;   /* Bright retro yellow */
    --white: #ffffff;
    --card-bg: #ffffff;
    --font-sans: 'Space Grotesk', sans-serif;
    --font-heading: 'Syne', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
}

body {
    background-color: var(--bg-color);
    padding: 60px 20px;
    color: var(--secondary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Neo-brutalist Wrapper Box */
.cv-wrapper {
    background: var(--white);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    border: 3.5px solid var(--secondary);
    box-shadow: 14px 14px 0px var(--secondary);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Floating decorative corner tag */
.decorative-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--accent);
    color: var(--secondary);
    border: 3px solid var(--secondary);
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 4px 4px 0px var(--secondary);
    z-index: 10;
}

/* Header style */
.header {
    background: var(--accent);
    color: var(--secondary);
    padding: 50px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3.5px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

/* Grid background decoration for header */
.header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(var(--secondary) 1px, transparent 1px), linear-gradient(90deg, var(--secondary) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
    pointer-events: none;
}

.name {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 0.95;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary);
    -webkit-text-stroke: 1px var(--secondary);
}

.role {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--white);
    padding: 4px 12px;
    border: 2.5px solid var(--secondary);
    display: inline-block;
    box-shadow: 3px 3px 0px var(--secondary);
}

.header-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.contact-pill {
    background: var(--white);
    color: var(--secondary);
    border: 2.5px solid var(--secondary);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 4px 4px 0px var(--secondary);
    transition: all 0.15s ease-out;
}

.contact-pill:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--primary);
    background: var(--primary);
    color: var(--white);
}

.contact-pill i {
    font-size: 0.95rem;
}

/* Grid Layout */
.grid-layout {
    display: flex;
    flex: 1;
}

/* Sidebar */
.sidebar {
    width: 35%;
    background: #fafaf7;
    padding: 40px 30px;
    border-right: 3.5px solid var(--secondary);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--white);
    border: 2.5px solid var(--secondary);
    padding: 6px 12px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 4px 4px 0px var(--secondary);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags span {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.15s ease-out;
    cursor: default;
}

.tags span:hover {
    transform: rotate(-2deg) scale(1.05);
    background: var(--accent);
}

.list-dots {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-dots li {
    font-weight: 600;
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
}

.list-dots li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    border: 2px solid var(--secondary);
    position: absolute;
    left: 0;
    top: 6px;
    transform: rotate(45deg);
}

.lang-level {
    color: #666;
    font-weight: 400;
    font-size: 0.85rem;
    margin-left: 4px;
}

.award-item {
    margin-bottom: 20px;
    background: var(--white);
    padding: 16px;
    border: 2.5px solid var(--secondary);
    box-shadow: 5px 5px 0px var(--accent);
    position: relative;
}

.award-year {
    position: absolute;
    top: -12px;
    right: 12px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.award-item strong {
    font-weight: 700;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.award-item p {
    font-size: 0.8rem;
    color: #666;
}

/* Main Content */
.main-content {
    width: 65%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section h3.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.icon-bg {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2.5px solid var(--secondary);
    box-shadow: 3px 3px 0px var(--secondary);
}

.statement-card {
    background: #fafaf7;
    border: 2.5px solid var(--secondary);
    padding: 20px;
    box-shadow: 6px 6px 0px var(--secondary);
}

.statement-card p {
    line-height: 1.7;
    font-size: 1rem;
    color: var(--secondary);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background-color: var(--secondary);
}

.job-item {
    position: relative;
    margin-bottom: 30px;
}

.job-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border: 2.5px solid var(--secondary);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.job-role {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
}

.company {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.date {
    font-weight: 700;
    background: var(--accent);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 4px 10px;
    font-size: 0.8rem;
    box-shadow: 3px 3px 0px var(--secondary);
}

.job-desc {
    line-height: 1.6;
    color: #444;
    font-size: 0.92rem;
}

.edu-item {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    body { padding: 20px; }
    .cv-wrapper { box-shadow: 8px 8px 0px var(--secondary); }
    .header { flex-direction: column; align-items: flex-start; gap: 25px; padding: 30px; }
    .header-contact { align-items: flex-start; width: 100%; }
    .decorative-badge { display: none; }
    .grid-layout { flex-direction: column; }
    .sidebar, .main-content { width: 100%; border-right: none; }
    .sidebar { border-bottom: 3.5px solid var(--secondary); }
}

