/* Inject Connect — shared component styles (complements Tailwind utilities) */

::selection {
  background: rgba(201, 164, 92, 0.35);
  color: #f4eee3;
}

/* --- Navigation --- */
.nav-link {
  position: relative;
  color: rgba(244, 238, 227, 0.75);
  transition: color 0.25s ease;
  padding-bottom: 6px;
}
.nav-link:hover { color: #e4c687; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: #c9a45c;
  transition: right 0.3s ease;
}
.nav-link:hover::after, .nav-active::after { right: 0; }
.nav-active { color: #f4eee3; }

#nav-toggle.open .nav-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#nav-toggle.open .nav-bar:nth-child(2) { opacity: 0; }
#nav-toggle.open .nav-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Buttons --- */
.btn-outline-gold,
.btn-solid-gold {
  display: inline-block;
  letter-spacing: 0.25em;
  font-weight: 500;
  padding: 0.85rem 1.9rem;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-outline-gold {
  border: 1px solid #c9a45c;
  color: #e4c687;
  background: transparent;
}
.btn-outline-gold:hover {
  background: #c9a45c;
  color: #0a0a0a;
}
.btn-solid-gold {
  border: 1px solid #c9a45c;
  background: linear-gradient(135deg, #a87f3d 0%, #c9a45c 45%, #e4c687 100%);
  color: #0a0a0a;
}
.btn-solid-gold:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 26px rgba(201, 164, 92, 0.35);
}

/* --- Typography helpers --- */
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: #c9a45c;
  font-weight: 500;
}
.gold-text {
  background: linear-gradient(120deg, #a87f3d, #e4c687 55%, #c9a45c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: #c9a45c;
  font-weight: 600;
}

/* --- Decorative rules --- */
.rule-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 92, 0.7), transparent);
}

/* --- Cards --- */
.card-dark {
  background: linear-gradient(180deg, #16130e 0%, #0e0d0b 100%);
  border: 1px solid rgba(201, 164, 92, 0.22);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.card-dark:hover {
  border-color: rgba(201, 164, 92, 0.55);
  transform: translateY(-3px);
}

/* Training-card city artwork: layered gradients as a stand-in for skyline photos */
.city-art {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(201, 164, 92, 0.4) 0%, rgba(120, 85, 35, 0.22) 35%, rgba(10, 10, 10, 0) 70%),
    linear-gradient(180deg, #191510 0%, #0d0c0a 100%);
}
.city-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(10,10,10,0.55), rgba(10,10,10,0) 45%);
}

/* --- Social icons --- */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 9999px;
  color: rgba(244, 238, 227, 0.75);
  transition: all 0.3s ease;
}
.social-icon svg { width: 1rem; height: 1rem; }
.social-icon:hover {
  border-color: #c9a45c;
  color: #e4c687;
  box-shadow: 0 0 16px rgba(201, 164, 92, 0.25);
}

/* --- Forms --- */
.field-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: rgba(244, 238, 227, 0.65);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.field-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 164, 92, 0.25);
  color: #f4eee3;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  transition: border-color 0.25s ease;
}
.field-input:focus {
  outline: none;
  border-color: #c9a45c;
}
.field-input::placeholder { color: rgba(244, 238, 227, 0.3); }
select.field-input option { background: #121110; color: #f4eee3; }
.field-error {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: #e0a08a;
  display: none;
}

/* --- FAQ accordion --- */
.faq-item { border-bottom: 1px solid rgba(201, 164, 92, 0.18); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  padding: 1.5rem 0.25rem;
  cursor: pointer;
}
.faq-q .faq-plus {
  color: #c9a45c;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0.25rem 1.6rem; }

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Testimonial carousel --- */
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(201, 164, 92, 0.7);
  background: transparent;
  transition: background 0.3s ease;
  cursor: pointer;
}
.carousel-dot.active { background: #c9a45c; }
