/* =============================== */
/* ROOT VARIABLES (COLOR PALETTE) */
/* =============================== */

:root {
    --bg-dark: #0d0d0d;
    --bg-dark-2: #141414;
    --bg-card: #1b1b1b;

    --text-strong: #ffffff;
    --text-soft: #d7d7d7;
    --text-muted: #aaaaaa;

    --logo-fill: #e4dfd2;
    --logo-outline: #0f0f0f;

    --accent-pink: #b88fa8;
    --accent-mauve: #8b6980;
    --accent-purple: #5a4553;

    --border-soft: #262626;
}

/* Text selection */
::selection {
    background-color: #e4dfd2;
    color: #0d0d0d;
}

::-moz-selection {
    background-color: #e4dfd2;
    color: #0d0d0d;
}

/* ===========================
   FIXED BACKGROUND IMAGE
=========================== */

.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../imgs/bg.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
}


/* ===============================================
   GLOBAL REVEAL ANIMATION (fade + translate + blur)
   =============================================== */

.reveal {
    opacity: 0;
    transition: opacity 1s ease;
}

.reveal.visible {
    opacity: 1;
}

/* TIMER */
.header.reveal {
    transition-delay: 0.10s;
}

.intro-clean.reveal {
    transition-delay: 0.25s;
}

.links.reveal {
    transition-delay: 0.40s;
}



/* Optional: speed curve (premium feel) */
.reveal {
    transition-timing-function: cubic-bezier(.19,1,.22,1);
}


/* =============================== */
/* GLOBAL RESET */
/* =============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    outline: none;
}

html, body {
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-strong);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    width: 100%;
}


/* =============================== */
/* PAGE WRAPPER */
/* =============================== */

.page-wrapper {
    width: 60%;  /* DESKTOP WIDTH */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 40px;
}


/* =============================== */
/* SECTION STYLE */
/* =============================== */

section {
    padding: 20px 0;
}

/* ===========================
   GO UP BUTTON (Floating)
   =========================== */

.go-up {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    opacity: 0;
    pointer-events: none;  /* IMPORTANT */

    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 9999;
}

.go-up.visible {
    opacity: 1;
    pointer-events: auto;  /* becomes clickable when visible */
}

.go-up img {
    width: 20px;
    height: 20px;
    opacity: 0.85;
    transition: 0.25s ease;
}

/* Hover – desktop only */
@media (hover: hover) {
    .go-up:hover {
        transform: translateY(-4px);
        background: rgba(255,255,255,0.15);
    }

    .go-up:hover img {
        transform: translateY(-2px);
        opacity: 1;
    }
}


/* =============================== */
/* HEADER */
/* =============================== */

.header {
    padding: 60px 0 20px;
    text-align: center;
}

.logo-svg svg {
    width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-link:hover {
    
}

.logo-link:hover .logo-svg svg {
    transform: scale(1.04);
}


/* ===========================
   FOOTER
   =========================== */

.footer {
    padding: 50px 0 35px;
    text-align: center;
    color: #e4dfd2;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
}

.footer-main {
    font-size: 0.75rem;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.footer-link {
    color: #e4dfd2;
    text-decoration: none;
    border-bottom: 1px solid rgba(228,223,210,0.25);
    padding-bottom: 1px;
}

.footer-link:hover {
    border-bottom-color: rgba(228,223,210,0.55);
}

/* The small disclaimer text */
.footer-disclaimer {
    font-size: 0.65rem;
    opacity: 0.55;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 30px;
    }

    .footer-main {
        font-size: 0.9rem;
    }

    .footer-disclaimer {
        font-size: 0.74rem;
        opacity: 0.6;
    }
}



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

@media (max-width: 768px) {
    .page-wrapper {
        width: 85%; /* MOBILE WIDTH */
    }

    .logo {
        max-width: 200px;
    }
}


/* ===============================================
   INTRO
   =============================================== */

.intro-clean {
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.intro-box {
    max-width: 680px;
    text-align: center;
}

/* TITLE */
.intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #e4dfd2;
    line-height: 1.2;
    margin-bottom: 38px;
    font-weight: 400;
}

.intro-title span {
    display: block;
    margin-top: 10px;
    color: rgba(228,223,210,0.8);
    font-size: 1.8rem;
}

/* ===============================================
   BUTTONS - (7px radius)
   =============================================== */

.intro-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 580px;
    margin: 0 auto;
}

