﻿/* ==========================================================
   Bush Kennels — bush-kennels.uk
   Brand palette from existing Bush Kennels identity/merch:
   steel teal #45818E, deep blue #1E6C93, light blue #49AAD4
   ========================================================== */

:root {
  --teal-deep: #305e69;
  --teal-mid: #45818e;
  --teal-soft: #e1eef1;
  --paper: #f7fafb;
  --paper-dark: #dfeaee;
  --accent: #1e6c93;
  --accent-dark: #175372;
  --ink: #26292b;
  --ink-soft: #52585c;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 2px 8px rgba(48, 94, 105, 0.08), 0 8px 24px rgba(48, 94, 105, 0.07);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; display: block; }

a { color: var(--teal-mid); }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Header / nav ---------- */

.topbar {
  background: var(--teal-deep);
  color: #d7e6ea;
  font-size: 0.88rem;
  padding: 0.4rem 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

header.site {
  background: var(--paper);
  border-bottom: 1px solid var(--paper-dark);
  position: sticky;
  top: 0;
  z-index: 50;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--teal-deep);
}
.brand .logo-img { height: 46px; width: auto; flex: none; }
.brand .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.1;
}
.brand .tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

nav.main ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
nav.main a {
  display: block;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.97rem;
}
nav.main a:hover { background: var(--teal-soft); color: var(--teal-deep); }
nav.main a[aria-current="page"] { color: var(--teal-deep); background: var(--teal-soft); }

nav.main .cta a {
  background: var(--accent);
  color: #fff;
  margin-left: 0.4rem;
}
nav.main .cta a:hover { background: var(--accent-dark); color: #fff; }

/* dropdown */
nav.main li.has-sub { position: relative; }
nav.main li.has-sub > a::after { content: " ▾"; font-size: 0.7em; }
nav.main li.has-sub ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--paper-dark);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
nav.main li.has-sub:hover > ul,
nav.main li.has-sub:focus-within > ul { display: flex; }
nav.main li.has-sub ul li { width: 100%; }
nav.main li.has-sub ul a {
  padding: 0.55rem 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--teal-deep);
  border-radius: 8px;
  color: var(--teal-deep);
  font: inherit;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero .wrap {
  padding: 4.5rem 1.25rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.hero p.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 1.8rem;
  color: #dcebee;
}
.hero .actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero svg.scene { display: block; width: 100%; height: auto; margin-top: -1rem; }

/* photo hero: dog photo behind a teal tint, as on the original site */
.hero.photo-hero {
  background-image:
    linear-gradient(180deg, rgba(23, 52, 60, 0.72) 0%, rgba(48, 94, 105, 0.45) 100%),
    url("../images/photo-setter-grass.jpg");
  background-size: cover;
  background-position: center 30%;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border-color: #fff; color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); }
.btn-green { background: var(--teal-deep); color: #fff; }
.btn-green:hover { background: var(--teal-mid); }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: linear-gradient(180deg, var(--teal-deep), var(--teal-mid));
  color: #fff;
  padding: 3rem 0 2.6rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.page-hero p {
  max-width: 620px;
  margin: 0.7rem auto 0;
  color: #dcebee;
  font-size: 1.1rem;
}

/* ---------- Sections ---------- */

section.band { padding: 3.5rem 0; }
section.band.alt { background: var(--white); }
section.band.green { background: var(--teal-soft); }

.kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--teal-deep);
  margin-bottom: 0.5rem;
}
.center { text-align: center; }
.center h2 { margin-left: auto; margin-right: auto; }
p + p { margin-top: 0.9rem; }
.measure { max-width: 720px; }
.center .measure { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease;
}
a.card:hover { transform: translateY(-4px); }
.card .art {
  background: var(--teal-soft);
  padding: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
}
.card .art img {
  width: 150px;
  height: 92px;
  object-fit: contain;
}
.card .body { padding: 1.2rem 1.4rem 1.5rem; flex: 1; }
.card .body p { color: var(--ink-soft); font-size: 0.98rem; }
.card .more {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.95rem;
  margin-top: 0.7rem;
  display: inline-block;
}

/* ---------- Feature list / checklist ---------- */

ul.checks { list-style: none; margin-top: 1rem; }
ul.checks li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.6rem;
}
ul.checks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal-mid);
  font-weight: 900;
}

