/* ============================================================
   VoyeurLife tour/landing — shared stylesheet
   Used by: index.php, about.php, join.php, faq.php
   Layered on top of the tenant's red_fire theme + Bootstrap.
   ============================================================ */

:root {
    --vl-red:      #e32626;
    --vl-red-2:    #b51d1d;
    --vl-red-glow: rgba(227, 38, 38, 0.30);
    --vl-bg:       #0a0a0c;
    --vl-panel:    #16161d;
    --vl-panel-2:  #111116;
    --vl-border:   #2b2b34;
    --vl-text:     #f2f2f2;
    --vl-muted:    #a6a6b0;
}

/* Page canvas */
.vl-page {
    background: var(--vl-bg);
    color: var(--vl-text);
}

/* ── Tour sub-nav ─────────────────────────────────────────── */
.vl-subnav {
    background: var(--vl-panel-2);
    border-bottom: 1px solid var(--vl-red);
    position: sticky;
    top: 0;
    z-index: 1019;
}
.vl-subnav-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
}
.vl-subnav a {
    color: var(--vl-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    padding: 0.45rem 0.85rem;
    border-radius: 7px;
    transition: color 0.15s, background 0.15s;
    text-transform: uppercase;
}

/* ── All menu items uppercase — VoyeurLife only ───────────────
   This stylesheet loads only on the VoyeurLife tour pages, so these
   rules never affect any other tenant's menus. */
.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle,
.dropdown-menu .dropdown-item {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.vl-subnav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.vl-subnav a.active { color: #fff; }
.vl-subnav a.active::after {
    content: "";
    display: block;
    height: 2px;
    background: var(--vl-red);
    margin-top: 3px;
    border-radius: 2px;
}
.vl-subnav .vl-subnav-cta {
    margin-left: auto;
    background: var(--vl-red);
    color: #fff;
}
.vl-subnav .vl-subnav-cta:hover { background: var(--vl-red-2); color: #fff; }
@media (max-width: 600px) {
    .vl-subnav-inner { justify-content: center; }
    .vl-subnav .vl-subnav-cta { margin-left: 0; width: 100%; text-align: center; justify-content: center; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.vl-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: clamp(3rem, 9vw, 7rem) 1rem;
    overflow: hidden;
}
.vl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,12,0.62), rgba(10,10,12,0.88));
    z-index: 0;
}
.vl-hero > * { position: relative; z-index: 1; }
.vl-hero h1,
.vl-hero .vl-hero-title {
    font-weight: 800;
    letter-spacing: 0.02em;
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.vl-hero .vl-tagline {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: #e9e9ee;
    max-width: 760px;
    margin: 0 auto 1.75rem;
}
.vl-hero-sub {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--vl-muted);
}

/* ── Buttons ──────────────────────────────────────────────── */
.vl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 0.8rem 1.9rem;
    border-radius: 9px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s, background 0.15s;
    cursor: pointer;
}
.vl-btn-primary {
    background: var(--vl-red);
    color: #fff;
    box-shadow: 0 6px 22px var(--vl-red-glow);
}
.vl-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--vl-red-glow);
    background: var(--vl-red-2);
}
.vl-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.55);
}
.vl-btn-outline:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}
.vl-btn-lg { font-size: 1.15rem; padding: 1rem 2.4rem; }

/* ── Sections ─────────────────────────────────────────────── */
.vl-section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.vl-section-alt { background: var(--vl-panel-2); }
.vl-section-title {
    text-align: center;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}
.vl-section-title .vl-accent { color: var(--vl-red); }
.vl-section-intro {
    text-align: center;
    color: var(--vl-muted);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-size: 1.02rem;
    line-height: 1.6;
}

