* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #F7F4EE;
    color: #333333;
    overflow: hidden; /* Prevent body scroll on desktop */
}

.main-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

/* LEFT PANEL - Fixed 40% */
.left-panel {
    width: 40%;
    background: linear-gradient(160deg, #EAF0F8 0%, #F7F4EE 100%);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    height: 100vh;
    border-right: 1px solid #e0e0e0;
    z-index: 10;
    left: 0;
    top: 0;
    overflow: hidden; /* Prevent flower from causing overflow */
}

.left-panel img {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
}

.name-section {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.im-text {
    font-size: 28px;
    font-weight: 400;
    color: #666;
    margin-bottom: 10px;
}

.first-name {
    font-size: 64px;
    font-weight: 700;
    color: #090B33;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Momo Signature', cursive;
}

.last-name {
    font-size: 64px;
    font-weight: 700;
    color: #090B33;
    line-height: 1;
    margin-bottom: 40px;
    font-family: 'Momo Signature', cursive;
}

.role-section {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.roles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.developer-role {
    font-size: 25px;
    font-weight: 600;
    color: #666;
}

.ampersand {
    font-size: 32px;
    font-weight: 400;
    color: #0B4D8C;
    margin: 0 5px;
    font-family: 'Momo Signature', cursive;
}

.designer-role {
    font-size: 25px;
    font-weight: 600;
    color: #666;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    width: auto;
    height: auto;
}

.social-btn i {
    font-size: 28px;
    color: #666;
    transition: all 0.3s ease;
}

.social-btn:hover i {
    color: #0B4D8C;
}

/* RIGHT CONTENT - Takes remaining 60% */
.right-content {
    width: 60%;
    margin-left: 40%;
    padding: 60px 50px;
    overflow-y: auto;
    height: 100vh;
    position: relative;
    background-color: #F7F4EE;
}

.about-section {
    margin-bottom: 80px;
    position: relative;
    min-height: 300px;
}

.about-header {
    margin-bottom: 30px;
}

.full-name {
    font-size: 42px;
    font-weight: 700;
    color: #090B33;
    margin-bottom: 15px;
    font-family: 'Momo Signature', cursive;
}

.about-divider {
    width: 120px;
    height: 3px;
    background: #0B4D8C;
    margin-bottom: 25px;
    border-radius: 2px;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 100%;
}

.jeliza1{
    position: absolute;
    top: -70px;
    right: -50px;
    width: 150px;
    height: auto;
    z-index: 2;
}

.jeliza2{
    position: absolute;
    top: 79px;
    right: -50px;
    width: 60px;
    height: auto;
    z-index: 2;
}

.jeliza3{
    position: absolute;
    top: -70px;
    right: 97px;
    width: 90px;
    height: auto;
    z-index: 2;
}

.skills-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #090B33;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Momo Signature', cursive;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #0B4D8C;
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
    background-image: url(images/jeliz-collection.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
    border-radius: 10px;
}

.skill-category h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill {
    padding: 12px 24px;
    background-color: #EEE9DF;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    border: 1px solid #d8cfc2;
    transition: all 0.3s ease;
}

.skill:hover {
    background-color: #0B4D8C;
    color: #F7F4EE;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(11,77,140,0.2);
}

.projects-section {
    margin-bottom: 80px;
    position: relative;
    min-height: 200px;
}

.project-header-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    display: flex;
    flex-direction: column;
}

.project-placeholder {
    width: 100%;
    height: 200px;
    background-color: #EEE9DF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #0B4D8C;
    border: 2px dashed #0B4D8C;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.project-placeholder:hover {
    border: 2px dashed #0B4D8C;
    background-color: #E4DED3;
}

.project-placeholder.with-image i,
.project-placeholder.with-image span {
    display: none;
}

.project-placeholder.with-image a {
    width: 100%;
    height: 100%;
    display: block;
}

.project-placeholder.with-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

.project-label {
    font-size: 18px;
    font-weight: 500;
    color: #0B4D8C;
    text-align: center;
}

.jeliza4{
    position: absolute;
    bottom: -70px;
    left: -50px;
    width: 150px;
    height: auto;
    z-index: 2;
}

.jeliza5{
    position: absolute;
    bottom: 79px;
    left: -50px;
    width: 60px;
    height: auto;
    z-index: 2;
}

.jeliza6{
    position: absolute;
    bottom: -70px;
    left: 97px;
    width: 90px;
    height: auto;
    z-index: 2;
}

.accomplishments-section {
    margin-bottom: 80px;
}

.accomplishments-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.accomplishment-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #EEE9DF;
    border: 1px solid #d8cfc2;
    border-left: 3px solid #0B4D8C;
    border-radius: 6px;
    padding: 20px 24px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.accomplishment-card::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px dashed rgba(11,77,140,0.14);
    border-radius: 3px;
    pointer-events: none;
}

.accomplishment-card:hover {
    box-shadow: 0 4px 20px rgba(11,77,140,0.1);
}

.accomplishment-icon {
    font-size: 1.1rem;
    color: #0B4D8C;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.accomplishment-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.accomplishment-title {
    font-size: 16px;
    font-weight: 700;
    color: #090B33;
}

.accomplishment-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
}

.accomplishment-desc strong {
    color: #0B4D8C;
    font-weight: 700;
}

.footer {
    padding-top: 40px;
    border-top: 1px solid rgba(200,133,90,0.35);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-size: 16px;
    color: #666;
}

.right-content::-webkit-scrollbar {
    width: 8px;
}

.right-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.right-content::-webkit-scrollbar-thumb {
    background: #9BB5D9;
    border-radius: 4px;
}