/* ---------- Two column ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

/* ---------- Pricing ---------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 1.2rem;
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--paper-dark);
}
.price-table th {
  background: var(--teal-deep);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price {
  font-weight: 800;
  color: var(--teal-deep);
  white-space: nowrap;
}

/* ---------- Callouts ---------- */

.callout {
  background: var(--white);
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
}
.callout.green { border-left-color: var(--teal-mid); }
.callout h3 { margin-bottom: 0.3rem; }
.callout p { color: var(--ink-soft); }

.notice {
  background: #fdf3e7;
  border: 1px solid #ecd3b4;
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  margin-top: 1.2rem;
  color: #7a5124;
  font-size: 0.98rem;
}

/* ---------- Info strip ---------- */

.info-strip {
  background: var(--teal-deep);
  color: #fff;
  padding: 2.6rem 0;
}
.info-strip .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}
.info-strip h3 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.info-strip p, .info-strip a { color: #dcebee; }
.info-strip a { font-weight: 700; }
.info-strip strong { color: #fff; font-size: 1.15rem; }

/* ---------- Photos ---------- */

.photo-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.two-col .photo-img {
  max-height: 540px;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery figcaption {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 0.55rem;
  text-align: center;
}

.bb-logo-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bb-logo-card img { max-width: 380px; width: 100%; }

/* ---------- Photo placeholder ---------- */

.photo {
  background: var(--teal-soft);
  border: 2px dashed var(--teal-mid);
  border-radius: var(--radius);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--teal-mid);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}
.photo svg { width: 48px; height: 48px; opacity: 0.7; }
.photo small { font-weight: 400; color: var(--ink-soft); }

/* ---------- Terms page ---------- */

.terms h2 {
  font-size: 1.35rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--paper-dark);
}
.terms h2:first-of-type { border-top: none; margin-top: 0.5rem; padding-top: 0; }
.terms ul { margin: 0.6rem 0 0.6rem 1.4rem; }
.terms li { margin-bottom: 0.35rem; }
.terms .updated {
  margin-top: 2.5rem;
  font-style: italic;
  color: var(--ink-soft);
}

/* ---------- FAQ style rows ---------- */

.qa {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.5rem;
  margin-top: 1.2rem;
}
.qa h3 { margin-bottom: 0.4rem; }
.qa p { color: var(--ink-soft); }

/* ---------- Contact cards (reservations) ---------- */

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem 1.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card .cc-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.contact-card .cc-icon svg { width: 28px; height: 28px; fill: var(--teal-deep); }
.contact-card h3 { margin-bottom: 0.4rem; }
.contact-card .cc-main { font-weight: 800; font-size: 1.15rem; }
.contact-card .cc-main a { text-decoration: none; color: var(--accent); }
.contact-card .cc-main a:hover { text-decoration: underline; }
.contact-card .cc-sub { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.35rem; }
.contact-card .cc-sub a { color: var(--accent); font-weight: 700; }

/* ---------- Map ---------- */

.map-frame {
  border: 0;
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 1.2rem;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  text-align: center;
  padding: 3.2rem 0;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { max-width: 560px; margin: 0.5rem auto 1.5rem; color: #d9eaf3; }

/* ---------- Footer ---------- */

footer.site {
  background: #1b3b44;
  color: #b3cbd2;
  padding: 3rem 0 2rem;
  font-size: 0.95rem;
}
footer.site .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
footer.site h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
footer.site ul { list-style: none; margin-top: 0.6rem; }
footer.site li { margin-bottom: 0.4rem; }
footer.site a { color: #d2e3e8; text-decoration: none; }
footer.site a:hover { text-decoration: underline; color: #fff; }
footer.site .brandline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
footer.site .logo-footer {
  height: 44px;
  width: auto;
  margin-bottom: 0.7rem;
}
footer.site .fine {
  border-top: 1px solid #2c525c;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #89a6af;
}
.social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
}
.social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2c525c;
  align-items: center;
  justify-content: center;
}
.social a:hover { background: var(--accent); }
.social svg { width: 18px; height: 18px; fill: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav.main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--paper-dark);
    box-shadow: var(--shadow);
  }
  nav.main.open { display: block; }
  nav.main ul { flex-direction: column; align-items: stretch; padding: 0.8rem 1.2rem; }
  nav.main li.has-sub ul {
    display: flex;
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 1rem;
  }
  nav.main .cta a { margin-left: 0; text-align: center; }
  .two-col { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr; gap: 1.6rem; }
}
