:root {
    --primary-color: #D0D2FF;
    --bg-cream: #FAF8F3;
    --text-dark: #2C2C2C;
    --text-light: #5A5A5A;
    --timeline-line: #E0E0E0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.liquid-bg {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 30% 50%, var(--primary-color), transparent 40%),
                radial-gradient(circle at 70% 50%, var(--primary-color), transparent 40%);
    filter: blur(80px);
    opacity: 1;
    animation: liquid 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes liquid {
    0%, 100% { transform: translate(-10%, -10%) scale(1); }
    33% { transform: translate(5%, -15%) scale(1.1); }
    66% { transform: translate(-15%, 5%) scale(0.95); }
}

.hero-content {
    text-align: center;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.hero-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-bio {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    cursor: pointer;
    z-index: 1;
}

.arrow-down {
    display: block;
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(-10px) rotate(-45deg);
    }
    60% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* Experience Section */
.experience {
    padding: 5rem 2rem;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.timeline-marker {
    position: absolute;
    left: -2.43rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--bg-cream);
}

.timeline-content {
    padding-left: 1.5rem;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.company-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.job-dates {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.job-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.view-more {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--bg-cream);
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 2rem;
    min-height: 100vh;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-bio {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -2.3rem;
        width: 12px;
        height: 12px;
    }
    
    .timeline-content {
        padding-left: 1rem;
    }
    
    .job-title {
        font-size: 1.25rem;
    }
    
    .company-name {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-name {
        font-size: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .timeline-content:hover {
        transform: translateX(5px);
        transition: transform 0.3s ease;
    }
}

.view-more {
    display: inline-block;
    margin: 2rem auto 0;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    text-align: left;
}

.timeline + .view-more {
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.view-more:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 2rem;
    background-color: #FFFFFF;
}

.portfolio-items {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-item {
    padding: 2rem;
    background-color: var(--bg-cream);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.project-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}
