/* When The Cat's Away Cattery — shared styles */
:root {
  --green: #4f6f52;
  --green-dark: #3a5240;
  --cream: #f7f4ec;
  --sand: #efe7d6;
  --ink: #2f2a24;
  --muted: #6b6358;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 22px rgba(47, 42, 36, 0.10);
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

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

a { color: var(--green-dark); }

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; color: var(--green-dark); }

h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin: 0 0 .5em; }
h3 { font-size: 1.2rem; margin: 0 0 .4em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 236, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--sand);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px clamp(24px, 6vw, 120px); max-width: none; margin: 0;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: Georgia, serif; font-weight: 700; font-size: 1.15rem; color: var(--green-dark); text-decoration: none; line-height: 1.1; }
.brand img { height: 54px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; }
.brand-text small { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-family: "Segoe UI", sans-serif; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem;
  padding: 8px 12px; border-radius: 8px;
}
.nav-links a:hover, .nav-links a.active { background: var(--sand); color: var(--green-dark); }
.nav-links a.book-now-link {
    background: #0b3d2e;
    color: #fff;
    border-radius: 999px;
    padding: 10px 20px;
}

.nav-links a.book-now-link:hover {
    background: #145a41;
}

.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--green-dark); }

/* ---- Buttons ---- */
.btn {
  display: inline-block; background: var(--green); color: #fff; text-decoration: none;
  padding: 13px 26px; border-radius: 999px; font-weight: 700; border: 0; cursor: pointer;
  transition: background .15s ease, transform .15s ease; font-size: 1rem;
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 64vh; display: flex; align-items: center;
  color: #fff; text-align: left;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.hero .container { max-width: none; width: 100%; padding: 60px 22px; padding-left: clamp(24px, 6vw, 120px); }
.hero-content { max-width: 600px; margin: 0; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.hero .kicker { letter-spacing: .18em; text-transform: uppercase; font-weight: 700; font-size: .8rem; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.55); }
.hero p.lead { font-size: 1.18rem; max-width: 560px; margin: 0 0 1.5em; color: #fff; font-weight: 600; text-shadow: 0 2px 14px rgba(0,0,0,.7); }

/* ---- Sections ---- */
section { padding: 56px 0; }
.section-tight { padding: 36px 0; }
.lead { font-size: 1.1rem; color: var(--muted); }
.center { text-align: center; }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; max-height: 420px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.card .ico { margin-bottom: 12px; }
.card .ico svg { width: 44px; height: 44px; color: var(--green); display: block; }

@media (min-width: 821px) { .cards.cards-2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; } }

.band { background: var(--green); color: #fff; text-align: center; }
.band h2 { color: #fff; }
.band a.btn { background: #fff; color: var(--green-dark); }
.band a.btn:hover { background: var(--sand); }
.band a.btn-outline { background: var(--green-dark); color: #fff; border: 2px solid #fff; }
.band a.btn-outline:hover { background: var(--ink); border-color: var(--ink); }

.sand-bg { background: var(--sand); }

/* ---- Rates highlight ---- */
.rate-box { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; text-align: center; max-width: 460px; margin: 0 auto; }
.rate-box .price { font-size: 3rem; font-family: Georgia, serif; color: var(--green-dark); font-weight: 700; }
.rate-box .price small { font-size: 1rem; color: var(--muted); }

/* ---- Reviews ---- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote { background: var(--white); border-left: 4px solid var(--green); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.quote p { font-style: italic; margin: 0 0 10px; }
.quote .who { font-weight: 700; color: var(--green-dark); font-style: normal; }

/* ---- Contact / forms ---- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.info-block h3 { margin-top: 0; }
.info-block p { margin: .2em 0; }
form.contact label { display: block; font-weight: 600; margin: 14px 0 5px; }
form.contact input, form.contact textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d8cfbd; border-radius: 10px;
  font: inherit; background: #fff;
}
form.contact textarea { min-height: 130px; resize: vertical; }
form.contact .btn { margin-top: 18px; }

.map { border: 0; width: 100%; height: 320px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---- Gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.gallery img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 1/1; object-fit: cover; width: 100%; }

/* ---- Footer ---- */
.site-footer { background: var(--green-dark); color: #e9efe7; padding: 44px 0 26px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-grid h4 { font-family: Georgia, serif; margin: 0 0 12px; color: #fff; font-size: 1.05rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 6px 0; }
.copyright { text-align: center; margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); font-size: .85rem; opacity: .85; }
.fb-link { display: inline-flex; align-items: center; gap: 7px; }
.fb-link svg { flex: none; }

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--sand); padding: 8px 16px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; border-radius: 8px; }
  .split, .info-grid { grid-template-columns: 1fr; }
  .cards, .quotes { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
.book-now-btn {
  display: inline-block;
  background-color: #0b3d2e; /* dark green */
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px; /* makes it a pill shape */
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.book-now-btn:hover {
  background-color: #145a41; /* slightly lighter green on hover */
  transform: translateY(-1px);
}
.nav-links a.book-now-link {
    background: #0b3d2e;
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.nav-links a.book-now-link:hover {
    background: #145a41;
    color: #ffffff;
}
.nav-links a.book-now-link {
    background: var(--green);
    color: #ffffff !important;
    border-radius: 999px;
    padding: 13px 26px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.nav-links a.book-now-link:hover {
    background: var(--green-dark);
    color: #ffffff !important;
}