/* EnCasa Boulder — Global Styles */
/* Annette rules: white/off-white bg, #f83f98 pink accent, full-bleed sections,
   no sticky elements, no dark backgrounds, no em-dashes, contractions */

:root {
  --pink:       #f83f98;
  --pink-light: #fde8f4;
  --pink-dark:  #c8006e;
  --gold:       #f59e0b;
  --gold-light: #fef3c7;
  --text:       #1a1a1a;
  --text-muted: #6b7280;
  --bg:         #ffffff;
  --bg-warm:    #fdf8f5;
  --border:     #e5e7eb;
  --radius:     12px;
  --shadow:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.12);
  --container:  min(92%, 1200px);
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── Layout ──────────────────────────────────────────────────────── */

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ── Nav ─────────────────────────────────────────────────────────── */

nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.nav-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--pink); }

.nav-links .btn-nav {
  background: var(--pink);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  font-weight: 600;
}

.nav-links .btn-nav:hover { background: var(--pink-dark); color: #fff; }

/* ── Buttons ─────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.15s;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover { background: var(--pink-light); }

.btn-gold {
  background: var(--gold);
  color: #1a1a1a;
}
.btn-gold:hover { background: #d97706; }

.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* ── Hero ─────────────────────────────────────────────────────────── */

.hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--gold-light) 100%);
  padding: 4rem 0 3.5rem;
}

.hero-inner {
  width: var(--container);
  margin-inline: auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--pink);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-inline: auto;
}

/* ── Search bar ───────────────────────────────────────────────────── */

.search-bar {
  display: flex;
  max-width: 600px;
  margin-inline: auto;
  border-radius: 99px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.search-bar select,
.search-bar input {
  flex: 1;
  border: none;
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  outline: none;
  background: transparent;
  color: var(--text);
}

.search-bar button {
  background: var(--pink);
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s;
}
.search-bar button:hover { background: var(--pink-dark); }

/* ── Section titles ───────────────────────────────────────────────── */

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.4rem;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ── Worker cards ─────────────────────────────────────────────────── */

.workers-section {
  padding: 3.5rem 0;
  background: var(--bg-warm);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.worker-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.worker-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.worker-card.featured {
  border: 2px solid var(--pink);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.card-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}

.tag-hood {
  background: var(--gold-light);
  color: #92400e;
}

.card-rate {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #25d366;
  color: #fff;
  border-radius: 99px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.15s;
}
.wa-btn:hover { background: #128c7e; }

/* ── About Annette band ───────────────────────────────────────────── */

.about-band {
  background: var(--pink);
  color: #fff;
  padding: 3.5rem 0;
}

.about-band-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.about-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
  background: var(--pink-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.about-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.about-text p {
  opacity: 0.92;
  max-width: 560px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ── Footer ───────────────────────────────────────────────────────── */

footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 2rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
footer a:hover { color: var(--pink); }

/* ── Forms ────────────────────────────────────────────────────────── */

.form-page {
  padding: 3rem 0 4rem;
  background: var(--bg-warm);
}

.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem 2.5rem;
  max-width: 640px;
  margin-inline: auto;
}

.form-card h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.form-card .subtitle {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.92rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

label .hint {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.82rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--pink);
}

textarea { resize: vertical; min-height: 100px; }

.checkboxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-label input { width: auto; }

.rate-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 8px;
  padding: 1.25rem;
  color: #166534;
  font-weight: 600;
  display: none;
  margin-top: 1.5rem;
  text-align: center;
}

/* ── Sobre page ───────────────────────────────────────────────────── */

.sobre-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--gold-light) 100%);
  padding: 4rem 0 3rem;
}

.sobre-inner {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.sobre-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--pink);
  flex-shrink: 0;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.sobre-text h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.sobre-text .tagline {
  color: var(--pink);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.sobre-body {
  background: var(--bg-warm);
  padding: 3rem 0 4rem;
}

.sobre-content {
  width: var(--container);
  margin-inline: auto;
  max-width: 760px;
}

.sobre-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 2rem 0 0.75rem;
  color: var(--pink-dark);
}

.sobre-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.fact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.fact-chip {
  background: var(--pink-light);
  color: var(--pink-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── Lang toggle ──────────────────────────────────────────────────── */

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}

.lang-btn {
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  background: #fff;
  color: var(--text-muted);
  transition: all 0.15s;
}

.lang-btn.active {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* ── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .nav-inner { gap: 0.75rem; }
  .nav-links { gap: 1rem; }
  .about-band-inner { flex-direction: column; text-align: center; }
  .sobre-inner { flex-direction: column; align-items: center; text-align: center; }
  .rate-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem 1.25rem; }
}

/* ── Loading state ────────────────────────────────────────────────── */

.loading { text-align: center; padding: 3rem; color: var(--text-muted); }
.empty   { text-align: center; padding: 3rem; color: var(--text-muted); }

/* ── Jobs section ─────────────────────────────────────────────────── */

.jobs-section {
  padding: 3.5rem 0;
  background: var(--bg);
}

.job-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.job-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.job-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.job-budget {
  font-weight: 700;
  color: var(--pink-dark);
  white-space: nowrap;
}
