/* Google Font (Lovable site uses Inter) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bs-primary: hsl(220, 91%, 20%);   /* Lovable navy */
  --bs-secondary: hsl(45, 93%, 47%);  /* Lovable taxi yellow */
  --bs-success: #28a745;              /* optional */
  --bs-info: #17a2b8;                 /* optional */
  --bs-warning: #ffc107;              /* optional */
  --bs-danger: #dc3545;               /* optional */
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--bs-dark);
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Links */
a {
  color: var(--bs-link-color);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover {
  color: var(--bs-link-hover-color);
  text-decoration: underline;
}

/* Buttons */
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
  font-weight: 500;
  padding: 0.65rem 1.25rem;
  border-radius: 0.5rem;
}
.btn-primary:hover {
  background-color: var(--bs-link-hover-color);
  border-color: var(--bs-link-hover-color);
}

.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: #fff;
  font-weight: 500;
}
.btn-secondary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

/* Cards */
.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Section spacing */
section {
  padding: 4rem 0;
}

section .hero-section
{
	padding: 2.5rem 0 !important;
}
section.bg-light {
  background-color: var(--bs-light) !important;
}
section.bg-dark {
  background-color: var(--bs-dark) !important;
  color: #fff;
}

/* Footer */
footer {
  background-color: var(--bs-dark);
  color: #e2e8f0;
  font-size: 0.9rem;
}
footer a {
  color: #e2e8f0;
  text-decoration: none;
}
footer a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
footer .border-top {
  border-color: rgba(255,255,255,0.1) !important;
}

/* Utility overrides */
.text-primary { color: var(--bs-primary) !important; }
.text-secondary { color: var(--bs-secondary) !important; }
.bg-primary { background-color: var(--bs-primary) !important; }
.bg-secondary { background-color: var(--bs-secondary) !important; }

/* Hero Section Heading - force white */
.hero-section h1,
.hero-section h2,
.hero-section h3 {
  color: #ffffff !important;
}

/* Footer Headings Fix */
footer h5,
footer h6 {
  color: #ffffff !important;
}

/* Footer body text */
footer,
footer p,
footer li,
footer a {
  color: #ffffff !important;
}

footer a:hover {
  color: #ffcc00 !important; /* yellow hover for links */
}

/* Bottom bar muted links */
footer .text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.site-logo img,
.custom-logo-link img {
    max-height: 60px;   /* adjust this number to match your menu/header */
    height: auto;
    width: auto;
}