/* ──────────────────────────────────────────────
   COLORS & FONTS
   All the colors live here as variables, so changing
   the whole site's look just means changing a few lines.
   ────────────────────────────────────────────── */
:root {
  --blue: #bfe3f8;
  --blue-dark: #5dafdd;
  --yellow: #ffefb0;
  --yellow-dark: #f0c452;
  --pink: #ffcadd;
  --pink-dark: #e85f9c;
  --cream: #fffbf3;
  --white: #ffffff;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --radius: 16px;
  --shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Baloo 2", cursive;
  color: var(--pink-dark);
  margin-top: 0;
}

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

img {
  max-width: 100%;
}

/* ── Header / Nav ── */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-title {
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  color: var(--pink-dark);
  text-decoration: none;
}

.site-nav a {
  margin-left: 1.25rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
}

.site-nav a:hover {
  color: var(--blue-dark);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: none;
  font-family: "Baloo 2", cursive;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--text);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ── Page wrapper ── */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

section {
  margin-bottom: 3rem;
}

/* ── Hero ── */
.hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.hero-text {
  flex: 1 1 300px;
}

.hero-text p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Placeholder box used for both the photo and the QR code.
   Addy: swap the <div> for an <img src="..."> tag once you
   have a real photo / QR code image to use. */
.placeholder-box {
  width: 220px;
  height: 220px;
  border: 3px dashed var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blue-dark);
  font-weight: 700;
  background: #eaf7fd;
  margin: 0 auto;
  flex-shrink: 0;
}

/* ── Decorative flower/smiley accents ── */
.divider {
  text-align: center;
  font-size: 1.75rem;
  letter-spacing: 1rem;
  margin: -1rem 0 2rem;
}

.footer-flourish {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/* ── Certifications ── */
.certifications {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.cert-text {
  flex: 1 1 300px;
}

.cert-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.cert-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cert-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--blue-dark);
}

.qr-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.qr-item {
  text-align: center;
}

.qr-image {
  display: block;
  width: 140px;
  height: 140px;
  border: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 0.5rem;
  background: var(--white);
}

.qr-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  max-width: 140px;
}

/* ── Services & Rates menu ── */
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 2px dashed #eee;
  font-weight: 700;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item span:last-child {
  color: var(--pink-dark);
  white-space: nowrap;
}

.menu-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--text-light);
}

/* ──────────────────────────────────────────────
   FORMS (booking form + schedule "add job" form)
   ────────────────────────────────────────────── */
form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1 1 200px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blue);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── Thank you page ── */
.thankyou-box {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
}

/* ──────────────────────────────────────────────
   SCHEDULE PAGE (password gate + job list)
   ────────────────────────────────────────────── */
.password-gate {
  max-width: 400px;
  margin: 4rem auto;
  text-align: center;
}

.password-gate p {
  color: var(--text-light);
}

.form-error {
  color: #b3261e;
  font-weight: 700;
}

.hidden {
  display: none !important;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-info h3 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  color: var(--text);
}

.job-info .job-meta {
  color: var(--text-light);
  font-size: 0.9rem;
}

.job-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-pending {
  background: #fff3cd;
  color: #8a6d00;
}

.status-confirmed {
  background: #d4f5dd;
  color: #1a7a3c;
}

.status-declined {
  background: #fde0e0;
  color: #b3261e;
}

.empty-state {
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav a {
    margin-left: 0;
    margin-right: 1.25rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