/* BUTTON BASE */
.intro-btn {
    padding: 20px 0 22px;
    border-radius: 7px;

    font-size: 1.0rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    color: #e4dfd2;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: 0.3s ease;
}

/* ICON */
.btn-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    transition: 0.3s ease;
}

/* OUTLINE BUTTON */
.intro-btn.outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.22);
}

.intro-btn.outline:hover {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.06);
    transform: translateY(-3px);
}

/* ===============================================
   DESKTOP INLINE
   =============================================== */

@media (min-width: 768px) {
    .intro-actions {
        flex-direction: row;
        gap: 18px;
    }

    .intro-btn {
        flex: 1;
    }
}

/* ===============================================
   MOBILE
   =============================================== */

@media (max-width: 768px) {
    .intro-title { font-size: 2.2rem; }
    .intro-title span { font-size: 1.7rem; }
    .intro-sub { font-size: 1.05rem; }
}


/* ===========================
   LINKS SECTION
   =========================== */

.links {
    padding: 90px 0;
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 500;
    color: #e4dfd2;
    margin-bottom: 45px;
}

/* GRID */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 480px;
    margin: 0 auto;
}

/* CARD BASE */
.link-card {
    background: #0f0f0f;
    border-radius: 12px;
    padding: 16px 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 16px;
    text-decoration: none;
    color: #d7d7d7;

    transition: 0.35s ease;
    box-shadow: 0 0 0 transparent;
    opacity: 0.9;

    position: relative; /* for popup */
}

/* LEFT ICON + LABEL */
.link-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.link-left span {
    font-size: 1.15rem;
    letter-spacing: 0.4px;
}

.link-icon {
    width: 40px;
    height: 40px;
    opacity: 1;
    transition: 0.35s ease;
}

/* RIGHT BUTTONS (Open + Copy) */
.link-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.visit-btn {
    background: rgba(255,255,255,0.08);
    color: #e4dfd2;
    padding: 7px 14px;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.25s ease;
}

.visit-btn:hover {
    background: rgba(255,255,255,0.15);
}

/* Copy Button */
.copy-btn {
    background: rgba(255,255,255,0.05);
    border: none;
    padding: 7px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s ease;
}

.copy-btn:hover {
    background: rgba(255,255,255,0.15);
}

.copy-icon {
    width: 18px;
    height: 18px;
}

/* ===========================
   POPUP ABOVE CARD
   =========================== */

.copy-popup {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);

    background: #e4dfd2;
    color: #0f0f0f;

    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

/* ===========================
   DESKTOP HOVER (ONLY DESKTOP)
   =========================== */

@media (hover: hover) and (pointer: fine) {

    .link-card:hover {
        background: #151515;
        opacity: 1;
        transform: translateY(-4px);
    }

    .link-card:hover .link-icon {
        transform: scale(1.08);
        opacity: 1;
    }

    /* glow per platform */
    .link-card.of:hover {
        box-shadow: 0 0 35px rgba(0, 198, 255, 0.35);
    }
    .link-card.fansly:hover {
        box-shadow: 0 0 35px rgba(91, 153, 244, 0.35);
    }
    .link-card.fc:hover {
        box-shadow: 0 0 35px rgba(77, 45, 140, 0.7);
    }
    .link-card.ph:hover {
        box-shadow: 0 0 35px rgba(255, 140, 0, 0.35);
    }
}

/* ===========================
   MOBILE TAP-ACTIVE EFFECT
   =========================== */

