/* ============================================================
   SEXYLINE.RO — Girl profile page "Velvet Glow"
   Same atmosphere as the homepage: warm plum night, neon
   magenta, champagne details, Outfit typography.
   Scoped to #girl-profile.
   ============================================================ */

#girl-profile {
    flex: 1 0 auto;
    position: relative;
    color: #f8f0f5;
    overflow: hidden;
    background:
        radial-gradient(1100px 540px at 50% -140px, rgba(255, 0, 127, 0.22), transparent 65%),
        radial-gradient(820px 480px at 88% 6%, rgba(150, 40, 110, 0.25), transparent 60%),
        radial-gradient(720px 440px at 6% 32%, rgba(90, 25, 70, 0.35), transparent 60%),
        linear-gradient(180deg, #221024 0%, #190b1c 45%, #120714 100%);
}

#girl-profile::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

#girl-profile > * {
    position: relative;
    z-index: 1;
}

.profile-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px 20px 70px;
}

/* ===== Breadcrumbs ===== */
#girl-profile .breadcrumbs {
    max-width: none;
    margin: 0 0 18px;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    color: #b08ba0;
}

#girl-profile .breadcrumbs li {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    color: #8f6e82;
}

#girl-profile .breadcrumbs li + li::before {
    color: #6e5264;
}

#girl-profile .breadcrumbs .breadcrumb-current {
    color: #d8bccd;
}

#girl-profile .breadcrumbs a {
    color: #b08ba0;
    text-decoration: none;
    transition: color 0.2s ease;
}

#girl-profile .breadcrumbs a:hover {
    color: #ff4da6;
}

/* ============================================================
   HERO CARD — photo + identity + actions
   ============================================================ */

.profile-hero {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #2e1731 0%, #241126 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 50px -18px rgba(0, 0, 0, 0.7);
}

.profile-hero-photo {
    position: relative;
    min-height: 420px;
}

.profile-hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.profile-hero-body {
    padding: 34px 36px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.profile-name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.profile-hero-body h1,
.profile-hero-body .profile-name {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #fff;
    text-transform: none;
}

.profile-name::after {
    content: '.';
    color: #ff007f;
}

/* ===== Live status badges (injected by Phoenix JS) ===== */
#girl-profile .queen-online-badge .onlineT,
#girl-profile .queen-online-badge .busyT,
#girl-profile .queen-online-badge .offlineT {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 14px 6px 12px;
    border-radius: 999px;
    line-height: 1.4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
    animation: none;
}

#girl-profile .queen-online-badge .onlineT::before,
#girl-profile .queen-online-badge .busyT::before,
#girl-profile .queen-online-badge .offlineT::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
}

#girl-profile .queen-online-badge .onlineT {
    background: linear-gradient(140deg, #2fbf6b, #1d9e53);
    cursor: pointer;
}

#girl-profile .queen-online-badge .onlineT::before {
    animation: profilePulse 1.8s ease-out infinite;
}

#girl-profile .queen-online-badge .busyT {
    background: linear-gradient(140deg, #f59f2d, #dd7f10);
}

#girl-profile .queen-online-badge .offlineT {
    background: linear-gradient(140deg, #6d5a76, #574a60);
}

@keyframes profilePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ===== Short description ===== */
.profile-tagline {
    margin: 16px 0 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 16.5px;
    line-height: 1.65;
    color: #e3cdda;
}

/* ===== CTA buttons (shown by Phoenix when online) ===== */
#girl-profile .queen-top-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

#girl-profile .btn-call-me,
#girl-profile .btn-free-sms {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#girl-profile .btn-call-me {
    color: #fff;
    background: linear-gradient(140deg, #2fbf6b, #1d9e53);
    box-shadow: 0 6px 22px rgba(47, 191, 107, 0.4);
    animation: profileCallRing 2.2s ease-out infinite;
}

#girl-profile .btn-call-me:hover {
    background: linear-gradient(140deg, #36cf76, #22ad5d);
    transform: translateY(-2px);
}

