/*
Theme Name: Uplift Mortgage Theme
Theme URI: https://www.upliftmortgage.ca
Author: Uplift Mortgage (David Lee)
Author URI: https://www.upliftfinancial.ca
Description: A Pacific West Coast inspired theme for Uplift Mortgage, a Greater Vancouver mortgage brokerage led by BC-licensed mortgage broker David Lee (Verico Gibbard Group Financial).
Version: 1.0
*/

:root {
  --uplift-green: #2e7d4f;
  --uplift-lightgreen: #a8d5b1;
  --uplift-grey: #e6e6e6;
  --uplift-darkgrey: #4a4a4a;
  --uplift-white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--uplift-grey);
  color: var(--uplift-darkgrey);
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

.section {
  background: var(--uplift-white);
  padding: 40px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

h1, h2, h3 {
  color: var(--uplift-green);
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li {
  display: inline-block;
  margin: 0 20px;
}

.nav ul li a {
  color: var(--uplift-white);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}
/* Ensure nav container displays properly */
.nav {
  background: var(--uplift-green);
  padding: 15px;
  text-align: center;
  width: 100%;
  display: block;
}

/* Ensure WordPress default menu classes are visible */
.nav .menu,
.nav .menu ul {
  display: inline-block;
}

.nav li {
  list-style: none;
}

