/*
Theme Name: Quartet Gigs Theme
Theme URI: https://example.com/
Author: Quartet Starter
Description: A clean one-page WordPress theme for a barbershop quartet booking site.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Text Domain: quartet-gigs
*/

:root {
  --bg: #ffffff;
  --ink: #1f2933;
  --muted: #5b6776;
  --line: #e5e7eb;
  --accent: #1f4f82;
  --accent-dark: #15395f;
  --soft: #f5f7fa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--accent); }

.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.brand {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .2px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  margin: 12px 0 20px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  margin: 0 0 18px;
}

h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 720px;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 16px;
}

.button:hover { background: var(--accent-dark); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(31, 79, 130, .08);
}

.section {
  padding: 64px 0;
}

.section.soft {
  background: var(--soft);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.package {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 14px;
}

.package p {
  color: var(--muted);
}

.price {
  font-weight: 800;
  color: var(--accent);
  margin-top: 10px;
}

ul.clean {
  padding-left: 18px;
}

.testimonial {
  font-size: 20px;
  color: var(--ink);
}

.qform label {
  display: block;
  font-weight: 700;
  margin: 12px 0 6px;
}

.qform input,
.qform textarea,
.qform select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 16px;
}

.qform button {
  border: 0;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  margin-top: 16px;
}

.notice {
  padding: 12px 14px;
  border-radius: 8px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  margin-bottom: 16px;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 800px) {
  .hero-grid, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  .nav {
    align-items: flex-start;
    gap: 12px;
  }
  .nav-links a {
    display: inline-block;
    margin: 0 12px 8px 0;
  }
}
