/* ================================================
   CHUPI CHUPI - Main Stylesheet
   ================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary: #FF1493;
    --secondary: #FF69B4;
    --accent: #8B0000;
    --dark: #0d0d1a;
    --dark2: #141428;
    --dark3: #1a1a35;
    --text-light: #e8e0ef;
    --text-muted: #9a8fb5;
    --gold: #d4af37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===================== FLOATING HEARTS ===================== */
.hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    bottom: -50px;
    font-size: 1.5rem;
    opacity: 0;
    animation: floatUp linear forwards;
    pointer-events: none;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    50% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% {
        transform: translateY(-110vh) rotate(720deg) scale(1.2);
        opacity: 0;
    }
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 13, 26, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 20, 147, 0.15);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 40px;
    box-shadow: 0 2px 30px rgba(255, 20, 147, 0.1);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
    background: rgba(255, 20, 147, 0.15);
}

.nav-link i {
    font-size: 0.78rem;
    color: var(--primary);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0d0d1a 0%, #1a0a1a 40%, #2a0a1a 70%, #0d0d1a 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,20,147,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(139,0,0,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 80%, rgba(255,105,180,0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-hearts-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 25px;
}

.hero-heart {
    font-size: 2rem;
    display: inline-block;
}
.hero-heart.h1 { animation: heartPulse 2s ease-in-out infinite; }
.hero-heart.h2 { animation: heartPulse 2s ease-in-out 0.3s infinite; }
.hero-heart.h3 { animation: heartPulse 2s ease-in-out 0.6s infinite; font-size: 2.5rem; }
.hero-heart.h4 { animation: heartPulse 2s ease-in-out 0.9s infinite; }
.hero-heart.h5 { animation: heartPulse 2s ease-in-out 1.2s infinite; }

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); filter: drop-shadow(0 0 8px rgba(255,20,147,0.6)); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 0 60px rgba(255,20,147,0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.btn-hero-cta {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--primary), #c71585);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 6px 30px rgba(255,20,147,0.35);
    font-family: 'Poppins', sans-serif;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,20,147,0.5);
}

.hero-scroll-hint {
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===================== SECTION COMMONS ===================== */
.section {
    position: relative;
    z-index: 1;
    padding: 100px 40px;
}

.dark-section {
    background: var(--dark2);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255,20,147,0.12);
    border: 1px solid rgba(255,20,147,0.25);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 12px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ===================== CARDS GRID ===================== */
.cards-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}
.couples-grid, .video-grid, .shop-grid, .demo-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.cam-grid, .hire-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ===================== CARD STYLES ===================== */
.card {
    background: var(--dark3);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,20,147,0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,20,147,0.3);
    box-shadow: 0 12px 40px rgba(255,20,147,0.12);
}

.card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img {
    transform: scale(1.06);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    font-size: 2.8rem;
    color: rgba(255,255,255,0.25);
}

/* ---- BLUR EFFECT ---- */
.card-img-wrap.blurred .card-img,
.card-img-wrap.blurred .placeholder-img {
    filter: blur(12px) brightness(0.6);
}

/* ---- BADGES ---- */
.lock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    gap: 7px;
}

.lock-badge i { color: var(--gold); }

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e00;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 4;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: livePulse 1.2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 4;
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary), #c71585);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 4;
}

.unavailable-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 4;
}

/* ---- CARD BODY ---- */
.card-body {
    padding: 20px 22px 22px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 8px;
}

.card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.card-meta i { color: var(--primary); margin-right: 4px; }

/* ---- UNLOCK BUTTON ---- */
.card-unlock-btn {
    margin-top: 12px;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--primary), #c71585);
    color: #fff;
    border-radius: 25px;
    font-size: 0.84rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.card-unlock-btn:hover {
    box-shadow: 0 4px 20px rgba(255,20,147,0.4);
    transform: scale(1.03);
}