@keyframes profileCallRing {
    0% { box-shadow: 0 6px 22px rgba(47, 191, 107, 0.4), 0 0 0 0 rgba(47, 191, 107, 0.4); }
    70% { box-shadow: 0 6px 22px rgba(47, 191, 107, 0.4), 0 0 0 14px rgba(47, 191, 107, 0); }
    100% { box-shadow: 0 6px 22px rgba(47, 191, 107, 0.4), 0 0 0 0 rgba(47, 191, 107, 0); }
}

#girl-profile .btn-free-sms {
    color: #fff;
    background: linear-gradient(140deg, #ff2d8d, #d4006a);
    box-shadow: 0 6px 22px rgba(255, 0, 127, 0.4);
}

#girl-profile .btn-free-sms:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.55);
}

/* ===== Phone chip ===== */
.profile-phone-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    align-self: stretch;
}

.profile-phone {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: 0.06em;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 127, 0.5);
    background: linear-gradient(180deg, rgba(255, 0, 127, 0.22), rgba(255, 0, 127, 0.07));
    box-shadow: 0 0 24px rgba(255, 0, 127, 0.25);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.profile-phone:hover {
    color: #fff;
    border-color: rgba(255, 77, 166, 0.85);
    box-shadow: 0 0 40px rgba(255, 0, 127, 0.4);
}

.profile-phone .fa-phone {
    font-size: 15px;
    color: #ff4da6;
}

/* ============================================================
   SECTIONS — About & Schedule
   ============================================================ */

.profile-section {
    margin-top: 26px;
    border-radius: 20px;
    background: linear-gradient(180deg, #2a1430 0%, #21101f 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 28px 32px 30px;
}

.profile-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 21px;
    letter-spacing: 0.01em;
    color: #fff;
    text-transform: none;
}

.profile-section-title .fas {
    font-size: 15px;
    color: #ff4da6;
}

.profile-about-text {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 15.5px;
    line-height: 1.8;
    color: #dcc4d2;
}

.profile-about-text b,
.profile-about-text strong {
    color: #fff;
    font-weight: 600;
}

/* ===== Schedule: 7-day strip ===== */
.profile-schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

#girl-profile .scheduleO {
    text-align: center;
    border-radius: 14px;
    padding: 14px 8px 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.25s ease, background 0.25s ease;
}

#girl-profile .scheduleO:hover {
    border-color: rgba(255, 0, 127, 0.4);
    background: rgba(255, 0, 127, 0.06);
}

#girl-profile .scheduleO h4 {
    margin: 0 0 7px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e9bd83;
}

#girl-profile .scheduleO p {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.45;
    color: #fff;
    min-height: 20px;
}

#girl-profile .scheduleO p:empty::before {
    content: '—';
    color: #715a68;
}

/* ===== Back to girls ===== */
.profile-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c298ad;
    text-decoration: none;
    transition: color 0.25s ease, gap 0.25s ease;
}

.profile-back:hover {
    color: #ff4da6;
    text-decoration: none;
}

/* ============================================================
   ENTRANCE
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
    .profile-hero,
    .profile-section {
        opacity: 0;
        animation: profileIn 0.7s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
    }

    .profile-section:nth-of-type(2) { animation-delay: 0.1s; }
    .profile-section:nth-of-type(3) { animation-delay: 0.18s; }

    @keyframes profileIn {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    #girl-profile .btn-call-me,
    #girl-profile .queen-online-badge .onlineT::before {
        animation: none;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .profile-hero {
        grid-template-columns: 1fr;
    }

    .profile-hero-photo {
        min-height: 0;
        aspect-ratio: 4 / 4.6;
    }

    .profile-hero-photo img {
        position: absolute;
    }

    .profile-hero-body {
        padding: 24px 22px 24px;
    }

    .profile-schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .profile-wrap {
        padding: 16px 14px 54px;
    }

    .profile-section {
        padding: 20px 18px 22px;
    }

    .profile-schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #girl-profile .queen-top-buttons {
        width: 100%;
    }

    #girl-profile .btn-call-me,
    #girl-profile .btn-free-sms {
        flex: 1 1 auto;
        text-align: center;
        font-size: 13px;
        padding: 12px 18px;
    }

    .profile-phone {
        font-size: 17px;
    }
}
