/* 
   Lisa King Landing Page - Design System
   Cyber-Industrial Premium Aesthetic
*/

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

:root {
    --bg-dark: #0a0e17;
    --navy-card: #151b28;
    --accent-gold: #e9c46a;
    --accent-cyan: #00b4d8;
    --text-white: #f8f9fa;
    --text-gray: #a0a6b1;
    --glass-bg: rgba(21, 27, 40, 0.85);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image:
        radial-gradient(circle at 50% 0%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(233, 196, 106, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    text-align: center;
}

/* Header/Profile */
.profile-section {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.profile-img-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 0 20px rgba(233, 196, 106, 0.2);
}

.status-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--accent-cyan);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.bio {
    font-weight: 300;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.specialty-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.pill {
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--accent-cyan);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

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

.link-card {
    background: var(--navy-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-cyan);
    opacity: 0;
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(233, 196, 106, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.link-card:hover::before {
    opacity: 1;
}

.link-card.featured {
    background: linear-gradient(135deg, #151b28 0%, #1e2637 100%);
    border-color: rgba(233, 196, 106, 0.4);
}

.link-card.featured::after {
    content: 'TOP PRIORITY';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-gold);
    color: var(--bg-dark);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 8px;
    border-bottom-left-radius: 4px;
}

.link-info {
    text-align: left;
}

.link-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.link-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.link-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

/* Social Bar */
.social-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
}

.social-link {
    color: var(--text-gray);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-button {
    background: var(--accent-gold);
    color: var(--bg-dark);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(233, 196, 106, 0.4);
}

.email-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-text {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }

    h1 {
        font-size: 1.5rem;
    }
}