/* Linktree page — matches Dope / laurentravels look */

body.page-template-page-linktree .site-header,
body.page-linktree .site-header {
    z-index: 20;
}

body.page-template-page-linktree .site-content,
body.page-linktree .site-content {
    padding-top: 0;
    position: relative;
    z-index: 1;
}

body.page-template-page-linktree .gh-foot,
body.page-linktree .gh-foot {
    display: none;
}

body.page-template-page-linktree .burger,
body.page-linktree .burger {
    border-color: rgba(255, 255, 255, 0.55);
}

body.page-template-page-linktree .burger:before,
body.page-template-page-linktree .burger:after,
body.page-linktree .burger:before,
body.page-linktree .burger:after {
    background-color: #fff;
}

body.page-template-page-linktree .logo-text,
body.page-linktree .logo-text {
    color: #fff;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.linktree {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 64px;
    overflow: hidden;
}

.linktree-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.linktree-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.04);
    filter: saturate(0.92) contrast(0.95);
}

.linktree-bg-fade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 18, 16, 0.45) 0%, rgba(20, 18, 16, 0.28) 35%, rgba(20, 18, 16, 0.55) 100%),
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 65%);
}

.linktree-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.linktree-avatar {
    display: inline-flex;
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.2);
}

.linktree-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linktree-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
}

.linktree-title {
    margin: 0 0 8px;
    font-family: var(--font-sans, Raleway, sans-serif);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.linktree-bio {
    margin: 0 0 36px;
    font-size: 1.5rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.linktree-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.linktree-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 22px;
    font-family: var(--font-sans, Raleway, sans-serif);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.linktree-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: #fff;
    color: #1a1a1a;
}

.linktree-btn:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .linktree {
        padding: 100px 18px 48px;
    }

    .linktree-title {
        font-size: 2.4rem;
    }

    .linktree-bio {
        font-size: 1.4rem;
        margin-bottom: 28px;
    }

    .linktree-btn {
        min-height: 50px;
        font-size: 1.45rem;
    }
}
