/* ================================================================
   LINKS BIO PAGE STYLES
   ================================================================ */

.links-body {
    background: var(--cream);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 3rem 1rem;
    overflow-x: hidden;
}

.links-container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.links-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.links-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    background: var(--white);
    padding: 10px;
}

.links-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.links-desc {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.links-sub {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.5;
    max-width: 85%;
}

.link-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 1.5rem;
    margin-bottom: 0.2rem;
    text-align: center;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.link-card {
    background: var(--navy);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s, background 0.3s;
    color: var(--white);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(26, 42, 63, 0.2);
    border-color: var(--gold);
}

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

.link-card-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    z-index: 1;
}

.link-card-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    transition: transform 0.3s, color 0.3s;
}

.link-card:hover .link-card-icon {
    color: var(--gold-lt);
    transform: scale(1.1);
}

.link-card-title {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.link-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-lt);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    z-index: 1;
}

.link-card:hover .link-card-arrow {
    background: rgba(195, 160, 84, 0.15);
    border-color: var(--gold);
    transform: translateX(3px);
}

.links-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(26, 42, 63, 0.05);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    transform: translateY(-3px);
    background: var(--navy);
    color: var(--gold);
}

.links-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--ls-border);
}

.links-footer p {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.links-footer a {
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 600;
    transition: color 0.3s;
}

.links-footer a:hover {
    color: var(--gold);
}
