/* ==========================================================================
   Cancun Weed - shared styles for SEO landing pages.
   Kept in one cached file so every landing page ships almost no CSS of its own.
   ========================================================================== */

:root {
    --green: #00E676;
    --green-dark: #00C853;
    --cyan: #00E5FF;
    --purple: #BB86FC;
    --magenta: #FF6EC7;
    --gold: #FFD700;
    --blue: #448AFF;
    --bg: #0a0a12;
    --card-bg: #12121c;
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #eaeaea;
    --text-muted: #9a9aab;
    --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.65;
    overflow-x: hidden;
    padding-bottom: 96px;
}

/* Aurora backdrop - fixed so it never triggers layout on scroll */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 10%, rgba(0, 230, 118, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 25%, rgba(187, 134, 252, 0.09) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 85%, rgba(0, 229, 255, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(255, 110, 199, 0.05) 0%, transparent 40%);
}

.wrap {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

a { color: var(--green); }

/* ---------- Top bar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(10, 10, 18, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--card-border);
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.topbar-brand img { width: 30px; height: 30px; border-radius: 8px; }

.topbar-links { display: flex; gap: 16px; font-size: 0.78rem; font-weight: 700; }
.topbar-links a { color: var(--text-muted); text-decoration: none; letter-spacing: 0.5px; }
.topbar-links a:hover { color: var(--green); }

@media (max-width: 640px) { .topbar-links { display: none; } }

/* ---------- Breadcrumbs ---------- */
.crumbs {
    font-size: 0.72rem;
    color: #666;
    padding: 18px 0 0;
    letter-spacing: 0.4px;
}
.crumbs a { color: #888; text-decoration: none; }
.crumbs a:hover { color: var(--green); }

/* ---------- Hero ---------- */
.hero { padding: 26px 0 34px; text-align: center; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #04110a;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(1.9rem, 6vw, 3.1rem);
    font-weight: 900;
    letter-spacing: -1.4px;
    line-height: 1.1;
    margin-bottom: 16px;
}

h1 .grad {
    background: linear-gradient(120deg, var(--green) 0%, var(--cyan) 45%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lede {
    max-width: 640px;
    margin: 0 auto 26px;
    color: #c3c3d0;
    font-size: 1.02rem;
}

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 26px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 0.83rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
    color: #04110a;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    box-shadow: 0 8px 30px rgba(0, 230, 118, 0.28);
}

.btn-whatsapp { color: #04110a; background: linear-gradient(135deg, #25D366, #0f9d58); }

.btn-ghost {
    color: var(--green);
    background: transparent;
    border: 2px solid rgba(0, 230, 118, 0.45);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }

/* ---------- Trust strip ---------- */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 30px 0 10px;
}

.trust-item {
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    text-align: center;
}

.trust-item strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    background: linear-gradient(120deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trust-item span {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- Sections & cards ---------- */
section { padding: 30px 0; }

h2 {
    font-size: clamp(1.35rem, 3.6vw, 1.95rem);
    font-weight: 900;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
}

h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }

section p { color: #b8b8c6; margin-bottom: 14px; }

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.grid .card { transition: transform 0.22s ease, border-color 0.22s ease; }
.grid .card:hover { transform: translateY(-4px); border-color: rgba(0, 230, 118, 0.4); }

.card .icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.card p { font-size: 0.9rem; margin-bottom: 0; }

/* Accent borders keep the grid colourful without extra markup */
.card.a1 { border-top: 3px solid var(--green); }
.card.a2 { border-top: 3px solid var(--cyan); }
.card.a3 { border-top: 3px solid var(--purple); }
.card.a4 { border-top: 3px solid var(--gold); }
.card.a5 { border-top: 3px solid var(--magenta); }
.card.a6 { border-top: 3px solid var(--blue); }

/* ---------- Zone / hotel list ---------- */
.zone-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.zone-chip {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    color: #d5d5e0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
}

.zone-chip b { color: var(--green); font-weight: 800; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 12px; margin-top: 16px; }

.step {
    counter-increment: step;
    position: relative;
    padding: 18px 20px 18px 62px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
}

.step::before {
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 16px;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 0.85rem;
    color: #04110a;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.step p { margin-bottom: 0; font-size: 0.88rem; }

/* ---------- FAQ (native accordion, no JS) ---------- */
.faq { display: grid; gap: 10px; margin-top: 16px; }

.faq details {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
}

.faq summary {
    padding: 16px 18px;
    font-weight: 700;
    font-size: 0.94rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
    content: '+';
    color: var(--green);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
}

.faq details[open] summary::after { content: '\2013'; }
.faq details[open] summary { color: var(--green); }

.faq .answer { padding: 0 18px 18px; color: #b3b3c2; font-size: 0.9rem; }

/* ---------- Verified / anti-impostor callout ---------- */
.verify-box {
    border-radius: var(--radius);
    padding: 24px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.10), rgba(255, 110, 199, 0.07));
    border: 1px solid rgba(255, 215, 0, 0.35);
}

.verify-box h2 { color: var(--gold); }

.verify-list { list-style: none; margin-top: 12px; }

.verify-list li {
    padding: 9px 0 9px 28px;
    position: relative;
    font-size: 0.9rem;
    color: #d8d8e2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-list li:last-child { border-bottom: none; }

.verify-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}

.verify-list li.no::before { content: '\2715'; color: #ff5252; }

/* ---------- Internal link cloud ---------- */
.link-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.link-cloud a {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    text-decoration: none;
    color: #cfcfdb;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    transition: all 0.18s ease;
}

.link-cloud a:hover {
    color: #04110a;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    border-color: transparent;
}

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    padding: 30px 20px 40px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--card-border);
}

.site-footer strong { color: #fff; display: block; margin-bottom: 6px; }
.site-footer a { color: var(--green); text-decoration: none; }
.site-footer nav { margin: 14px 0; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: flex;
    gap: 10px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(10, 10, 18, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--card-border);
}

.sticky-cta .btn { flex: 1; padding: 14px 12px; font-size: 0.76rem; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}
