@font-face {
    font-family: 'LEMON MILK';
    src: url('stuff/LEMONMILK-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'LEMON MILK';
    src: url('stuff/LEMONMILK-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --navy: #0003a6;
    --lavender: #71628a;
}

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

body {
    font-family: 'Century Gothic', "Arial Rounded MT Bold", Arial, sans-serif;
    background: linear-gradient(135deg, var(--navy) 0%, var(--lavender) 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 480px;
    width: 100%;
    text-align: center;
}

/* Header / Profile section */

.links {
    font-family: 'Century Gothic', Arial, sans-serif;
}
.header-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto 32px auto;
    border-radius: 0;          /* no rounding */
    box-shadow: none;          /* no shadow */
}

.name {
    font-size: 2.8rem;
    font-family: 'Century Gothic', "Arial Rounded MT Bold", Arial, sans-serif;
    font-weight: 300;
    margin-bottom: 12px;
}

.bio {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 48px;
    line-height: 1.5;
}

/* Links */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.35s ease;
}

.link-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

/* Footer */
.footer {
    margin-top: 80px;
    font-size: 0.95rem;
    opacity: 0.75;
}

/* Responsive styles for mobile */
@media (max-width: 600px) {
    .container {
        max-width: 100%;
        padding: 0 8px;
    }
    .header-img {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .name {
        font-size: 2rem;
    }
    .bio {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .links {
        gap: 10px;
    }
    .link-btn {
        font-size: 0.95rem;
        padding: 8px 12px;
    }
    .footer {
        margin-top: 40px;
        font-size: 0.85rem;
    }
}
