/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    --accent-pink: #ff6b9d;
    --accent-pink-hover: #ff5a8f;
    --border-color: #2a2a2a;
    --hover-bg: #252525;
}

body {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Mono', 'Droid Sans Mono', 'Source Code Pro', monospace;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--primary-dark);
    min-height: 100vh;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    padding: 100px 40px 80px;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.profile-image-wrapper {
    flex-shrink: 0;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 4px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
}

.hero-text {
    flex: 1;
    padding-top: 10px;
}

.name {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.5;
}

.location {
    font-size: 0.95rem;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.contact-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    color: var(--accent-pink);
    text-decoration: none;
    border: 1px solid var(--accent-pink);
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background: var(--accent-pink);
    color: var(--primary-dark);
    border-color: var(--accent-pink-hover);
}

/* Main Content */
.main-content {
    padding: 80px 40px;
}

.section {
    margin-bottom: 100px;
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.section:nth-child(1) {
    animation-delay: 0.3s;
}

.section:nth-child(2) {
    animation-delay: 0.4s;
}

.section:nth-child(3) {
    animation-delay: 0.5s;
}

.section:nth-child(4) {
    animation-delay: 0.6s;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.skill-card {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.skill-card:hover {
    border-color: var(--accent-pink);
    background: var(--hover-bg);
    color: var(--text-primary);
}

/* Languages Section */
.languages-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.language-tag {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.language-tag:hover {
    border-color: var(--accent-pink);
    color: var(--text-primary);
}

/* Experience Section */
.experience-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.experience-item:last-child {
    border-bottom: none;
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 20px;
}

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

.role {
    font-size: 0.95rem;
    color: var(--accent-pink);
    font-weight: 400;
}

.period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    white-space: nowrap;
}

.exp-location {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.exp-details {
    list-style: none;
    margin-top: 16px;
}

.exp-details li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.exp-details li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .name {
        font-size: 2.5rem;
    }

    .profile-image {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 24px 60px;
    }

    .name {
        font-size: 2rem;
    }

    .title {
        font-size: 1rem;
    }

    .main-content {
        padding: 60px 24px;
    }

    .profile-image {
        width: 140px;
        height: 140px;
    }

    .exp-header {
        flex-direction: column;
        gap: 8px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .languages-list {
        flex-direction: column;
    }

    .contact-links {
        flex-direction: column;
        width: 100%;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}