.link-card.tap-active.of {
    box-shadow: 0 0 35px rgba(0,198,255,0.35);
}

.link-card.tap-active.fansly {
    box-shadow: 0 0 35px rgba(91,153,244,0.35);
}

.link-card.tap-active.fc {
    box-shadow: 0 0 35px rgba(77,45,140,0.7);
}

.link-card.tap-active.ph {
    box-shadow: 0 0 35px rgba(255,140,0,0.35);
}

/* ===========================
   MOBILE OPTIMIZATION
   =========================== */

@media (max-width: 768px) {
    .links {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .link-card {
        padding: 14px 14px;
        border-radius: 12px;
    }

    .link-icon {
        width: 34px;
        height: 34px;
    }
}


/* ===========================
   ABOUT KINKY SECTION
   =========================== */

.about-kinky {
    padding: 90px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-inner {
    max-width: 100%;
    padding: 0 20px;
    text-align: center;
    animation: fadeIn 1.4s ease;
}

.about-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: #e4dfd2;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: rgba(228,223,210,0.8);
    line-height: 1.65;
    margin-bottom: 18px;
}

.about-text.highlight {
    color: #e4dfd2;
    font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
    .about-kinky {
        padding: 60px 0;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }

    .about-text {
        font-size: 0.98rem;
    }
}


/* ===========================
   GALLERY TEASE SECTION
   =========================== */

.gallery-tease {
    width: 100%;
    padding: 90px 0;
    text-align: center;
}

.gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: #e4dfd2;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    animation: fadeIn 1.3s ease;
}

/* GRID */
.gallery-grid {
    max-width: 900px;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.gallery-grid img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto;
}

/* ITEM – entire card zooms */
.g-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;

    background: #000;
    aspect-ratio: 3 / 2;

    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Image stays normal, no scaling */
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: filter 0.45s ease;
}

/* Hover desktop only */
@media (hover: hover) {
    .g-item:hover {
        transform: scale(1.06); /* zoom entire box */
        box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }

    .g-item:hover img {
        filter: brightness(1); /* slight highlight */
    }
}

/* SEE MORE BUTTON */
.gallery-btn {
    display: inline-block;
    padding: 10px 26px;
    border: 1px solid #e4dfd2;
    border-radius: 7px;
    color: #e4dfd2;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    opacity: 0.85;
    transition: 0.35s ease;
}

.gallery-btn:hover {
    background: rgba(255,255,255,0.05);
    opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
    .gallery-tease {
        padding: 60px 0;
    }

    .g-item {
        aspect-ratio: 3 / 2;
    }

    .g-item img {
        height: 260px;
        filter: blur(4px) brightness(0.85);
    }

    .gallery-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

/* MOBILE: remove blur */
@media (max-width: 768px) {
    .g-item img {
        object-fit: cover !important;
        filter: none !important;
        transform: none !important;
    }
}


.testimonials-rotating {
    padding: 90px 0;
    text-align: center;
}

.testi-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    color: #e4dfd2;
    margin-bottom: 40px;
}

/* container */
.testi-rotator {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 180px;
}

.testi-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    color: rgba(255,255,255,0.85);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testi-item.active {
    opacity: 1;
    transform: translateY(0);
}

.testi-author {
    display: block;
    margin-top: 12px;
    font-size: 0.95rem;
    color: #e4dfd2;
    opacity: 0.85;
}

/* mobile */
@media (max-width: 768px) {
    .testi-item {
        font-size: 1rem;
    }
    .testi-title {
        font-size: 2rem;
    }
}


/* ===========================
   SOCIAL MEDIA SECTION
   =========================== */

.social {
    padding: 10px 0 90px;
    text-align: center;
}

.social-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #e4dfd2;
    margin-bottom: 45px;
}

/* GRID */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

/* CARD BASE */
.social-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;

    padding: 18px 10px;
    text-decoration: none;
    color: #dcdcdc;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;

    transition: 0.3s ease;
}

