body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #1e293b;
    overflow-x: hidden;
    cursor: none; /* We hide the real cursor to fully embrace the chick */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.logo span {
    color: #eab308;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ca8a04;
}

.btn-contact {
    background-color: #facc15;
    color: #713f12;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-contact:hover {
    background-color: #eab308;
    transform: translateY(-2px);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.hero h1 span {
    color: #eab308;
}

.hero p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background-color: #0f172a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #fcfcfc;
    border: 2px dashed #e2e8f0;
    padding: 2rem;
    border-radius: 1.5rem;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #facc15;
}

.card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.skills-section {
    background-color: #f8fafc;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-item {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.skill-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.skill-item .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.skill-item h3 {
    font-size: 1rem;
    font-weight: 600;
}

.skill-item p {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

footer {
    text-align: center;
    padding: 3rem 0;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Interactive Chick */
#chick {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-size: 2.5rem;
    user-select: none;
    will-change: transform, left, top;
    transition: transform 0.1s ease-out;
}

.peck-animation {
    animation: peck 0.2s ease-in-out;
}

@keyframes peck {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.2) translateY(10px); }
    100% { transform: scale(1) translateY(0); }
}

.floating {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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