@font-face {
  font-family: 'Hore';
  src: url('/assets/Hore.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #fcf7ef;
  --coral: #e27562;
  --marigold: #e0aa4f;
  --sage: #90ac7d;
  --teal: #6da5a2;
  --denim: #4b68a1;
  --lavender: #a08cbd;
  --charcoal: #373737;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 32px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Hore', cursive;
  font-size: 1.1rem;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--coral);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ---- HERO ---- */
.hero {
  text-align: center;
  padding: 48px 32px 0;
  max-width: 960px;
  margin: 0 auto;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: 'Hore', cursive;
  font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--coral);
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--charcoal);
  opacity: 0.75;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- DOTS ---- */
.dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 80px 0;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dots span:nth-child(1) { background: var(--coral); }
.dots span:nth-child(2) { background: var(--marigold); }
.dots span:nth-child(3) { background: var(--sage); }
.dots span:nth-child(4) { background: var(--teal); }
.dots span:nth-child(5) { background: var(--denim); }
.dots span:nth-child(6) { background: var(--lavender); }

/* ---- SECTION ---- */
.section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-center {
  text-align: center;
}

.section h2 {
  font-family: 'Hore', cursive;
  font-size: 2rem;
  margin-bottom: 16px;
  text-align: center;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.75;
  opacity: 0.8;
}

/* ---- CARDS ---- */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  margin: 0 auto 40px;
  max-width: 720px;
}

.card-marigold { border: 2.5px solid var(--marigold); }
.card-teal { border: 2.5px solid var(--teal); }
.card-coral { border: 2.5px solid var(--coral); }
.card-lavender { border: 2.5px solid var(--lavender); }

.card h2 {
  font-family: 'Hore', cursive;
  font-size: 2rem;
  margin-bottom: 24px;
  text-align: center;
}

/* ---- DETAIL ROWS ---- */
.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.detail-icon.calendar { background: var(--coral); }
.detail-icon.clock { background: var(--teal); }
.detail-icon.pin { background: var(--sage); }
.detail-icon.dollar { background: var(--marigold); }

.detail-text {
  font-size: 1.1rem;
  line-height: 1.5;
}

.detail-text strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  opacity: 0.5;
  margin-bottom: 2px;
}

.detail-text a {
  color: var(--denim);
  text-decoration: none;
}

.detail-text a:hover {
  text-decoration: underline;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1.5px solid #e6e1da;
}

.faq-item:first-of-type {
  border-top: 1.5px solid #e6e1da;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 12px;
}

.faq-question:hover { color: var(--denim); }

.faq-arrow {
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
  color: var(--marigold);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.98rem;
  line-height: 1.75;
  opacity: 0.75;
}

/* ---- DECORATIVE POTHOLDERS ---- */
.deco-potholder {
  position: absolute;
  width: 320px;
  height: auto;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  border-radius: 12px;
}

/* ---- SIGNUP BOX ---- */
.signup-box {
  background: #fff;
  border: 2.5px solid var(--teal);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.signup-box h2 {
  font-family: 'Hore', cursive;
  font-size: 2rem;
  color: var(--coral);
  margin-bottom: 8px;
}

.signup-box .subtitle {
  font-size: 1rem;
  opacity: 0.65;
  margin-bottom: 28px;
}

/* ---- CTA BUTTON ---- */
.cta-btn {
  display: inline-block;
  padding: 16px 36px;
  border: none;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  font-family: 'Hore', cursive;
  font-size: 1.3rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.cta-btn:hover { background: #cf6453; }
.cta-btn:active { transform: scale(0.98); }

/* ---- FOOTER ---- */
.site-footer-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px 20px;
}

.future-box {
  text-align: center;
  padding: 36px 0;
}

.future-box h2 {
  font-family: 'Hore', cursive;
  font-size: 1.6rem;
  color: var(--marigold);
  margin-bottom: 8px;
}

.future-sub {
  font-size: 1rem;
  opacity: 0.65;
  margin-bottom: 20px;
}

.contact-line {
  text-align: center;
  padding: 0 32px 12px;
  font-size: 0.95rem;
  opacity: 0.6;
}

.contact-line a {
  color: var(--denim);
  text-decoration: none;
}

.contact-line a:hover { text-decoration: underline; }

.site-footer {
  text-align: center;
  padding: 16px 28px 28px;
  font-size: 0.85rem;
  opacity: 0.45;
}

/* ---- EMOJI FEATURES ---- */
.emoji-tagline {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.02em;
}

/* ---- PRIVATE EVENTS ---- */
.private-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.private-type {
  background: #fff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  font-family: 'Hore', cursive;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.private-type span {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}

/* ---- PRIVATE FORM ---- */
.private-form, .webhook-form {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.pf-group {
  margin-bottom: 16px;
}

.pf-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0.7;
}

.pf-group input,
.pf-group select,
.pf-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0dbd4;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color 0.2s;
}

.pf-group input:focus,
.pf-group select:focus,
.pf-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.pf-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.form-success .check-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success h3 {
  font-family: 'Hore', cursive;
  font-size: 1.5rem;
  color: var(--sage);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 1rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* ---- FUTURE SIGNUP INLINE ---- */
.future-inline {
  max-width: 480px;
  margin: 0 auto;
}

.future-field {
  display: flex;
  gap: 12px;
}

.future-field input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #e0dbd4;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--charcoal);
  transition: border-color 0.2s;
}

.future-field input:focus {
  outline: none;
  border-color: var(--marigold);
}

.future-field button {
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background: var(--marigold);
  color: #fff;
  font-family: 'Hore', cursive;
  font-size: 1.1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.future-field button:hover {
  background: #c9963f;
}

@media (max-width: 600px) {
  .future-field {
    flex-direction: column;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .site-nav { padding: 16px 20px; }
  .nav-links { display: none; gap: 20px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    padding: 20px 28px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 100;
  }
  .mobile-toggle { display: block; }
  .hero { padding: 32px 20px 30px; }
  .hero-logo { width: 170px; }
  .card, .signup-box { padding: 28px 20px; }
  .section { padding: 0 20px 40px; }
  .site-footer-section { padding: 0 20px 20px; }
  .deco-potholder { width: 160px; opacity: 0.22; }
}