.card-unlock-btn.unlocked {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

/* ---- CAM SPECIFICS ---- */
.cam-name-row, .hire-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cam-rating { color: var(--gold); font-size: 0.82rem; font-weight: 600; }
.cam-viewers { margin-bottom: 4px !important; }

/* ---- SHOP SPECIFICS ---- */
.shop-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.price-current {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ---- HIRE SPECIFICS ---- */
.hire-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.skill-tag {
    padding: 3px 10px;
    background: rgba(255,20,147,0.1);
    border: 1px solid rgba(255,20,147,0.2);
    border-radius: 15px;
    font-size: 0.72rem;
    color: var(--secondary);
}

.hire-rate {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.hire-rate small { font-weight: 400; color: var(--text-muted); }

.hire-img { aspect-ratio: 1/1 !important; }
.hire-placeholder { aspect-ratio: 1/1; }
.hire-card .card-img-wrap { aspect-ratio: auto; }

/* ---- DEMO SPECIFICS ---- */
.btn-play-demo {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: rgba(255,20,147,0.1);
    border: 1px solid rgba(255,20,147,0.3);
    color: var(--primary);
    border-radius: 22px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-play-demo:hover {
    background: rgba(255,20,147,0.2);
}

/* ===================== MODALS ===================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-box {
    background: var(--dark3);
    border: 1px solid rgba(255,20,147,0.25);
    border-radius: 24px;
    padding: 50px 45px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    animation: slideUp 0.3s ease;
}

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

.modal-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #fff;
    margin-bottom: 14px;
}

.modal-box p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* ---- Age Modal ---- */
.age-heart-icon { font-size: 3rem; margin-bottom: 18px; }

.age-btn-row { display: flex; gap: 12px; flex-direction: column; }

.btn-confirm-age {
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), #c71585);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.btn-confirm-age:hover { box-shadow: 0 6px 25px rgba(255,20,147,0.45); transform: translateY(-2px); }

.btn-deny-age {
    padding: 10px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.btn-deny-age:hover { border-color: rgba(255,255,255,0.25); }

/* ---- Adastra Modal ---- */
.adastra-icon { font-size: 2.8rem; margin-bottom: 15px; }
.btn-adastra {
    padding: 12px 38px;
    background: linear-gradient(135deg, var(--gold), #b8960c);
    color: #000;
    border: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.btn-adastra:hover { box-shadow: 0 5px 20px rgba(212,175,55,0.4); }

/* ---- Payment Modal ---- */
.payment-icon { font-size: 2.8rem; margin-bottom: 15px; }
.payment-price-tag {
    display: inline-block;
    padding: 8px 28px;
    background: rgba(255,20,147,0.1);
    border: 1px solid rgba(255,20,147,0.3);
    border-radius: 30px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 22px;
}

.payment-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.btn-pay {
    padding: 13px;
    border: none;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.stripe-btn {
    background: linear-gradient(135deg, #635bff, #4a45c4);
    color: #fff;
}
.stripe-btn:hover { box-shadow: 0 5px 20px rgba(99,91,255,0.4); }

.paypal-btn {
    background: linear-gradient(135deg, #ffc439, #f5a623);
    color: #111;
}
.paypal-btn:hover { box-shadow: 0 5px 20px rgba(255,196,57,0.4); }

.btn-close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.82rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}
.btn-close-modal:hover { color: #fff; }

/* ---- Loading ---- */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner { text-align: center; }

.loader-heart {
    font-size: 4rem;
    animation: heartPulse 0.8s ease-in-out infinite;
}

.loading-spinner p {
    color: var(--text-muted);
    margin-top: 18px;
    font-size: 1rem;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--dark2);
    border-top: 1px solid rgba(255,20,147,0.1);
    padding: 60px 40px 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-col p i { color: var(--primary); margin-right: 8px; }

.footer-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 3px 0;
    transition: color 0.3s, padding-left 0.3s;
}
.footer-link:hover { color: var(--primary); padding-left: 8px; }

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 22px;
    text-align: center;
}

.disclaimer, .copyright {
    color: var(--text-muted);
    font-size: 0.76rem;
    margin-bottom: 6px;
    line-height: 1.5;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    .section { padding: 70px 24px; }
    .hero-title { font-size: 2.6rem; }
    .section-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .navbar { padding: 12px 18px; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .btn-hero-cta { padding: 13px 34px; font-size: 1rem; }
    .section { padding: 55px 18px; }
    .section-title { font-size: 1.7rem; }
    .cards-grid { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .modal-box { padding: 35px 24px; }
}

/* ---- Mobile Nav Slide ---- */
.nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100vh;
    background: var(--dark);
    padding: 80px 24px 30px;
    z-index: 999;
    box-shadow: 5px 0 30px rgba(0,0,0,0.5);
    gap: 4px;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: rgba(255,20,147,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,20,147,0.55); }

/* ===================== SELECTION ===================== */
::selection { background: rgba(255,20,147,0.25); color: #fff; }
