/* DJ★RT site — shared styles */
:root {
  --ink: #1b1b1b;
  --muted: #6b6b6b;
  --field-bg: #f5f6f7;
  --field-border: #e3e5e8;
  --error: #b3261e;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* Top bar */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  font-family: Arial, Helvetica, sans-serif;
}
.topbar .btn { justify-self: end; }

/* Page-tracker dropdown */
.nav-center { position: relative; text-align: center; }
.nav-trigger {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 2px 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
}
.nav-pageof {
  font-size: 10.5px;
  letter-spacing: .05em;
  color: var(--muted);
}
.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
  padding: 18px 8px;
  min-width: 230px;
  z-index: 100;
  text-align: left;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 16px;
  font-size: 14.5px;
  text-decoration: none;
  color: var(--ink);
  position: relative;
}
.nav-item.current { font-weight: bold; }
.nav-item.upcoming { color: #b6b6b6; }
.nav-item:hover span:last-child { text-decoration: underline; }
.nav-item .mark {
  width: 16px;
  display: inline-flex;
  justify-content: center;
  flex-shrink: 0;
}
.nav-item .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid #b6b6b6;
  display: inline-block;
}
.nav-item .dot.filled { background: var(--ink); border-color: var(--ink); }
/* vertical connector between steps */
.nav-item + .nav-item::before {
  content: "";
  position: absolute;
  left: 23.5px;
  top: -14px;
  height: 16px;
  border-left: 1.5px solid #d9d9d9;
}
.topbar .brand {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
}
.btn {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 12px 24px;
  cursor: pointer;
}
.btn:hover { background: #000; }

/* Sections */
.section { padding: 48px 20px; }
.section .inner { max-width: 760px; margin: 0 auto; }
.section.dark { background: #000; color: #fff; }
.section.dark a { color: #fff; }
.center { text-align: center; }

h1, h2 { font-weight: normal; }
.script {
  font-family: "Satisfy", cursive;
}
.party {
  color: #FFFFFF;
  font-family: "Caveat", cursive;
  font-size: 40px;
  line-height: 1.1;
}
.hero-party { font-size: 20px; margin: 0 0 28px; }

/* Home page */
.logo-wrap { padding: 36px 20px 8px; text-align: center; }
.logo-wrap img { display: inline-block; width: min(420px, 80%); }
.logo-caption { text-align: center; margin: 4px 0 28px; }

.hero h1 { font-size: 24px; margin: 0 0 4px; }
.hero .sub { margin: 0 0 6px; }

.why li { margin-bottom: 14px; }
.why b { font-family: Arial, Helvetica, sans-serif; font-size: 15.5px; }

.photo-main { margin: 36px auto 14px; max-width: 560px; }
.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}
.photo-row img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.insta img { width: 96px; margin: 12px auto 0; }

.pricing h2 { font-size: 26px; margin: 0 0 6px; }
.pricing .fine { font-size: 12.5px; color: #cfcfcf; margin-top: 20px; }

.booked { text-align: center; }
.booked h2 { font-size: 18px; }
.booked ul { list-style: none; padding: 0; margin: 0; }
.booked li { margin: 2px 0; }

.site-footer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}
.site-footer img { width: 72px; border-radius: 4px; }
.site-footer .name { font-size: 19px; margin: 0 0 4px; }
.site-footer p { margin: 0 0 4px; }

/* Testimonials page */
.testimonials h1 {
  font-family: "Satisfy", cursive;
  font-size: 40px;
  text-align: center;
  margin: 24px 0 48px;
}
.testimonial { margin-bottom: 44px; }
.testimonial .who { margin: 0 0 2px; }

/* Form page */
.form-title {
  font-weight: normal;
  font-size: 26px;
  text-align: center;
  margin: 24px 0 40px;
}
form.lead { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 56px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { margin-bottom: 8px; }
input, select, textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  border-radius: 3px;
  padding: 10px 12px;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
}
textarea { min-height: 140px; resize: vertical; }
select:invalid, select option[value=""] { color: var(--muted); }
.req { font-size: 12.5px; color: var(--muted); margin-top: 6px; }
.field-error { font-size: 13px; color: var(--error); margin-top: 6px; display: none; }
.field.invalid .field-error { display: block; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--error); }
.consent {
  grid-column: 1 / -1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  color: var(--muted);
}
.actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; }
button[type="submit"]:disabled { opacity: .6; cursor: default; }
.form-error { grid-column: 1 / -1; color: var(--error); display: none; }
#thanks { display: none; text-align: center; padding: 80px 0; font-size: 22px; }
.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* Add-ons modal (home page) */
.addons-modal {
  background: transparent;
  border: 0;
  padding: 20px;
  max-width: 640px;
  width: calc(100% - 24px);
  color: #fff;
}
.addons-modal::backdrop {
  background: rgba(0, 0, 0, .75);
}
.addon-box {
  position: relative;
  padding: 30px;
  border: 2px solid #fff;
  border-radius: 10px;
  background: #111;
  box-shadow: 0 0 15px rgba(255, 255, 255, .2);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15.5px;
}
.addon-box h2 {
  text-align: center;
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 24px;
}
.addon-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.addon-list li {
  padding: 10px 0;
  border-bottom: 1px solid #333;
}
.addon-list li:last-child { border-bottom: 0; }
.addon-list strong { color: #f8f9fa; }
.addon-list em { color: #ccc; font-size: .9em; }
.addon-close-btn {
  display: block;
  width: 100%;
  margin-top: 30px;
  background: #fff;
  color: #000;
}
.addon-close-btn:hover { background: #ddd; }
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 640px) {
  form.lead { grid-template-columns: 1fr; }
  .photo-row { grid-template-columns: repeat(3, 1fr); }
}
