/* ===========================================================
   Salt & Canvas — shared stylesheet
   Rebuilt as a static site (previously hosted on GoHighLevel)
   =========================================================== */

:root {
  --teal: #008491;
  --navy: #042066;
  --navy-text: #011858;
  --green: #18bd5b;
  --cream: #fefefe;
  --grey-text: #4a4a4a;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy-text);
  background: var(--cream);
  line-height: 1.6;
}

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

a { text-decoration: none; color: inherit; }

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

/* ---------- Header / Nav ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 20px 0;
}

.site-header.static-header {
  position: relative;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.7), 0 1px 3px rgba(0,0,0,.55);
  transition: opacity .2s;
}

.nav-links a:hover { opacity: .75; }

.nav-links.dark-nav a { color: var(--navy-text); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a, .nav-links.dark-nav a { color: #fff; }
}

/* ---------- Hero (Home) ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/6988ae265f93990c65fce859.png') center 30% / cover no-repeat;
  padding: 140px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.35) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  font-weight: 600;
  margin: 0 0 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.hero .subtext {
  color: #f4faf4;
  font-size: 1.15rem;
  margin: 20px 0 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

.badge-seal {
  width: 140px;
  margin: 0 auto 32px;
  border-radius: 50%;
}

/* ---------- Hero: upcoming event promo ---------- */

.event-promo {
  margin: 4px 0 34px;
}

.event-promo-date {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .3px;
  margin: 0 0 22px;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.location-pod {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  padding: 14px 26px 12px;
  margin: 0 0 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

.location-pod img {
  width: 150px;
  height: auto;
}

.location-pod p {
  margin: 4px 0 0;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--navy-text);
}

.event-promo-grid {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.event-thumb {
  display: block;
  width: 260px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  transition: transform .15s ease, box-shadow .15s ease;
}

.event-thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,.32);
}

.event-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.event-thumb span {
  display: block;
  padding: 10px 12px 12px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy-text);
  text-align: center;
  line-height: 1.3;
}

.event-thumb span em {
  display: block;
  margin-top: 3px;
  font-style: normal;
  font-weight: 500;
  font-size: .76rem;
  color: var(--grey-text);
}

.event-thumb-large {
  width: 460px;
  max-width: 92vw;
}

.event-scan-note {
  margin: 16px 0 0;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.btn-private-party {
  margin-top: 48px;
}

@media (max-width: 560px) {
  .event-promo-grid { gap: 16px; }
  .event-thumb { width: 46%; max-width: 200px; }
  .event-promo-grid-single .event-thumb-large { width: 100%; max-width: 340px; }
}

/* ---------- RSVP modal ---------- */

.rsvp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 32, 102, .55);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.rsvp-overlay.open { display: flex; }

body.rsvp-open { overflow: hidden; }

.rsvp-modal {
  position: relative;
  background: #fff;
  border-radius: 14px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.rsvp-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
}

.rsvp-close:hover { color: var(--navy-text); }

.rsvp-modal h3 {
  margin: 0 0 4px;
  font-size: 1.3rem;
  color: var(--navy-text);
  padding-right: 20px;
}

.rsvp-date {
  margin: 0 0 22px;
  color: var(--teal);
  font-weight: 600;
  font-size: .95rem;
}

.rsvp-count-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rsvp-price {
  font-weight: 500;
  color: var(--grey-text);
  font-size: .82rem;
}

.rsvp-total {
  background: #f4f9fa;
  border: 1px solid #dcebed;
  border-radius: 8px;
  padding: 14px 16px;
  margin: 4px 0 18px;
}

.rsvp-total-line {
  font-size: .88rem;
  color: var(--grey-text);
}

.rsvp-total-amount {
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-text);
}

.rsvp-venmo {
  text-align: center;
  margin-bottom: 20px;
}

.rsvp-venmo img {
  width: 160px;
  margin: 0 auto 8px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

.rsvp-venmo p {
  margin: 0;
  font-size: .88rem;
  color: var(--grey-text);
}

.rsvp-contact-note {
  text-align: center;
  font-size: .85rem;
  color: var(--grey-text);
  margin: 0 0 16px;
}

.btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 16px 60px;
  border-radius: 75px;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }

.btn-white {
  background: #fff;
  color: var(--teal);
}

.btn-green {
  background: var(--green);
  color: #fff;
  width: 100%;
  border-radius: 6px;
  padding: 16px 24px;
}

/* ---------- Why Paint With Us ---------- */

.why-section {
  position: relative;
  padding: 90px 0;
  color: #fff;
  text-align: center;
  background: url('../images/6988e7427f6dcf5d195c13a5.png') center / cover no-repeat;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 30, .55);
}

.why-section .container { position: relative; z-index: 2; }

.why-section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: .5px;
}

.why-section .lead {
  font-size: 1.05rem;
  margin-bottom: 56px;
  opacity: .9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.why-card h3 {
  font-size: 1.15rem;
  margin: 0 0 12px;
  font-weight: 700;
}

.why-card p {
  font-size: .92rem;
  line-height: 1.7;
  opacity: .92;
}

/* ---------- FAQ ---------- */

.faq-section {
  padding: 90px 0;
  background: #fff;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.faq-toggle-all {
  display: inline-block;
  margin: 0 auto 30px;
  padding: 8px 22px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  border-radius: 30px;
  background: none;
  font-size: .85rem;
  cursor: pointer;
}

.faq-toggle-wrap { text-align: center; }

.faq-item {
  border-bottom: 1px solid #e4e4e4;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.faq-question .chevron {
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  color: var(--grey-text);
  font-size: .98rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 22px;
}

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

.site-footer {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 34px 20px;
  font-size: .92rem;
}

.site-footer .footer-links { margin-bottom: 10px; }

.site-footer a:hover { text-decoration: underline; }

/* ---------- Secondary page hero (About / Contact) ---------- */

.page-hero {
  position: relative;
  min-height: 180px;
  background: url('../images/6988ae265f93990c65fce859.png') center top / cover no-repeat;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.05) 100%);
  pointer-events: none;
}

.page-hero .site-header { position: absolute; z-index: 2; }

/* ---------- About page ---------- */

.about-section {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-photos {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.about-photos img {
  border-radius: 8px;
  object-fit: cover;
  object-position: center 25%;
  height: 170px;
  width: 100%;
}

.about-illustration img {
  border-radius: 8px;
  width: 100%;
}

.about-copy h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--navy-text);
}

.about-copy p {
  color: #1f3a8f;
  font-size: 1.02rem;
}

blockquote {
  margin: 24px 0 0;
  padding: 20px 24px;
  background: #f4f4f6;
  border-left: 4px solid var(--teal);
  font-style: italic;
  color: #333;
}

blockquote p { margin: 0; color: #333; font-size: .98rem; }

/* ---------- Contact page ---------- */

.contact-section {
  padding: 70px 0 100px;
  position: relative;
}

.contact-card {
  max-width: 560px;
  margin: -60px auto 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  padding: 44px 44px 36px;
  position: relative;
  z-index: 3;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: .95rem;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  font-size: .95rem;
  font-family: inherit;
}

.consent-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .82rem;
  color: #555;
}

.consent-row input { width: auto; margin-top: 3px; }

.contact-legal {
  text-align: center;
  margin-top: 18px;
  font-size: .85rem;
}

.contact-legal a { text-decoration: underline; }

.form-note {
  background: #fff8e6;
  border: 1px solid #f1dfa5;
  color: #7a5b00;
  font-size: .82rem;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.form-status {
  text-align: center;
  font-size: .9rem;
  font-weight: 600;
  margin: 14px 0 0;
  min-height: 1.2em;
}
