﻿
/* ═══════════════════════════════════════════
   GLOBAL RESET — fixes navbar link issue
   ═══════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* FIX: Override any stray <a> styles that cause blue underlines in navbar */
a {
    text-decoration: none !important;
}

:root {
    --red: #c0392b;
    --red-dk: #962d22;
    --gold: #c8973a;
    --gold-lt: #e8b84b;
    --dark: #1c1c2e;
    --dark2: #2a2040;
    --cream: #fdf8f3;
    --surface: #ffffff;
    --muted: #7a7a8c;
    --border: #ede8e0;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --r: 14px;
}



/* ═══════════════════════════════════════════
   PROFILE HERO
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   PROFILE HERO — REDESIGNED
   ═══════════════════════════════════════════ */
.profile-hero {
    background: linear-gradient(135deg, #1c1c2e 0%, #2a2040 55%, #3a1540 100%);
    position: relative;
    overflow: hidden;
    margin-top: 3.7rem;
}

    .profile-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 70% 90% at 25% 60%, rgba(200,151,58,0.12) 0%, transparent 65%), radial-gradient(ellipse 50% 70% at 85% 20%, rgba(192,57,43,0.14) 0%, transparent 55%), radial-gradient(circle at 60% 80%, rgba(90,30,120,0.2) 0%, transparent 50%);
    }

.hero-container {
    max-width: 1260px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 260px 120px 1fr;
    position: relative;
    z-index: 1;
    align-items: end;
    gap: 0;
}

/* ── Main Photo ── */
.hero-photo {
    position: relative;
    align-self: end;
    width: 260px;
}

    .hero-photo img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        object-position: top center;
        display: block;
        border-radius: 14px 14px 0 0;
        border: 2px solid rgba(200,151,58,0.4);
        border-bottom: none;
    }

.photo-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(200,151,58,0.18);
    pointer-events: none;
}

.match-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c8973a, #e8b84b);
    color: #1c1c2e;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: .5px;
    z-index: 2;
}

.online-dot {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(39,174,96,0.4);
    border-radius: 20px;
    padding: 4px 10px;
}

    .online-dot span {
        font-size: 11px;
        color: #7de8a0;
        font-weight: 600;
        letter-spacing: .5px;
    }

    .online-dot i {
        font-size: 7px;
        color: #27ae60;
        animation: blink 1.8s infinite;
    }

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

/* ── Gallery Strip ── */
.hero-gallery-strip {
    align-self: end;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 8px 0 8px;
}

.gstrip-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

    .gstrip-thumb img {
        width: 100%;
        height: 82px;
        object-fit: cover;
        display: block;
        border: 1.5px solid rgba(200,151,58,0.22);
        border-radius: 10px;
        transition: transform .35s;
    }

    .gstrip-thumb:hover img {
        transform: scale(1.08);
    }

    .gstrip-thumb .gst-ov {
        position: absolute;
        inset: 0;
        background: rgba(28,28,46,0.45);
        opacity: 0;
        transition: opacity .25s;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .gstrip-thumb:hover .gst-ov {
        opacity: 1;
    }

    .gstrip-thumb .gst-ov i {
        color: #e8b84b;
        font-size: 15px;
    }

.gstrip-more {
    background: rgba(0,0,0,0.55);
    border: 1.5px solid rgba(200,151,58,0.35);
    border-radius: 10px;
    height: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

    .gstrip-more:hover {
        background: rgba(200,151,58,0.15);
    }

    .gstrip-more span {
        font-size: 20px;
        font-weight: 700;
        color: #e8b84b;
        line-height: 1;
    }

    .gstrip-more small {
        font-size: 9px;
        color: rgba(255,255,255,0.5);
        letter-spacing: 1px;
        margin-top: 2px;
    }

/* ── Hero Info ── */
.hero-info {
    padding: 44px 28px 40px 28px;
    color: #fff;
}

.hero-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.badge-v {
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .badge-v.viewers {
        background: rgba(200,151,58,0.22);
        border: 1px solid rgba(200,151,58,0.5);
        color: #e8b84b;
    }

    .badge-v.online {
        background: rgba(39,174,96,0.18);
        border: 1px solid rgba(39,174,96,0.45);
        color: #7de8a0;
    }

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

    .hero-name span {
        color: #e8b84b;
    }

.hero-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.hstat {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 13px 10px;
    text-align: center;
    transition: background .2s;
}

    .hstat:hover {
        background: rgba(255,255,255,0.13);
    }

    .hstat .hs-ico {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .hstat .hs-lbl {
        font-size: 9.5px;
        text-transform: uppercase;
        letter-spacing: .9px;
        color: rgba(255,255,255,0.45);
        display: block;
    }

    .hstat .hs-val {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        display: block;
        margin-top: 2px;
    }

.hero-ctas {
    display: flex;
    gap: 10px;
}

.cta-chat {
    flex: 1;
    padding: 13px 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff !important;
    text-align: center;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .4px;
    transition: .2s;
    border: none;
    cursor: pointer;
}

    .cta-chat:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(192,57,43,0.45);
    }

.cta-interest {
    flex: 1;
    padding: 13px 0;
    border-radius: 50px;
    background: transparent;
    color: #e8b84b !important;
    text-align: center;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .4px;
    border: 2px solid rgba(200,151,58,0.6);
    cursor: pointer;
    transition: .2s;
}

    .cta-interest:hover {
        background: rgba(200,151,58,0.15);
        transform: translateY(-2px);
        border-color: #e8b84b;
    }

/* ═══════════════════════════════════════════
   PROFILE BODY
   ═══════════════════════════════════════════ */
.profile-body {
    max-width: 1260px;
    margin: 0 auto;
    padding: 36px 20px 60px;
}

.body-cols {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
}

/* ── Section Cards ── */
.pcard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 30px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.pcard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}

    .pcard-title .tc-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: rgba(192,57,43,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--red);
        font-size: 14px;
        flex-shrink: 0;
    }

    .pcard-title .tc-line {
        width: 3px;
        height: 22px;
        background: var(--red);
        border-radius: 2px;
    }

/* ── About ── */
.about-text {
    color: var(--muted);
    line-height: 1.85;
}

    .about-text + .about-text {
        margin-top: 12px;
    }

/* ── Gallery ── */
.gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
}

