/* Bali AIEscapes — Custom styles */

[x-cloak] { display: none !important; }

:root {
  --primary:  #3b2a1a;
  --accent:   #c8773a;
  --light:    #f5ede0;
  --muted:    #7a6a58;
  --border:   #e0d8ce;
  --bgalt:    #faf7f2;
  --text:     #2a1a0a;
}

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, .heading { font-family: 'Cormorant Garamond', serif; }

/* ── Form inputs ─────────────────────────────────────────────────────────── */
.form-input {
  display: block;
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 119, 58, 0.12);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
}
.btn-primary:hover  { opacity: 0.9; }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--light); }

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* ── Activity card image ─────────────────────────────────────────────────── */
.activity-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bgalt);
}

/* ── Highlight pills ─────────────────────────────────────────────────────── */
.pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ── OTP input ───────────────────────────────────────────────────────────── */
.otp-input {
  width: 3rem;
  height: 3.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  color: var(--primary);
  transition: border-color 0.15s;
}
.otp-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 119, 58, 0.12);
}

/* ── Cost bar ────────────────────────────────────────────────────────────── */
.cost-bar {
  position: sticky;
  bottom: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 40;
}

/* ── Badge ───────────────────────────────────────────────────────────────── */
.badge-adventure  { background: #fef3c7; color: #92400e; }
.badge-cultural   { background: #ede9fe; color: #5b21b6; }
.badge-relaxation { background: #d1fae5; color: #065f46; }
.badge-food       { background: #fee2e2; color: #991b1b; }

/* ── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bgalt); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
