/* EasyBrewTech C1 — Base stylesheet for generated customer websites */

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

:root {
  --bg:      #ffffff;
  --surface: #f8fafc;
  --accent:  #2563eb;
  --text:    #1e293b;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --radius:  8px;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo { font-size: 1.1rem; font-weight: 700; color: var(--text); text-decoration: none; }
.nav-phone { color: var(--accent); font-weight: 600; text-decoration: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: 0.85rem 1.8rem; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s; border: none; cursor: pointer;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ── SECTIONS ── */
section { padding: 4rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 0.75rem; }
.section-sub { color: var(--muted); max-width: 600px; font-size: 0.97rem; line-height: 1.65; }

/* ── HERO ── */
#hero { background: var(--surface); border-bottom: 1px solid var(--border); }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin-bottom: 2rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* ── TRUST / WHY US ── */
#why { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.trust-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.trust-item p { font-size: 0.88rem; color: var(--muted); }

/* ── CONTACT ── */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-detail { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-line { font-size: 0.95rem; color: var(--muted); }
.contact-line strong { color: var(--text); display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.15rem; }

/* ── FOOTER ── */
footer { background: var(--text); color: rgba(255,255,255,0.6); text-align: center; padding: 2rem; font-size: 0.85rem; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 2.5rem 1.25rem; }
  .contact-inner { grid-template-columns: 1fr; }
  nav { padding: 0 1.25rem; }
}
