/* ═══════════════════════════════════════════════════
   style.css — TrustedHire
   Sunshine + Turquoise + White — Caribbean palette
   Georgia serif body · Nunito headings
   Large, clear, accessible type throughout
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800;900&display=swap');

:root {
  --turq:       #22ccd8;
  --turq-dark:  #0e9ab0;
  --turq-light: #7de8ed;
  --foam:       #c4f4f6;
  --pale:       #eefcfd;
  --white:      #ffffff;
  --sand:       #fffef9;
  --sunshine:   #f5c842;
  --sun-dark:   #e0a800;
  --text-dark:  #0d3d4a;
  --text-mid:   #1e5c6e;
  --text-soft:  #3a7a8a;
  --border:     #a8e8ed;
  --card-bg:    #ffffff;

  /* aliases used in HTML */
  --deep:    var(--turq-dark);
  --mid:     var(--turq);
  --lagoon:  var(--turq);
  --aqua:    var(--turq-light);
  --light:   var(--pale);
  --card:    var(--card-bg);
  --slate:   var(--text-mid);
  --navy:    var(--text-dark);
  --blue:    var(--turq-dark);
  --blue2:   var(--turq);
  --sky:     var(--turq-light);
  --teal:    var(--turq);
  --red:     #c0392b;
  --coral-r: #c0392b;
  --leaf:    #2d8a4e;
  --sand-border: var(--border);
}

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

body {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  background: var(--sand);
  color: var(--text-dark);
  line-height: 1.8;
}

h1, h2, h3, h4, h5, .font-head {
  font-family: 'Nunito', Georgia, sans-serif;
}

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--foam);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 16px rgba(34,204,216,0.08);
}
.logo {
  font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 900;
  color: var(--text-dark); text-decoration: none; letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo span { color: var(--turq-dark); }

nav { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
nav a {
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--text-mid);
  text-decoration: none; padding: 7px 13px; border-radius: 9px;
  transition: all 0.18s; white-space: nowrap;
}
nav a:hover, nav a.active {
  color: var(--text-dark); background: var(--pale);
}

/* ── HERO — only dark section ── */
.hero {
  background: linear-gradient(150deg, var(--turq-dark) 0%, var(--turq) 60%, var(--turq-light) 100%);
  padding: 72px 40px 64px; position: relative; overflow: hidden;
  min-height: 320px;
}
.hero-scene {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden;
}
.hero-inner { max-width: 700px; position: relative; z-index: 2; }
.hero-inner.centered { margin: 0 auto; text-align: center; }
.hero-inner.centered .hero-cta   { justify-content: center; }
.hero-inner.centered .hero-badge { margin: 0 auto 22px; }
.hero-inner.centered p { margin-left: auto; margin-right: auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.3);
  color: white; font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 20px;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--sunshine); animation: pulse 2.2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero h1 {
  font-family: 'Nunito', serif; font-size: clamp(30px, 5vw, 52px);
  font-weight: 900; color: white; line-height: 1.12;
  letter-spacing: -0.5px; margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--sunshine); }
.hero p {
  font-family: Georgia, serif; font-size: clamp(17px, 2.2vw, 20px);
  color: rgba(255,255,255,0.92); max-width: 560px; line-height: 1.8; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: 12px;
  font-family: 'Nunito', sans-serif; font-size: 16px; font-weight: 800;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.18s; white-space: nowrap;
}
.btn-primary { background: var(--sunshine); color: var(--text-dark); }
.btn-primary:hover { background: var(--sun-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,200,66,0.4); }
.btn-ghost   { background: rgba(255,255,255,0.16); color: white; border: 2px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); }
.btn-teal    { background: var(--turq-dark); color: white; }
.btn-teal:hover { background: #0b7f93; transform: translateY(-2px); }
.btn-light   { background: var(--pale); color: var(--text-dark); border: 2px solid var(--border); }
.btn-light:hover { background: var(--foam); }
.btn-sun     { background: var(--sunshine); color: var(--text-dark); }

/* ── PILLS ── */
.pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 14px; border-radius: 100px;
  font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 700; margin: 3px 2px;
}
.pill-blue   { background: var(--foam); color: var(--text-dark); }
.pill-slate  { background: var(--pale); color: var(--text-mid); }
.pill-green  { background: #d4f5e2; color: #155e30; }
.pill-purple { background: #ede9fe; color: #5b21b6; }
.pill-amber  { background: #fef3c7; color: #78400a; }
.pill-teal   { background: var(--foam); color: var(--text-dark); }

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--turq-dark); margin-bottom: 10px;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900; color: var(--text-dark); letter-spacing: -0.3px;
  margin-bottom: 24px; line-height: 1.2;
}

/* ── FORMS ── */
.field-label {
  display: block; font-family: 'Nunito', sans-serif;
  font-size: 17px; font-weight: 800;
  color: var(--text-dark); margin-bottom: 8px;
}
.req  { color: #b33; }
.hint { font-weight: 600; font-family: Georgia, serif; color: var(--text-soft); font-size: 15px; }

input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="date"], select, textarea {
  width: 100%; font-family: Georgia, serif; font-size: 17px;
  padding: 14px 18px; border: 2px solid var(--border); border-radius: 12px;
  background: white; color: var(--text-dark); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none; line-height: 1.5;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--turq);
  box-shadow: 0 0 0 4px rgba(34,204,216,0.18);
}
textarea { resize: vertical; min-height: 110px; }

/* ── FOOTER ── */
footer {
  text-align: center; padding: 48px 20px;
  background: var(--pale); color: var(--text-mid);
  font-size: 16px; border-top: 2px solid var(--foam);
}
footer strong { color: var(--text-dark); font-family: 'Nunito', sans-serif; font-size: 18px; }
footer .footer-flowers { font-size: 24px; letter-spacing: 8px; margin-bottom: 14px; display: block; }

@media (max-width: 700px) {
  body { font-size: 18px; }
  .site-header { padding: 0 16px; height: 60px; }
  nav a { padding: 6px 9px; font-size: 13px; }
  .hero { padding: 48px 20px 44px; }
}
