/*
Theme Name: Weddings NS
Theme URI: https://weddingsns.ca
Author: OpenAI
Author URI: https://openai.com
Description: A clean, elegant WordPress theme for a Nova Scotia wedding officiant.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: weddingsns
*/

:root {
  --bg: #fbf8f5;
  --paper: #ffffff;
  --text: #2f2a26;
  --muted: #6e645d;
  --accent: #8a6a58;
  --accent-soft: #e9ddd4;
  --border: #e8dfd8;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(47,42,38,0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(251,248,245,0.92);
  border-bottom: 1px solid rgba(138,106,88,0.12);
}
.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.98rem;
}
.nav a { color: var(--text); }

.hero {
  padding: 5.5rem 0 4rem;
  background: linear-gradient(180deg, #f7efe8 0%, #fbf8f5 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}
.hero p {
  font-size: 1.08rem;
  max-width: 42rem;
  color: var(--muted);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}
.button {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.button:hover { transform: translateY(-1px); text-decoration: none; }
.button-primary {
  background: var(--accent);
  color: #fff;
}
.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat strong {
  display: block;
  font-size: 1.35rem;
}
.section {
  padding: 4.5rem 0;
}
.section h2 {
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  margin: 0 0 0.75rem;
}
.section-intro {
  max-width: 45rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-clean li + li { margin-top: 0.75rem; }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}
.faq-item p { color: var(--muted); }
.contact-box {
  background: #f5eee8;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.small { font-size: 0.95rem; color: var(--muted); }
.note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .header-inner { flex-direction: column; align-items: flex-start; }
}
