/* Custom styles complementing Tailwind */
html { scroll-behavior: smooth; }
body { font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif; }

.hero-bg {
  background-image: linear-gradient(rgba(7, 44, 74, 0.62), rgba(7, 44, 74, 0.72)), url('/images/myrtle-beach-sc.jpg');
  background-size: cover;
  background-position: center;
  background-color: #0b3a5e; /* fallback before image upload */
}

.img-frame {
  background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 60%, #075985 100%);
  position: relative;
  overflow: hidden;
}
.img-frame::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); font-size: .8rem; letter-spacing: .05em;
  text-transform: uppercase; text-align: center; padding: 1rem;
}
.img-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }

details.faq { border: 1px solid #e2e8f0; border-radius: .75rem; background: #fff; }
details.faq summary {
  cursor: pointer; padding: 1rem 1.25rem; font-weight: 600; color: #0f172a;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; font-size: 1.4rem; color: #0284c7; flex-shrink: 0; }
details.faq[open] summary::after { content: '\2013'; }
details.faq .faq-body { padding: 0 1.25rem 1.25rem; color: #334155; line-height: 1.7; }

.prose-custom p { margin-bottom: 1rem; line-height: 1.8; color: #334155; }
.chip { display: inline-flex; align-items: center; gap: .4rem; background: #f0f9ff; color: #0369a1; border: 1px solid #bae6fd; border-radius: 9999px; padding: .3rem .9rem; font-size: .85rem; font-weight: 500; }

.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; background: #0284c7; color: #fff; font-weight: 600; padding: .8rem 1.6rem; border-radius: .75rem; transition: background .2s, transform .2s; }
.btn-primary:hover { background: #0369a1; transform: translateY(-1px); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; background: #fff; color: #0f172a; font-weight: 600; padding: .8rem 1.6rem; border-radius: .75rem; border: 2px solid #fff; transition: all .2s; }
.btn-secondary:hover { background: transparent; color: #fff; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; color: #0284c7; font-weight: 600; padding: .7rem 1.4rem; border-radius: .75rem; border: 2px solid #0284c7; transition: all .2s; }
.btn-outline:hover { background: #0284c7; color: #fff; }

.card-hover { transition: transform .2s, box-shadow .2s; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 12px 30px -10px rgba(2, 132, 199, .25); }