.right-content::-webkit-scrollbar-thumb:hover {
    background: #0B4D8C;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .left-panel {
        width: 35%;
        padding: 40px 30px;
    }
    
    .right-content {
        width: 65%;
        margin-left: 35%;
        padding: 40px 30px;
    }
    
    .first-name, .last-name {
        font-size: 56px;
    }
    
    .left-panel img {
        width: 350px;
    }
}

@media (max-width: 1024px) {
    .left-panel img {
        width: 300px;
    }
    
    .jeliza1, .jeliza2, .jeliza3 {
        width: 120px;
        right: -30px;
    }
    
    .jeliza1 { top: -50px; width: 100px; }
    .jeliza2 { top: 60px; width: 40px; }
    .jeliza3 { top: -50px; right: 70px; width: 70px; }
    
    .jeliza4, .jeliza5, .jeliza6 {
        width: 120px;
        left: -30px;
    }
    
    .jeliza4 { bottom: -50px; width: 100px; }
    .jeliza5 { bottom: 60px; width: 40px; }
    .jeliza6 { bottom: -50px; left: 70px; width: 70px; }
}

/* Tablet - Stack vertically */
@media (max-width: 992px) {
    body {
        overflow: auto !important; /* Allow body to scroll on mobile */
    }
    
    .main-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }
    
    .left-panel {
        width: 100%;
        height: auto;
        position: relative;
        padding: 60px 40px 40px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        min-height: auto;
    }
    
    .right-content {
        width: 100%;
        margin-left: 0;
        padding: 40px 30px;
        height: auto;
        overflow-y: visible;
        min-height: auto;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .left-panel img {
        width: 250px;
        top: 20px;
        right: 20px;
    }
    
    .name-section {
        margin-bottom: 40px;
    }
    
    .role-section {
        margin-bottom: 40px;
    }
}

/* Mobile - Single column */
@media (max-width: 768px) {
    .left-panel {
        padding: 50px 30px 30px;
        min-height: auto;
    }
    
    .right-content {
        padding: 30px 20px;
    }
    
    .first-name, .last-name {
        font-size: 48px;
    }
    
    .developer-role, .designer-role {
        font-size: 22px;
    }
    
    .ampersand {
        font-size: 28px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .left-panel img {
        width: 200px;
        top: 10px;
        right: 10px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-btn i {
        font-size: 24px;
    }
    
    .jeliza1, .jeliza2, .jeliza3,
    .jeliza4, .jeliza5, .jeliza6 {
        display: none;
    }
    
    .full-name {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .project-title {
        font-size: 24px;
    }
}

/* Small mobile */
@media (max-width: 576px) {
    .left-panel {
        padding: 40px 20px 30px;
    }
    
    .right-content {
        padding: 25px 15px;
    }
    
    .first-name, .last-name {
        font-size: 42px;
    }
    
    .im-text {
        font-size: 24px;
    }
    
    .roles {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .developer-role, .designer-role {
        font-size: 20px;
    }
    
    .ampersand {
        font-size: 24px;
    }
    
    .left-panel img {
        width: 150px;
        top: 5px;
        right: 5px;
    }
    
    .about-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .skill {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .project-placeholder {
        height: 180px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-btn i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .first-name, .last-name {
        font-size: 38px;
    }
    
    .left-panel img {
        width: 120px;
    }
    
    .full-name {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .project-title {
        font-size: 22px;
    }
    
    .skill-category h3 {
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .first-name, .last-name {
        font-size: 34px;
    }
    
    .left-panel img {
        width: 100px;
    }
    
    .roles {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .ampersand {
        display: none;
    }
    
    .developer-role, .designer-role {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

html {
    scroll-behavior: smooth;
}

@keyframes jelizaFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
}

.positions-section {
    margin-bottom: 80px;
}

.tl {
    position: relative;
    padding-left: 52px;
}

.tl::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, #0B4D8C 0%, #9BB5D9 65%, #d8cfc2 100%);
}

.tl-org {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #090B33;
    background-color: #EEE9DF;
    border: 1px solid #d8cfc2;
    border-left: 3px solid #0B4D8C;
    border-radius: 6px;
    padding: 10px 18px;
    margin: 32px 0 10px 0;
}

.tl-org:first-child {
    margin-top: 0;
}

.tl-org i {
    font-size: 13px;
    color: #0B4D8C;
}

.tl-org::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 1px;
    background-color: #0B4D8C;
    z-index: 0;
}

.tl-org::after {
    content: '';
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    background-color: #0B4D8C;
    border: 2px solid #F7F4EE;
    z-index: 1;
}

.tl-entry {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 10px 14px 10px 0;
    border-radius: 6px;
    margin-bottom: 4px;
    border: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.tl-active {
    padding: 11px 0;
}

.tl-dot {
    position: absolute;
    left: -44px;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d8cfc2;
    border: 2px solid #F7F4EE;
    z-index: 1;
}

.tl-active .tl-dot {
    background-color: #0B4D8C;
    width: 12px;
    height: 12px;
    left: -46px;
    top: 12px;
    border: 2px solid #F7F4EE;
    box-shadow: 0 0 0 4px rgba(11,77,140,0.14);
}

.tl-date {
    font-size: 11.5px;
    color: #bbb;
    font-weight: 500;
    min-width: 136px;
    flex-shrink: 0;
    padding-top: 2px;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.tl-active .tl-date {
    color: #888;
}

.tl-role {
    font-size: 15px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.4;
}

.tl-active .tl-role {
    color: #090B33;
}

.present-badge {
    font-size: 10.5px;
    font-weight: 700;
    color: #F7F4EE;
    background-color: #0B4D8C;
    padding: 2px 9px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}