/* Home page styles for ArcadeMachinesPL. Minimal, responsive, and building on base.css */
:root {
  --am-ivory: #f8f6f2;
  --am-gold: #c9a768;
  --am-midnight: #0b1a2a;
  --am-graphite: #1b1f23;
  --am-amber: #f0c27b;
}

/* Layout helpers */
.container { max-width: 1200px; margin-inline: auto; padding-inline: 1rem; }
.section { padding: 4rem 0; }
.section__header { margin-bottom: 1.5rem; }
.section__header h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.2; }
.section__header p { color: #6b7280; max-width: 65ch; }
.section__actions { margin-top: 1rem; display: flex; gap: .75rem; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border-radius: 999px; padding: .75rem 1.25rem; text-decoration: none; font-weight: 600; transition: transform .2s ease, background .2s ease, color .2s ease; }
.btn:focus-visible { outline: 2px solid var(--am-gold); outline-offset: 2px; }
.btn--primary { background: linear-gradient(135deg, var(--am-gold), var(--am-amber)); color: #0a0a0a!important; }
.btn--primary:hover { transform: translateY(-1px); }
.btn--secondary { background: var(--am-midnight); color: #fff; border: 1px solid rgba(255,255,255,.08); }
.btn--secondary:hover { filter: brightness(1.1); }
.btn--ghost { background: transparent; color: var(--am-midnight); border: 1px solid #d1d5db; }
.btn--ghost:hover { border-color: var(--am-gold); color: var(--am-graphite); }

/* Hero */
.hero { background: radial-gradient(1200px 500px at 80% 0%, rgba(201,167,104,.18), transparent), var(--am-ivory); color: var(--am-graphite); }
.hero__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; padding: 2.5rem 1rem; max-width: 1280px; margin: 0 auto; }
.hero__content h1 { font-size: clamp(1.75rem, 3.2vw, 2.75rem); margin: 0 0 .75rem; }
.hero__tagline { font-size: 1.05rem; max-width: 52ch; color: #374151; }
.hero__media { margin: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(11,26,42,.25); }
.hero__media img { width: 100%; height: auto; display: block; }
.hero__cta { margin-top: 1rem; display: flex; gap: .75rem; flex-wrap: wrap; }

@media (max-width: 960px) { .hero__inner { grid-template-columns: 1fr; } }

/* Collections */
.collections { background: #fff; }
.collections__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 960px) { .collections__grid { grid-template-columns: 1fr; } }
.collection-card { background: #0f172a; border: 1px solid rgba(255,255,255,.06); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.collection-card__link { color: inherit; text-decoration: none; display: grid; grid-template-rows: auto 1fr; height: 100%; }
.collection-card__media img { display: block; width: 100%; height: auto; }
.collection-card__body { padding: 1rem; color: #e5e7eb; }
.collection-card__title { margin: 0 0 .25rem; font-size: 1.125rem; color: #f3f4f6; }
.collection-card__meta { margin: 0; color: #cbd5e1; font-size: .95rem; }
.collection-card--gradient { background: linear-gradient(160deg, var(--am-midnight), #0a1020 40%, rgba(201,167,104,.2)); }
.collection-card--gradient .collection-card__body { padding: 1.25rem; }

/* Process, lists, two columns */
.process { display: grid; gap: 1rem; counter-reset: step; list-style: none; padding-left: 0; }
.process li { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1rem; }
.process li h3 { margin: 0 0 .25rem; font-size: 1.05rem; }
.list { display: grid; gap: .5rem; padding-left: 1.25rem; }
.two-col { display: grid; gap: 1rem; grid-template-columns: repeat(2,1fr); }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonials { background: var(--am-ivory); }
.testimonials__list { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .testimonials__list { grid-template-columns: 1fr; } }
.testimonial { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1rem; }
.testimonial footer { color: #6b7280; margin-top: .5rem; font-size: .95rem; }

/* Plans */
.plans { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .plans { grid-template-columns: 1fr; } }
.plan { background: #0f172a; color: #e5e7eb; border-radius: 14px; padding: 1rem; border: 1px solid rgba(255,255,255,.06); }
.plan h3 { color: #f3f4f6; margin: 0 0 .25rem; }

/* Events */
.events__list { display: grid; gap: .75rem; }
.events__list li { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1rem; }

/* CTA strip */
.cta-strip { background: linear-gradient(180deg, #fff, var(--am-ivory)); padding: 2rem 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.cta-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
@media (max-width: 800px) { .cta-strip__inner { flex-direction: column; align-items: flex-start; } }

/* Simple reveal animation (respect reduced motion) */
[data-animate] { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.in-view { opacity: 1 !important; transform: translateY(0) !important; }
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
}
