/* B&L Marketing — Custom Styles */
/* Component tokens and base styles that extend Tailwind utilities */

/* ─── Base ─── */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 720px;
}

/* ─── Section spacing ─── */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 200ms ease;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-gold {
  background-color: #C8973E;
  color: #ffffff;
  border-color: #C8973E;
}

.btn-gold:hover {
  background-color: #B8872E;
  border-color: #B8872E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 151, 62, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: #0B1D3A;
  border-color: #D4D4D4;
}

.btn-outline:hover {
  border-color: #0B1D3A;
  background-color: #F7F8FA;
}

.btn-dark {
  background-color: #0B1D3A;
  color: #ffffff;
  border-color: #0B1D3A;
}

.btn-dark:hover {
  background-color: #122244;
  border-color: #122244;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 29, 58, 0.2);
}

.btn-full {
  width: 100%;
}

/* ─── Cards ─── */
.card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(11,29,58,0.08), 0 4px 12px rgba(11,29,58,0.04);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(11,29,58,0.12), 0 8px 24px rgba(11,29,58,0.06);
  transform: translateY(-2px);
}

.card-flat {
  background: #F7F8FA;
  border-radius: 0.75rem;
  padding: 1.75rem;
  border: 1px solid #E5E5E5;
  transition: border-color 200ms ease;
}

.card-flat:hover {
  border-color: #C8973E;
}

/* ─── Eyebrow / Label ─── */
.eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8973E;
}

.eyebrow-dark {
  color: #737373;
}

/* ─── Divider ─── */
.divider {
  width: 3rem;
  height: 2px;
  background-color: #C8973E;
  border: none;
}

/* ─── Form inputs ─── */
.input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: #262626;
  background-color: #ffffff;
  border: 1px solid #D4D4D4;
  border-radius: 0.5rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.input:focus {
  outline: none;
  border-color: #C8973E;
  box-shadow: 0 0 0 3px rgba(200, 151, 62, 0.15);
}

.input::placeholder {
  color: #A3A3A3;
}

textarea.input {
  resize: vertical;
  min-height: 120px;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
