/* Shared stylesheet for Cancun Weed Smokeshop content & landing pages.
   Kept in one cacheable file so these pages stay fast. */

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

body {
    background: linear-gradient(180deg, #87CEEB 0%, #B0E0F0 12%, #e0f0f8 26%, #f0f4f8 45%, #ffffff 65%);
    color: #1a2a3a;
    font-family: 'Helvetica Neue', -apple-system, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    overflow-x: hidden;
}

.wrap { max-width: 860px; margin: 0 auto; padding: 0 20px 60px; }

/* ===== Nav ===== */
.site-nav {
    display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: center;
    padding: 16px 20px; background: rgba(255,255,255,0.72);
    border-bottom: 1px solid rgba(0,119,182,0.14);
    position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px);
}
.site-nav a { color: #0077B6; text-decoration: none; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.4px; }
.site-nav a:hover { color: #2E8B57; }
/* Brand lockup in the nav, 2026-08-25 onward. The two-tone wordmark this
   replaces was retired; the mark is our own watermarked, hash-recorded file
   from /brand/logo/, and the name beside it is plain text. */
.site-nav a.brand {
    display: inline-flex; align-items: center; gap: 9px;
    color: #0d3f6b; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
}
.site-nav a.brand img { height: 26px; width: auto; display: block; border-radius: 6px; }
.site-nav a.brand:hover { color: #02121d; }

/* ===== Breadcrumbs ===== */
.crumbs { font-size: 0.75rem; color: #6a8494; padding: 18px 0 4px; }
.crumbs a { color: #0077B6; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ===== Typography ===== */
h1 {
    font-size: 2rem; line-height: 1.25; color: #10202e;
    margin: 10px 0 14px; letter-spacing: -0.4px;
}
.lede { font-size: 1.05rem; color: #3d5a6a; margin-bottom: 28px; }
h2 { font-size: 1.35rem; color: #0077B6; margin: 36px 0 12px; line-height: 1.3; }
h3 { font-size: 1.05rem; color: #1a2a3a; margin: 24px 0 8px; }
p { color: #33505f; margin-bottom: 14px; }
a { color: #2E8B57; }
ul, ol { margin: 0 0 16px 22px; }
li { color: #33505f; margin-bottom: 8px; }
strong { color: #16293a; }

/* ===== Cards & callouts ===== */
.card {
    background: rgba(255,255,255,0.85); border: 1px solid rgba(0,119,182,0.15);
    border-radius: 14px; padding: 22px; margin: 22px 0;
}
.card h2, .card h3 { margin-top: 0; }

.callout {
    background: rgba(46,139,87,0.08); border-left: 4px solid #2E8B57;
    border-radius: 10px; padding: 16px 18px; margin: 22px 0;
}
.callout.warn { background: rgba(214,120,20,0.09); border-left-color: #d67814; }
.callout p:last-child { margin-bottom: 0; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 20px 0; }
.grid .card { margin: 0; }

/* ===== CTA ===== */
.cta {
    display: inline-block; background: #25D366; color: #06210f;
    padding: 15px 32px; border-radius: 40px; text-decoration: none;
    font-weight: 800; letter-spacing: 1.2px; font-size: 0.9rem;
    box-shadow: 0 6px 18px rgba(37,211,102,0.32); margin: 6px 8px 6px 0;
}
.cta:hover { background: #1fb455; }
.cta.alt { background: #0077B6; color: #fff; box-shadow: 0 6px 18px rgba(0,119,182,0.3); }
.cta.alt:hover { background: #005f92; }
.cta-row { margin: 26px 0; }

/* ===== FAQ ===== */
.faq-item {
    background: rgba(255,255,255,0.85); border: 1px solid rgba(0,119,182,0.15);
    border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
    cursor: pointer; list-style: none; padding: 15px 44px 15px 18px;
    font-size: 0.96rem; font-weight: 700; color: #1a2a3a; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 18px; top: 50%;
    transform: translateY(-50%); color: #2E8B57; font-size: 1.4rem; font-weight: 700; line-height: 1;
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item summary:hover { color: #0077B6; }
.faq-answer { padding: 0 18px 16px; }
.faq-answer p { font-size: 0.9rem; margin-bottom: 10px; }

/* ===== Tables ===== */
table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.88rem; }
th, td { text-align: left; padding: 11px 12px; border-bottom: 1px solid rgba(0,119,182,0.14); }
th { color: #0077B6; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.6px; }
td { color: #33505f; }

/* ===== Related links ===== */
.related { margin-top: 40px; }
.related ul { list-style: none; margin-left: 0; }
.related li { margin-bottom: 10px; }
.related a { font-weight: 700; text-decoration: none; }
.related a:hover { text-decoration: underline; }

/* ===== Footer ===== */
.site-footer {
    background: #0d1620; color: #8fa3b0; padding: 34px 20px;
    font-size: 0.8rem; text-align: center; line-height: 1.9;
}
.site-footer a { color: #7fd4a0; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.keyword-links {
    display: flex; flex-wrap: wrap; gap: 8px 14px; justify-content: center;
    max-width: 900px; margin: 18px auto; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.09);
}
.keyword-links a { font-size: 0.76rem; color: #8fa3b0; }
.keyword-links a:hover { color: #7fd4a0; }
.footer-legal { margin-top: 16px; font-size: 0.72rem; color: #5d6f7c; }

@media (max-width: 600px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.15rem; }
    .lede { font-size: 0.95rem; }
    .wrap { padding-bottom: 40px; }
}
