@charset "UTF-8";
/* Minimal W3.CSS - Only classes used in your HTML */

/* Box sizing */
html {
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* Reset */
body {
  margin: 0;
  font-family: Verdana, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

/* Headings */
h1 {font-size: 36px;}
h2 {font-size: 30px;}
h3 {font-size: 24px;}
h4 {font-size: 20px;}
h5 {font-size: 18px;}
h6 {font-size: 16px;}

h1, h2, h3, h4, h5, h6 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  margin: 10px 0;
}

/* Links */
a {
  background-color: transparent;
  color: inherit;
}

a:active, a:hover {
  outline-width: 0;
}

/* Images */
img {
  border-style: none;
  vertical-align: middle;
}

/* .w3-container */
.w3-container {
  padding: 0.01em 16px;
}

.w3-container:after, .w3-container:before {
  content: "";
  display: table;
  clear: both;
}

/* .w3-content - main content wrapper */
.w3-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
}

/* .w3-circle - for profile image */
.w3-circle {
  border-radius: 50%;
}

/* .w3-ul - unordered lists */
.w3-ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.w3-ul li {
  padding: 8px 16px;
  border-bottom: 1px solid #ddd;
}

.w3-ul li:last-child {
  border-bottom: none;
}

/* .w3-button - buttons */
.w3-button {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background-color: inherit;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.w3-button:hover {
  color: #000 !important;
  background-color: #ccc !important;
}

/* .w3-center - center text */
.w3-center {
  text-align: center !important;
}

/* .w3-padding-32 */
.w3-padding-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* .w3-margin-top */
.w3-margin-top {
  margin-top: 16px !important;
}

/* .w3-blue (if you use it anywhere) */
.w3-blue {
  color: #fff !important;
  background-color: #2196F3 !important;
}

/* .w3-text-white */
.w3-text-white {
  color: #fff !important;
}

/* --- AINSLIE CUSTOM THEME OVERRIDES --- */

/* Typography */
html, body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background-color: #f4f4f4;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #002244;
}



.w3-content a:hover,
.w3-container a:hover,
main a:hover,
footer a:hover {
  color: #005599 !important;
  text-decoration: underline;
}

/* Page container */
.w3-content {
  max-width: 900px !important;
  background: #fff;
  padding: 40px 30px;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Section headings */
.w3-container h2, 
.w3-container h3 {
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

/* Buttons */
.w3-button {
  background-color: #003366 !important;
  color: white !important;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: underline;
}

.w3-button:hover {
  background-color: #005599 !important;
  color: #fff !important;
  text-decoration: underline;
}

/* Profile headshot styling */
.w3-circle {
  width: 180px;
  height: 180px;
  object-fit: fill;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: block;
  margin: 0 auto 20px auto;
}

/* Navbar white text override - MUST BE LAST */
nav a,
nav .navbar > li > a,
nav .dropbtn,
nav .dropdown-content a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}

nav a:hover,
nav .navbar > li > a:hover,
nav .dropbtn:hover,
nav .dropdown-content a:hover {
  color: #ffffff !important;
  background-color: #005599 !important;
}
nav {
  background-color: #003366;
}

.navbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.navbar > li {
  position: relative;
}

/* Top-level nav links and dropdown toggle */
.navbar > li > a,
.dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-weight: bold;
}

.navbar > li > a:hover,
.dropbtn:hover {
  background-color: #005599;
}

/* Dropdown container */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #003366;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Dropdown links */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  display: block;
  text-align: left;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #005599;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