/* ── Feature grid ─────────────────────────────────────────── */
.vl-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.vl-feature {
    background: linear-gradient(180deg, var(--vl-panel), var(--vl-panel-2));
    border: 1px solid var(--vl-border);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: border-color 0.15s, transform 0.15s;
}
.vl-feature:hover { border-color: var(--vl-red); transform: translateY(-4px); }
.vl-feature .vl-feature-icon {
    font-size: 2.4rem;
    color: var(--vl-red);
    margin-bottom: 0.9rem;
}
.vl-feature h3 { font-size: 1.12rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.vl-feature p { font-size: 0.9rem; color: var(--vl-muted); margin: 0; line-height: 1.55; }

/* ── Narrative / prose ────────────────────────────────────── */
.vl-prose {
    max-width: 820px;
    margin: 0 auto;
    color: #d9d9e0;
    font-size: 1.05rem;
    line-height: 1.75;
}
.vl-prose p { margin-bottom: 1.1rem; }
.vl-prose .vl-trademark { color: var(--vl-red); font-weight: 700; }
.vl-quote {
    border-left: 3px solid var(--vl-red);
    padding: 0.4rem 0 0.4rem 1.25rem;
    margin: 1.75rem auto 0;
    max-width: 820px;
    color: var(--vl-muted);
    font-style: italic;
}
.vl-quote cite { display: block; margin-top: 0.4rem; color: #fff; font-style: normal; font-weight: 600; font-size: 0.92rem; }

/* ── Models strip ─────────────────────────────────────────── */
.vl-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 210px));
    gap: 1rem;
    justify-content: center;
    max-width: 1140px;
    margin: 0 auto;
}
.vl-model-card {
    display: block;
    border: 1px solid var(--vl-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--vl-panel);
    text-decoration: none;
    color: var(--vl-text);
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.vl-model-card:hover {
    border-color: var(--vl-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    color: var(--vl-text);
}
.vl-model-thumb { width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--vl-panel-2); }
.vl-model-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.vl-model-card:hover .vl-model-thumb img { transform: scale(1.05); }
.vl-model-name { padding: 0.6rem 0.8rem; font-weight: 700; font-size: 0.92rem; text-align: center; }

/* ── Membership card ──────────────────────────────────────── */
.vl-plan {
    max-width: 460px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--vl-panel), var(--vl-panel-2));
    border: 1px solid var(--vl-border);
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}
.vl-plan-head {
    background: linear-gradient(135deg, var(--vl-red), var(--vl-red-2));
    color: #fff;
    padding: 1.75rem 1rem;
}
.vl-plan-name { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.vl-plan-price { font-size: 3rem; font-weight: 800; line-height: 1; margin-top: 0.5rem; }
.vl-plan-price small { font-size: 1rem; font-weight: 600; opacity: 0.85; }
.vl-plan-body { padding: 1.75rem 1.75rem 2rem; }
.vl-plan-benefits { list-style: none; padding: 0; margin: 0 0 1.75rem; text-align: left; }
.vl-plan-benefits li { padding: 0.6rem 0; border-bottom: 1px solid var(--vl-border); color: #d9d9e0; display: flex; gap: 0.6rem; align-items: flex-start; }
.vl-plan-benefits li:last-child { border-bottom: none; }
.vl-plan-benefits .fa-check { color: var(--vl-red); margin-top: 0.2rem; }

/* ── FAQ accordion (themed) ───────────────────────────────── */
.vl-faq { max-width: 880px; margin: 0 auto; }
.vl-faq .accordion-item {
    background: var(--vl-panel);
    border: 1px solid var(--vl-border);
    border-radius: 10px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.vl-faq .accordion-button {
    background: var(--vl-panel);
    color: #fff;
    font-weight: 600;
    font-size: 1.02rem;
}
.vl-faq .accordion-button:not(.collapsed) {
    background: var(--vl-panel-2);
    color: var(--vl-red);
    box-shadow: none;
}
.vl-faq .accordion-button:focus { box-shadow: 0 0 0 2px var(--vl-red-glow); }
.vl-faq .accordion-button::after { filter: invert(1) grayscale(1) brightness(1.5); }
.vl-faq .accordion-body { color: #cfcfd7; line-height: 1.65; font-size: 0.96rem; }
.vl-faq .accordion-body a { color: var(--vl-red); }

/* ── Contact form ─────────────────────────────────────────── */
.vl-contact { max-width: 720px; margin: 0 auto; }
.vl-contact .form-control {
    background: var(--vl-panel);
    border: 1px solid var(--vl-border);
    color: var(--vl-text);
}
.vl-contact .form-control:focus {
    background: var(--vl-panel);
    color: var(--vl-text);
    border-color: var(--vl-red);
    box-shadow: 0 0 0 0.2rem var(--vl-red-glow);
}
.vl-contact label { color: #d9d9e0; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.3rem; }
.vl-contact-info {
    text-align: center;
    color: var(--vl-muted);
    margin-bottom: 2rem;
}
.vl-contact-info a { color: var(--vl-red); text-decoration: none; font-weight: 600; }
.vl-hp { position: absolute; left: -5000px; height: 0; overflow: hidden; }
#vlContactAlert { display: none; }

/* ── CTA band ─────────────────────────────────────────────── */
.vl-cta-band {
    text-align: center;
    background: linear-gradient(135deg, var(--vl-red), var(--vl-red-2));
    color: #fff;
    padding: clamp(2.5rem, 6vw, 4rem) 1rem;
}
.vl-cta-band h2 { font-weight: 800; margin-bottom: 1.25rem; font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
.vl-cta-band .vl-btn-primary { background: #fff; color: var(--vl-red); box-shadow: 0 6px 22px rgba(0,0,0,0.3); }
.vl-cta-band .vl-btn-primary:hover { background: #f0f0f0; color: var(--vl-red-2); }
