/* reset */

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

/* base */

body {
    font-family: "Heebo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #ffe6ff 0, #fdf4ff 35%, #eef2ff 100%);
    color: #111827;
    line-height: 1.6;
}

/* layout helpers */

.main-header,
.hero,
.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* header */

.main-header {
    padding-top: 18px;
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-bubble {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f973e2, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdfcff;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(168, 85, 247, 0.45);
    image-rendering: pixelated;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 800;
}

.logo-text p {
    font-size: 12px;
    color: #6b7280;
}

.main-nav a {
    margin-left: 16px;
    text-decoration: none;
    font-size: 14px;
    color: #4b5563;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f973e2, #a855f7);
    border-radius: 999px;
    transition: width 0.18s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* hero */

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 70vh;
}

.hero-text {
    max-width: 560px;
}

.hero-tagline {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a855f7;
    margin-bottom: 6px;
}

.hero-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 15px;
    margin-bottom: 18px;
}

.btn-primary {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f973e2, #fb7185);
    color: #fdfcff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(248, 113, 113, 0.45);
    transform: translateY(0);
    transition: transform 0.13s ease, box-shadow 0.13s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(248, 113, 113, 0.55);
}

/* hero pixel visual */

.hero-visual {
    position: relative;
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pixel-frame {
    width: '1000px;
    height: 220px;
    border-radius: 40px;
    background: #c2bddf;
    padding: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pixel-bob 2.8s ease-in-out infinite;
}

.pixel-frame img {
    max-width: 100%;
    max-height: 100%;
    image-rendering: pixelated;
}

.pixel-shadow {
    margin-top: 10px;
    width: 130px;
    height: 18px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.3), transparent 70%);
    filter: blur(2px);
}

.hero-floating-tag {
    position: absolute;
    top: 8px;
    right: -8px;
    padding: 6px 12px;
    border-radius: 12px;
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(245, 158, 11, 0.6);
}

/* bobbing animation */

@keyframes pixel-bob {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* divider */

.section-divider {
    border: dotted #c4b5fd 5px;
    border-bottom: none;
    width: 60px;
    margin: 10px auto 32px;
}

/* sections */

.section {
    margin-bottom: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #111827;
}

.section p {
    font-size: 15px;
    color: #374151;
}

/* soft section */

.section-soft {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    box-shadow: 0 12px 34px rgba(148, 163, 184, 0.5);
}

/* skills logos row */

.skills-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.skill-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
}

.skill-circle {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f973e2, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdfcff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.6);
    image-rendering: pixelated;
}

.skill-logo span {
    font-size: 11px;
    color: #4b5563;
    margin-top: 4px;
}

/* cards under skills */

.cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 10px;
}

.card {
    flex: 1;
    min-width: 220px;
    background: #fefeff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 26px rgba(148, 163, 184, 0.4);
}

.card h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.card p {
    font-size: 14px;
    color: #4b5563;
}

/* timeline */

.timeline {
    border-left: 3px solid #e5e7eb;
    padding-left: 20px;
    margin-top: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 18px;
    padding-left: 4px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f973e2, #a855f7);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.7);
}

.timeline h3 {
    font-size: 17px;
    margin-bottom: 2px;
}

.timeline-date {
    font-size: 12px;
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}

/* lifestyle grid */

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.lifestyle-item {
    background: #faf5ff;
    border-radius: 16px;
    padding: 14px;
    border: 1px solid rgba(196, 181, 253, 0.7);
}

.lifestyle-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.lifestyle-item p {
    font-size: 14px;
}

/* contact */

.contact-box {
    margin-top: 12px;
    padding: 16px;
    max-width: 360px;
    border-radius: 18px;
    background: #fdfcff;
    box-shadow: 0 10px 26px rgba(148, 163, 184, 0.4);
}

.contact-box a {
    color: #a855f7;
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* footer */

.main-footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #6b7280;
}

/* responsive */

@media (max-width: 860px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero {
        flex-direction: column;
        text-align: left;
        gap: 24px;
        min-height: auto;
    }

    .hero-visual {
        align-self: center;
    }

    .cards-row {
        flex-direction: column;
    }

    .skills-logos {
        justify-content: flex-start;
    }

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