/* ICONS */
.social-card img {
    width: 28px;
    height: 28px;
    opacity: 0.9;
    transition: 0.3s ease;
}

.social-card span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* DESKTOP HOVER EFFECT */
@media (min-width: 769px) {
    .social-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,0.08);
        color: #e4dfd2;
    }

    .social-card:hover img {
        transform: scale(1.12);
        opacity: 1;
    }
}

/* PLATFORM GLOWS */
.social-card.x:hover {
    box-shadow: 0 0 25px rgba(255,255,255,0.25);
}

.social-card.tiktok:hover {
    box-shadow: 0 0 25px rgba(255,0,80,0.35);
}

.social-card.fetlife:hover {
    box-shadow: 0 0 25px rgba(154,30,31,0.35);
}

.social-card.telegram:hover {
    box-shadow: 0 0 25px rgba(0,174,255,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
    .social {
        padding: 70px 0;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .social-title {
        font-size: 1.9rem;
    }

    .social-card {
        padding: 16px 12px;
    }

    .social-card img {
        width: 34px;
        height: 34px;
    }
}


/* ===========================
   LEGAL CENTER SECTION
   =========================== */

.legal {
    padding: 90px 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 500;
    color: #e4dfd2;
    margin-bottom: 45px;
}

/* Container */
.legal-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Cards */
.legal-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    color: #d7d7d7;
    line-height: 1.6;
    backdrop-filter: blur(2px);
    transition: 0.3s ease;
}

/* Card Titles */
.legal-card h3 {
    margin-bottom: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #e4dfd2;
}

/* Hover - Desktop Only */
@media (hover: hover) {
    .legal-card:hover {
        background: rgba(255,255,255,0.06);
        transform: translateY(-4px);
        border-color: rgba(255,255,255,0.1);
    }
}

/* Contact Email */
.legal-contact {
    margin-top: 40px;
    font-size: 0.95rem;
    color: #bfbfbf;
}

.legal-contact a {
    color: #e4dfd2;
    font-weight: 500;
    text-decoration: none;

    /* fade effect */
    opacity: 0.75;
    transition: opacity 0.25s ease, color 0.25s ease;
}

.legal-contact a:hover {
    opacity: 1;
    color: #ffffff;
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .legal {
        padding: 70px 0;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-card {
        padding: 22px 18px;
    }
}

/* ===========================
   GO BACK SECTION
   =========================== */

.go-back {
    padding: 50px 0 80px;
    text-align: center;
}

.go-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;
    border-radius: 10px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);

    color: #e4dfd2;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;

    transition: 0.3s ease;
}

.go-back-icon {
    width: 20px;
    height: 20px;
    opacity: 0.9;
    transition: 0.3s ease;
}

/* Hover - desktop only */
@media (hover: hover) {
    .go-back-btn:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-3px);
    }

    .go-back-btn:hover .go-back-icon {
        transform: translateX(-3px);
        opacity: 1;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .go-back-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .go-back-icon {
        width: 18px;
        height: 18px;
    }
}


/* ===========================
   AGE GATE
   =========================== */

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;

    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;
}

.age-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 40px 30px;
    border-radius: 16px;
    max-width: 420px;
    width: 90%;
    text-align: center;
}

.age-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #e4dfd2;
    margin-bottom: 15px;
}

.age-text {
    font-size: 1rem;
    color: rgba(228,223,210,0.8);
    line-height: 1.5;
    margin-bottom: 25px;
}

/* BUTTONS */

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

.age-btn {
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Enter button */
.age-btn.enter {
    background: #e4dfd2;
    color: #0f0f0f;
}

/* Leave button */
.age-btn.leave {
    background: transparent;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
}

/* Hover – desktop only */
@media (hover: hover) {
    .age-btn.enter:hover {
        background: #ffffff;
    }

    .age-btn.leave:hover {
        border-color: #ff4d4d;
        background: #ff4d4d;
        color: #0f0f0f;
    }
}