.gal-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #eee;
}

    .gal-item.featured {
        grid-column: 1 / 3;
        grid-row: 1;
        aspect-ratio: 16/9;
    }

    .gal-item.small {
        aspect-ratio: 1;
    }

    .gal-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .35s;
    }

    .gal-item:hover img {
        transform: scale(1.06);
    }

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

.gal-count-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

    .gal-count-overlay span {
        font-size: 28px;
        font-weight: 700;
    }

    .gal-count-overlay small {
        font-size: 12px;
        letter-spacing: 1px;
    }

/* ── Info Table ── */
.info-tbl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.info-row {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

    .info-row:nth-child(odd) {
        background: #faf9f7;
    }

    .info-row:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .info-row .ir-lbl {
        font-size: 10.5px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: var(--muted);
        font-weight: 500;
    }

    .info-row .ir-val {
        font-size: 14.5px;
        font-weight: 600;
        color: var(--dark);
    }

/* ── Hobbies ── */
.hobby-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hobby-pill {
    padding: 7px 16px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    cursor: default;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .hobby-pill i {
        color: var(--gold);
        font-size: 12px;
    }

    .hobby-pill:hover {
        background: var(--red);
        color: #fff;
        border-color: var(--red);
    }

        .hobby-pill:hover i {
            color: #fff;
        }

/* ── Contact ── */
.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ci-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(192,57,43,0.07);
    border: 1px solid rgba(192,57,43,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 15px;
}

.ci-text .ci-lbl {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--muted);
    display: block;
    margin-bottom: 2px;
}

.ci-text .ci-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

/* ── Social ── */
.soc-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.soc-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all .25s;
    text-decoration: none !important;
}

    .soc-btn:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    }

.soc-fb {
    background: #1877f2;
    color: #fff !important;
}

.soc-tw {
    background: #1da1f2;
    color: #fff !important;
}

.soc-wa {
    background: #25d366;
    color: #fff !important;
}

.soc-li {
    background: #0077b5;
    color: #fff !important;
}

.soc-yt {
    background: #ff0000;
    color: #fff !important;
}

.soc-ig {
    background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af);
    color: #fff !important;
}

/* ═══════════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════════ */
.sidebar-cta-card {
    background: linear-gradient(145deg, var(--dark) 0%, var(--dark2) 100%);
    border-radius: var(--r);
    padding: 30px 24px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

    .sidebar-cta-card::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(200,151,58,0.1);
    }

    .sidebar-cta-card h3 {
        font-family: 'Cormorant Garamond', serif;
        color: #fff;
        font-size: 1.3rem;
        margin-bottom: 8px;
        position: relative;
    }

    .sidebar-cta-card p {
        color: rgba(255,255,255,0.6);
        font-size: 13.5px;
        margin-bottom: 22px;
        position: relative;
    }

    .sidebar-cta-card a {
        display: block;
        background: var(--gold);
        color: #fff !important;
        border-radius: 50px;
        padding: 12px;
        font-weight: 600;
        font-size: 14px;
        transition: .2s;
        position: relative;
    }

        .sidebar-cta-card a:hover {
            background: var(--gold-lt);
        }

