/* Love Bugg Originals — small static site. Palette kept from the GoDaddy build: white, near-black type, orchid accent. */
:root {
  --paper: #ffffff;
  --ink: #1d1d1f;
  --muted: #6b6b70;
  --line: #e6e6ea;
  --accent: #b23fd6;
  --accent-ink: #ffffff;
  --font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--paper); line-height: 1.6; font-size: 17px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .bar { max-width: 1100px; margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 600; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.site-nav { margin-left: auto; display: flex; gap: 22px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.site-nav a { color: var(--ink); text-decoration: none; opacity: .8; }
.site-nav a:hover, .site-nav a[aria-current="page"] { opacity: 1; color: var(--accent); }

.hero { position: relative; min-height: 420px; display: grid; place-items: center; text-align: center; color: #fff; background: #333 url("/images/hero-rainbow-vinyl.jpg") center/cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)); }
.hero h1 { position: relative; z-index: 1; margin: 0; font-size: clamp(40px, 7vw, 72px); font-weight: 800; letter-spacing: -.02em; text-shadow: 0 2px 18px rgba(0,0,0,.45); }

section { padding: 56px 16px; }
.wrap { max-width: 860px; margin: 0 auto; text-align: center; }
h2 { font-size: clamp(26px, 4vw, 34px); color: var(--accent); margin: 0 0 8px; font-weight: 700; }
h2::after { content: ""; display: block; width: 44px; height: 2px; background: var(--line); margin: 14px auto 22px; }
.lead { font-size: 19px; margin: 0 0 10px; }
.muted { color: var(--muted); }

.social { display: flex; justify-content: center; gap: 26px; }
.social a { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--ink); }
.social a:hover { border-color: var(--accent); color: var(--accent); }
.social svg { width: 24px; height: 24px; fill: currentColor; }

.gallery { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; text-align: left; }
.gallery figure { margin: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.gallery img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.gallery figcaption { padding: 14px 16px 18px; }
.gallery figcaption p { margin: 0 0 6px; }
.gallery figcaption .cta { color: var(--accent); font-weight: 600; font-size: 15px; text-decoration: none; }

form.contact { max-width: 560px; margin: 0 auto; display: grid; gap: 12px; text-align: left; }
form.contact label { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
form.contact input, form.contact textarea { width: 100%; font: inherit; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fafafa; }
form.contact textarea { min-height: 140px; resize: vertical; }
form.contact button { justify-self: center; background: var(--accent); color: var(--accent-ink); border: 0; border-radius: 999px; padding: 12px 34px; font: inherit; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
form.contact button[disabled] { opacity: .6; cursor: wait; }
.form-note { font-size: 14px; color: var(--muted); text-align: center; min-height: 1.4em; }
.hp { position: absolute; left: -9999px; }

.site-footer { border-top: 1px solid var(--line); padding: 26px 16px; text-align: center; font-size: 14px; color: var(--muted); }
.site-footer a { color: inherit; }

@media (max-width: 640px) {
  .site-nav { gap: 14px; }
  .hero { min-height: 300px; }
  section { padding: 40px 16px; }
}
