/* ============================================================
   Social Link Hub page — standalone styles (no Tailwind)
   ============================================================ */

/* ---------- Page title bar ---------- */
.lh-title-bar {
    background-color: #41321d;
}
.lh-title-bar__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.5rem;
}
.lh-title-bar__heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* ---------- Main gradient section ---------- */
.lh-body {
    background: linear-gradient(180deg, #2c211a 0%, #1a1009 100%);
    color: #ffffff;
}
.lh-inner {
    max-width: 32rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* ---------- Logo ---------- */
.lh-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}
.lh-logo {
    height: 56px;
    width: auto;
}

/* ---------- Cards list ---------- */
.lh-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* ---------- Individual card ---------- */
.lh-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: #ffffff;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    box-sizing: border-box;
}
.lh-card:hover,
.lh-card:focus-visible {
    border-color: rgba(255, 212, 112, 0.6);
    background-color: rgba(255, 212, 112, 0.1);
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

/* ---------- Icon ---------- */
.lh-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}
.lh-card__icon {
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
}
.lh-card:hover .lh-card__icon {
    transform: scale(1.1);
}

/* ---------- Text ---------- */
.lh-card__text {
    flex: 1;
    min-width: 0;
}
.lh-card__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}
.lh-card__subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin-top: 0.125rem;
}

/* ---------- Arrow / check icons ---------- */
.lh-card__arrow {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}
.lh-card:hover .lh-card__arrow {
    color: #ffd470;
}
.lh-card__check {
    display: none;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-left: auto;
    color: #ffd470;
}

/* ---------- Separator ---------- */
.lh-separator {
    height: 4px;
    background: radial-gradient(circle, #f1b533 0%, #000000 110%);
    margin-bottom: 1.5rem;
}

/* ---------- Footer note ---------- */
.lh-footer-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}