/* Related profiles */
.rel-list {
    display: flex;
    flex-direction: column;
}

.rel-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none !important;
    color: inherit !important;
    transition: padding-left .15s;
}

    .rel-item:last-child {
        border-bottom: none;
    }

    .rel-item:hover {
        padding-left: 4px;
    }

    .rel-item img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--border);
        flex-shrink: 0;
    }

.rel-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.rel-info small {
    font-size: 12px;
    color: var(--muted);
}

.rel-badge {
    margin-left: auto;
    background: #e8f5e9;
    color: #27ae60;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 10px;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lb-wrap {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
}

    .lb-wrap.on {
        display: flex;
    }

    .lb-wrap img {
        max-width: 90vw;
        max-height: 88vh;
        border-radius: 8px;
    }

.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

    .lb-prev:hover, .lb-next:hover {
        background: rgba(255,255,255,0.25);
    }

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE — FULL FIX
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {

    /* Stack hero into single column */
    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0;
        padding: 0;
    }

    /* Main photo full width */
    .hero-photo {
        width: 100%;
        border-radius: 0;
    }

        .hero-photo img {
            width: 100%;
            height: 280px;
            border-radius: 0;
            border: none;
            object-position: top center;
        }

    .photo-ring {
        display: none;
    }

    /* Gallery strip — horizontal row below main photo */
    .hero-gallery-strip {
        flex-direction: row;
        padding: 8px 12px;
        gap: 8px;
        background: rgba(0,0,0,0.3);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .hero-gallery-strip::-webkit-scrollbar {
            display: none;
        }

    .gstrip-thumb {
        flex-shrink: 0;
        width: 72px;
        height: 72px;
        border-radius: 8px;
    }

        .gstrip-thumb img {
            width: 72px;
            height: 72px;
            border-radius: 8px;
        }

    .gstrip-more {
        flex-shrink: 0;
        width: 72px;
        height: 72px;
        border-radius: 8px;
    }

        .gstrip-more span {
            font-size: 16px;
        }

    /* Hero info padding */
    .hero-info {
        padding: 20px 16px 28px;
    }

    .hero-badges {
        margin-bottom: 12px;
        gap: 6px;
    }

    .hero-name {
        font-size: 1.9rem;
    }

    .hero-sub {
        font-size: 11px;
        margin-bottom: 18px;
    }

    /* Stats — 2x2 grid */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 20px;
    }

    .hstat {
        padding: 12px 8px;
        border-radius: 10px;
    }

        .hstat .hs-ico {
            font-size: 18px;
        }

        .hstat .hs-val {
            font-size: 13px;
        }

    /* CTAs stack vertically */
    .hero-ctas {
        flex-direction: column;
        gap: 10px;
    }

    .cta-chat,
    .cta-interest {
        width: 100%;
        padding: 14px 0;
        font-size: 14px;
    }

    /* Body */
    .profile-body {
        padding: 20px 12px 40px;
    }

    .body-cols {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pcard {
        padding: 20px 16px;
        margin-bottom: 16px;
    }

    /* Gallery grid */
    .gal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gal-item.featured {
        grid-column: 1 / 3;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 600px) {

    .hero-photo img {
        height: 240px;
    }

    .hero-name {
        font-size: 1.65rem;
    }

    .hero-sub {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .badge-v {
        font-size: 10px;
        padding: 4px 10px;
    }

    .hstat .hs-lbl {
        font-size: 9px;
    }

    .hstat .hs-val {
        font-size: 12px;
    }

    /* Info table — single column */
    .info-tbl {
        grid-template-columns: 1fr;
    }

    .info-row:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .info-row:last-child {
        border-bottom: none;
    }

    /* Sidebar CTA hidden on small screens — optional */
    .sidebar-cta-card {
        display: none;
    }

    .pcard-title {
        font-size: 1.05rem;
    }

    .soc-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .hobby-pill {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 400px) {

    .hero-photo img {
        height: 200px;
    }

    .hero-name {
        font-size: 1.45rem;
    }

    .gstrip-thumb,
    .gstrip-more {
        width: 60px;
        height: 60px;
    }

        .gstrip-thumb img {
            width: 60px;
            height: 60px;
        }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .hstat {
        padding: 10px 6px;
    }
}

/* ═══════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════ */
.breadcrumb-bar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: 13px;
    color: var(--muted);
}

    .breadcrumb-bar .bc-inner {
        max-width: 1260px;
        margin: auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .breadcrumb-bar a {
        color: var(--muted) !important;
        transition: color .2s;
    }

        .breadcrumb-bar a:hover {
            color: var(--red) !important;
        }

    .breadcrumb-bar .sep {
        color: var(--border);
    }

    .breadcrumb-bar .cur {
        color: var(--dark);
        font-weight: 500;
    }

