/*
  True North Home Services - Shared Styles
  ---------------------------------------
  This file contains site-wide custom styles that sit on top of Tailwind CSS.
  Edit colors, spacing helpers, and reusable visual patterns here.
*/

:root {
  --tn-navy: #0d2240;
  --tn-teal: #1a5276;
  --tn-amber: #c8892a;
  --tn-slate: #4b5563;
  --tn-bg: #f8fafc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #1f2937;
  background-color: #ffffff;
}

.tn-gradient {
  background: linear-gradient(135deg, var(--tn-navy), var(--tn-teal));
}

.tn-btn-primary {
  display: inline-block;
  border-radius: 0.5rem;
  background-color: var(--tn-amber);
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  transition: all 0.2s ease-in-out;
}

.tn-btn-primary:hover,
.tn-btn-primary:focus-visible {
  background-color: #e6a94a;
  transform: translateY(-1px);
}

.tn-btn-secondary {
  display: inline-block;
  border-radius: 0.5rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.1rem;
  transition: all 0.2s ease-in-out;
}

.tn-btn-secondary:hover,
.tn-btn-secondary:focus-visible {
  background-color: rgba(255, 255, 255, 0.12);
}

.tn-section {
  padding: 4rem 0;
}

.tn-card {
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.tn-card-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

.tn-page-hero {
  background: linear-gradient(160deg, #0d2240 0%, #1a5276 70%, #2c7ba3 100%);
}

.tn-highlight {
  color: var(--tn-amber);
}

.tn-service-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.tn-service-list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background-color: var(--tn-amber);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.tn-map-placeholder {
  border: 2px dashed #94a3b8;
  border-radius: 0.75rem;
  background-color: #f1f5f9;
}

@media (min-width: 768px) {
  .tn-section {
    padding: 5.5rem 0;
  }
}
