/* ===========================================================
   Lemon Casino Canada — stylesheet
   Palette: lemon #FFD83D · zest green #1F6B3B · leaf #7CB342
            ink #161611 · cream #FFFDF4 · card #FFFFFF
   =========================================================== */

:root{
  --lemon:#FFD83D;
  --lemon-soft:#FFE789;
  --zest:#1F6B3B;
  --zest-dark:#15512C;
  --leaf:#7CB342;
  --ink:#161611;
  --muted:#5b5d52;
  --cream:#FFFDF4;
  --card:#FFFFFF;
  --line:#e7e4d2;
  --shadow:0 14px 34px rgba(31,107,59,.10);
  --radius:18px;
  --maxw:1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"DM Sans",system-ui,Arial,sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.65;
  font-size:17px;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--zest);}

.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 20px;}

/* ---------- Typography ---------- */
h1,h2,h3{font-family:"Fredoka",system-ui,sans-serif;line-height:1.12;color:var(--ink);margin:0 0 .5em;}
h1{font-size:clamp(2rem,4.6vw,3.4rem);font-weight:700;letter-spacing:-.01em;}
h2{font-size:clamp(1.6rem,3.3vw,2.5rem);font-weight:700;}
h3{font-size:clamp(1.15rem,1.8vw,1.4rem);font-weight:600;}
p{margin:0 0 1.05em;}

.eyebrow{
  display:inline-block;font-family:"Fredoka",sans-serif;font-weight:600;
  font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--zest);background:var(--lemon-soft);
  padding:.34em .8em;border-radius:999px;margin-bottom:1rem;
}
.eyebrow.center{display:block;width:max-content;margin-left:auto;margin-right:auto;}
.center{text-align:center;}
.section-intro{max-width:760px;margin:0 auto 2.4rem;text-align:center;color:var(--muted);font-size:1.06rem;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;cursor:pointer;border:none;
  font-family:"Fredoka",sans-serif;font-weight:600;font-size:1rem;
  background:var(--lemon);color:var(--ink);
  padding:.85em 1.7em;border-radius:999px;
  box-shadow:0 6px 0 var(--zest);
  transition:transform .12s ease, box-shadow .12s ease, background .2s ease;
}
.btn:hover{background:var(--lemon-soft);transform:translateY(-2px);box-shadow:0 8px 0 var(--zest);}
.btn:active{transform:translateY(3px);box-shadow:0 3px 0 var(--zest);}
.btn:focus-visible{outline:3px solid var(--zest);outline-offset:3px;}
.btn-lg{font-size:1.12rem;padding:1em 2.1em;}
.btn-ghost{background:transparent;color:var(--zest);box-shadow:inset 0 0 0 2px var(--zest);}
.btn-ghost:hover{background:rgba(31,107,59,.06);box-shadow:inset 0 0 0 2px var(--zest);transform:translateY(-2px);}
.btn-header{box-shadow:0 4px 0 var(--zest);padding:.6em 1.2em;}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,253,244,.92);backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding-top:12px;padding-bottom:12px;}
.brand img{height:46px;width:auto;}

