/* ================================
   MOH QUALITEE
   LINK IN BIO
================================ */


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* VARIABLES */

:root {

    --background: #F8FAFC;
    

    --primary: #1A1A1A;
    --secondary: #C29A5E;

    --border: #1A1A1A;

    --accent: #B99979;

    --radius: 18px;

}


/* BODY */

body {

    min-height: 100vh;

    background:
        radial-gradient(
            circle at top,
            #ffffff 0%,
            var(--background) 45%,
            #ece9e3 100%
        );

    color: var(--primary);

    font-family: "Inter", sans-serif;

    display: flex;
    justify-content: center;

    padding: 40px 20px;

}


/* CONTAINER */

.container {
    width: 100%;
    max-width: 520px;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    z-index: 1;
}


/* ================================
   LOGO
================================ */




.logo-mark {

    width: 42px;
    height: 42px;

    border: 1px solid var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Playfair Display", serif;

    font-size: 20px;

}


.brand-name {

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 3px;

}


.brand-name span {

    font-weight: 400;

}


/* ================================
   PROFILE
================================ */

.profile {

    text-align: center;

}

.profile-image {
    width: 88px !important;
    height: 88px !important;
    margin: 0 auto;

    border-radius: 50%;
     background: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.profile-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;

    display: block;
}

.profile h1 {

    margin-top: 20px;

    font-family: "Playfair Display", serif;

    font-size: 28px;

    letter-spacing: 1px;

}


.profile p {

    margin-top: 9px;

    color: var(--secondary);

    font-size: 14px;

}


.verified {

    margin-top: 12px;

    color: #666;

    font-size: 12px;

    letter-spacing: 0.5px;

}


.verified i {

    margin-right: 5px;

}


/* ================================
   SOCIALS
================================ */

.socials {

    display: flex;

    gap: 12px;

    margin: 28px 0 30px;

}


.socials a {

    width: 42px;
    height: 42px;

    border: 1px solid var(--primary);

    border-radius: 50%;

    background: rgba(255,255,255,0.7);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    text-decoration: none;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;

}


.socials a:hover {

    transform: translateY(-4px);

    background: var(--secondary);

    color: white;

}


/* ================================
   LINKS
================================ */

.links {

    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 13px;

}


.link-card {

    width: 100%;

    min-height: 74px;

    padding: 12px 16px;

    display: flex;
    align-items: center;

    gap: 14px;

    background: rgba(255,255,255,0.78);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    color: var(--primary);

    text-decoration: none;

    box-shadow:
        0 5px 20px rgba(0,0,0,0.025);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

}


.link-card:hover {

    transform: translateY(-3px);

    border-color: #cfcac1;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.08);

}


/* FEATURED */

.link-card.featured {

    background: var(--primary);

    color: white;

    border-color: var(--primary);

}


.link-card.featured:hover {

    background: #292929;

}


/* ICON */

.link-icon {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border-radius: 12px;

    background: #F8FAFC;

    color: var(--secondary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;

}


.featured .link-icon {

    background: rgba(255,255,255,0.12);

    color: white;

}


/* CONTENT */

.link-content {

    display: flex;
    flex-direction: column;

    gap: 4px;

    flex: 1;

}


.link-content strong {

    font-size: 14px;

    font-weight: 600;

}


.link-content span {

    font-size: 11px;

    color: var(--secondary);

}


.featured .link-content span {

    color: #bdbdbd;

}


/* ARROW */

.arrow {

    font-size: 12px;

    color: #aaa;

}


.featured .arrow {

    color: white;

}


/* ================================
   FOOTER
================================ */

footer {

    width: 100%;

    text-align: center;

    margin-top: 42px;

}


.footer-line {

    width: 40px;
    height: 1px;

    background: #d3cfc8;

    margin: 0 auto 18px;

}


footer p {

    font-size: 10px;

    letter-spacing: 2px;

    color: #777;

}


footer small {

    display: block;

    margin-top: 7px;

    font-size: 10px;

    color: #aaa;

}


/* ================================
   MOBILE
================================ */

@media (max-width: 480px) {

    body {

        padding: 28px 16px;

    }


    .logo {

        margin-bottom: 32px;

    }


    .profile h1 {

        font-size: 25px;

    }


    .link-card {

        min-height: 70px;

    }

}