@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    background:
        radial-gradient(circle at top left, #172554 0%, transparent 35%),
        radial-gradient(circle at bottom right, #312e81 0%, transparent 35%),
        #050816;

    overflow-x: hidden;
}


/* =========================================
   PAGE
========================================= */

.page {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: auto;
    padding: 55px 25px 35px;
    z-index: 2;
}


/* =========================================
   BACKGROUND GLOWS
========================================= */

.glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.glow-one {
    background: #2563eb;
    top: -100px;
    left: -120px;
}

.glow-two {
    background: #7c3aed;
    bottom: -120px;
    right: -100px;
}


/* =========================================
   PROFILE
========================================= */

.profile {
    text-align: center;
    margin-bottom: 35px;
}
/*
.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 28px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    box-shadow:
        0 15px 45px rgba(37, 99, 235, 0.35),
        inset 0 1px 1px rgba(255,255,255,0.25);
}
*/
.logo span {
    font-size: 54px;
    font-weight: 800;
    color: white;
}


.logo img {
    width: 30%;
    height: 30%;
    object-fit: contain;
}

.profile h1 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #60a5fa;
    font-size: 13px;
    font-weight: 600;

    margin-bottom: 13px;
}

.verified i {
    font-size: 14px;
}

.tagline {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.description {
    max-width: 500px;
    margin: auto;

    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   LINK CARDS
========================================= */

.links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.link-card {
    position: relative;

    min-height: 70px;
    padding: 10px 18px;

    display: flex;
    align-items: center;
    gap: 15px;

    text-decoration: none;
    color: white;

    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;

    background: rgba(255,255,255,0.055);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        0 8px 30px rgba(0,0,0,0.12);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.link-card:hover {
    transform: translateY(-3px) scale(1.01);

    background: rgba(255,255,255,0.10);

    border-color: rgba(255,255,255,0.18);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.25);
}

.link-card:active {
    transform: scale(0.98);
}


/* =========================================
   ICON
========================================= */

.icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    font-size: 22px;

    background: rgba(255,255,255,0.08);
}

.link-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.link-text strong {
    font-size: 15px;
    font-weight: 700;
}

.link-text small {
    color: #94a3b8;
    font-size: 11px;
}

.arrow {
    color: #64748b;
    font-size: 13px;
    transition: 0.25s ease;
}

.link-card:hover .arrow {
    color: white;
    transform: translate(2px, -2px);
}


/* =========================================
   BRAND COLORS
========================================= */

.whatsapp .icon {
    color: #25d366;
    background: rgba(37, 211, 102, 0.12);
}

.google-review .icon {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
}

.instagram .icon {
    color: #f472b6;
    background: rgba(236, 72, 153, 0.12);
}

.facebook .icon {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.12);
}

.tiktok .icon {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

.youtube .icon {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.12);
}

.pinterest .icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
}

.website .icon {
    color: #818cf8;
    background: rgba(99, 102, 241, 0.12);
}

.linkedin .icon {
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.12);
}

.location .icon {
    color: #fb7185;
    background: rgba(244, 63, 94, 0.12);
}

.phone .icon {
    color: #38bdf8;
    background: rgba(14, 165, 233, 0.12);
}

.email .icon {
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.12);
}


/* =========================================
   FEATURES
========================================= */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 28px;
}

.feature {
    padding: 16px 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    color: #94a3b8;

    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 15px;

    background: rgba(255,255,255,0.035);
}

.feature i {
    color: #60a5fa;
    font-size: 18px;
}

.feature span {
    font-size: 10px;
    font-weight: 600;
}


/* =========================================
   FOOTER
========================================= */

footer {
    text-align: center;
    margin-top: 35px;

    color: #475569;

    font-size: 10px;
    line-height: 1.8;
}

footer strong {
    color: #64748b;
}

footer span {
    display: block;
}


/* =========================================
   MOBILE
========================================= */
/*
@media (max-width: 600px) {

    .page {
        padding: 35px 16px 25px;
    }

    .logo {
        width: 85px;
        height: 85px;
        border-radius: 23px;
    }

    .logo span {
        font-size: 45px;
    }

    .profile h1 {
        font-size: 32px;
    }

    .description {
        font-size: 13px;
    }

    .link-card {
        min-height: 67px;
        padding: 9px 14px;
        border-radius: 16px;
    }

    .icon {
        width: 45px;
        height: 45px;
        border-radius: 13px;
    }

    .link-text strong {
        font-size: 14px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}*/

@media (max-width: 600px) {

    .page {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
        padding: 35px 16px 25px;
    }

    .profile {
        width: 100%;
        text-align: center;
    }

    .logo {
        width: 120px;
        height: 120px;
        margin-left: auto;
        margin-right: auto;
    }

    .logo img {
        width: 110px;
        height: 110px;
    }

    .profile h1 {
        font-size: 32px;
        text-align: center;
    }

    .tagline,
    .description {
        text-align: center;
    }
}

/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 360px) {

    .profile h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 12px;
    }

    .link-card {
        gap: 11px;
    }

    .link-text small {
        font-size: 10px;
    }
}
