@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --bg-light: #f8fafc;
    --accent-primary: #3b82f6;
    --accent-secondary: #6366f1;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --glass-bg: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Left Column - Character */
.left-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.left-col img {
    max-width: 80%;
    max-height: 80vh;
    object-fit: contain;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Right Column - Content */
.right-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.content-card {
    background: transparent;
    border: none;
    border-radius: 2rem;
    padding: 4rem;
    width: 100%;
    max-width: 600px;
    box-shadow: none;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent-primary);
    margin-bottom: 2rem;
}

.summary {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex-shrink: 0;
    /* Prevent stretching */
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.resume-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-primary);
    margin-left: 0.5rem;
    white-space: nowrap;
}

.resume-btn:hover {
    background: transparent;
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.2);
}

.resume-btn i {
    margin-right: 0.75rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    body {
        overflow-y: auto;
        height: auto;
    }

    .container {
        flex-direction: column;
        height: auto;
    }

    .left-col {
        height: 50vh;
        padding: 2rem;
    }

    .right-col {
        padding: 2rem;
    }

    .content-card {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .resume-btn {
        margin-left: 0;
        width: 100%;
        margin-top: 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }
}