/* ---------- Hero ---------- */
.hero{
  padding:64px 0 56px;
  background:
    radial-gradient(820px 420px at 88% -8%, var(--lemon-soft), transparent 60%),
    linear-gradient(180deg,#fffefa,var(--cream));
}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center;}
.hero-copy .lede{font-size:1.18rem;color:#3c3e34;max-width:34ch;}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin:1.4rem 0 1rem;}
.age-note{font-size:.85rem;color:var(--muted);margin:0;}
.hero-media img{border-radius:var(--radius);box-shadow:var(--shadow);width:100%;}

/* ---------- Sections ---------- */
.section{padding:72px 0;}
.section.alt{background:#fff8e3;border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
.section h2{text-align:center;}
.section.alt .two-col h2,.section .two-col h2{text-align:left;}

.two-col{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;}
.two-col.reverse{direction:ltr;}
.media-frame img{border-radius:var(--radius);box-shadow:var(--shadow);width:100%;}

/* ---------- Tables ---------- */
.table-scroll{
  overflow-x:auto;-webkit-overflow-scrolling:touch;
  border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);margin:0 auto 1.8rem;background:var(--card);
}
table{border-collapse:collapse;width:100%;min-width:560px;}
thead th{
  background:var(--zest);color:#fff;font-family:"Fredoka",sans-serif;font-weight:600;
  text-align:left;padding:14px 18px;font-size:.95rem;white-space:nowrap;
}
tbody td{padding:13px 18px;border-top:1px solid var(--line);vertical-align:top;font-size:.96rem;}
tbody tr:nth-child(even){background:#fffdf0;}
.facts-table td:first-child,.pay-table td:first-child{font-weight:600;color:var(--zest);white-space:nowrap;}

/* ---------- Cards ---------- */
.card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-bottom:2rem;}
.card{
  background:var(--card);border:1px solid var(--line);border-radius:var(--radius);
  padding:24px 22px;box-shadow:var(--shadow);
}
.card h3{color:var(--zest);}
.card p{margin:0;color:#3c3e34;font-size:.96rem;}

/* slot strip */
.slot-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:0 0 2rem;}
.slot-strip img{border-radius:14px;box-shadow:var(--shadow);width:100%;}

/* ---------- Steps ---------- */
.steps{counter-reset:step;list-style:none;max-width:820px;margin:0 auto 2.4rem;padding:0;}
.steps li{
  position:relative;background:var(--card);border:1px solid var(--line);
  border-radius:var(--radius);padding:22px 24px 22px 78px;margin-bottom:16px;box-shadow:var(--shadow);
}
.steps li::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:20px;top:22px;width:40px;height:40px;border-radius:50%;
  background:var(--lemon);color:var(--ink);font-family:"Fredoka",sans-serif;font-weight:700;
  display:flex;align-items:center;justify-content:center;box-shadow:0 4px 0 var(--zest);
}
.steps h3{margin-bottom:.3em;}
.steps p{margin:0;color:#3c3e34;}

/* ---------- Pros & cons ---------- */
.proscons{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:2.2rem;}
.pros,.cons{background:var(--card);border-radius:var(--radius);padding:26px 26px;box-shadow:var(--shadow);border:1px solid var(--line);}
.pros{border-top:6px solid var(--leaf);}
.cons{border-top:6px solid #e0a32e;}
.proscons h3{color:var(--zest);}
.proscons ul{margin:0;padding-left:0;list-style:none;}
.proscons li{position:relative;padding:8px 0 8px 30px;border-bottom:1px dashed var(--line);font-size:.97rem;}
.proscons li:last-child{border-bottom:none;}
.pros li::before{content:"✓";position:absolute;left:0;top:8px;color:var(--leaf);font-weight:700;}
.cons li::before{content:"!";position:absolute;left:4px;top:8px;color:#d68a12;font-weight:700;}

/* ---------- Info stack ---------- */
.info-stack{display:grid;gap:16px;}
.info-card{background:var(--card);border:1px solid var(--line);border-left:6px solid var(--lemon);border-radius:14px;padding:18px 20px;box-shadow:var(--shadow);}
.info-card h3{margin-bottom:.25em;color:var(--zest);}
.info-card p{margin:0;color:#3c3e34;font-size:.95rem;}

/* ---------- Payment logos ---------- */
.pay-logos{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;margin-bottom:1.6rem;}
.pay-logos img{height:64px;width:auto;border-radius:10px;border:1px solid var(--line);}
.fine{max-width:760px;margin:0 auto 2rem;color:var(--muted);font-size:.95rem;text-align:center;}

/* ---------- FAQ ---------- */
.faq{max-width:820px;margin:0 auto 2.4rem;}
.faq details{background:var(--card);border:1px solid var(--line);border-radius:14px;margin-bottom:12px;box-shadow:var(--shadow);overflow:hidden;}
.faq summary{
  cursor:pointer;list-style:none;padding:18px 22px;font-family:"Fredoka",sans-serif;
  font-weight:600;font-size:1.05rem;color:var(--zest);position:relative;
}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:"+";position:absolute;right:22px;top:16px;font-size:1.5rem;color:var(--leaf);transition:transform .2s;}
.faq details[open] summary::after{transform:rotate(45deg);}
.faq details p{margin:0;padding:0 22px 20px;color:#3c3e34;}

/* ---------- Footer ---------- */
.site-footer{background:var(--zest);color:#eafbe9;padding:48px 0 36px;}
.footer-inner{display:grid;grid-template-columns:1fr 1.3fr;gap:40px;align-items:start;}
.site-footer img{filter:drop-shadow(0 0 0 #fff);background:var(--cream);padding:8px 12px;border-radius:12px;}
.footer-brand p,.footer-meta p{font-size:.9rem;color:#cdebcd;margin:12px 0 0;}
.age-badge{display:inline-block;background:var(--lemon);color:var(--ink);font-family:"Fredoka",sans-serif;font-weight:700;border-radius:50%;width:46px;height:46px;line-height:46px;text-align:center;margin:0 0 8px;}
.copy{margin-top:18px;font-size:.82rem;color:#a9d6a9;}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;gap:32px;}
  .hero-copy .lede{max-width:none;}
  .hero-media{order:-1;}
  .two-col{grid-template-columns:1fr;gap:28px;}
  .two-col.reverse .media-frame{order:-1;}
  .card-grid{grid-template-columns:repeat(2,1fr);}
  .slot-strip{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:640px){
  body{font-size:16px;}
  .section{padding:52px 0;}
  .hero{padding:40px 0 44px;}
  .header-inner{gap:10px;}
  .brand img{height:38px;}
  .btn-header{font-size:.85rem;padding:.55em 1em;}
  .hero-actions{gap:10px;}
  .hero-actions .btn{width:100%;text-align:center;}
  .proscons{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr;gap:24px;}
  .pay-logos img{height:52px;}
  .steps li{padding:18px 18px 18px 70px;}
  /* tables keep their min-width and scroll horizontally inside .table-scroll */
}
@media (max-width:430px){
  .card-grid{grid-template-columns:1fr;}
  .slot-strip{grid-template-columns:1fr 1fr;}
}

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