/* ================================ Global layout and typography ================================== */
:root {
  --teal: #14b2b2;       /* main banner teal */
  --teal-light: #a5dceb; /* top strip color */
  --mint: #AFFAD7;       /* left menu background */
  --ink: #0f172a;
}

* { box-sizing: border-box; }

html { background-color: #e0e0e0; /* gives light border frame outside page */ }

body {
  margin: 0;                  /* full width, no external gap */
  padding: 12px 24px;         /* white space inside edges */
  background-color: #fff;     /* page stays white */
  color: #000;
  font-family: "Century Gothic", "Lucida Sans", Arial, sans-serif;
}

/* ================================ Links ================================== */
a { color: #3333ff; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ================================ Header ================================== */
.site-top { background: var(--teal-light); }

/* Main banner bar (logo + company name + phone) */
.site-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--teal);
  padding: 20px 24px; /* taller header bar */
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #000;
}
.site-banner .phone {
  font-size: 28px;   /* same size as company name */
  font-weight: 700;  /* bold */
}

.site-brand img { height: 80px; width: auto; } /* slightly taller logo */

.site-brand h1 { margin: 0; font-size: 28px; font-weight: 700; }
.site-brand .phone { font-size: 28px; font-weight: 700; }

/* Header navigation bar (2nd bar) */
.site-subnav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  background: var(--teal-light);
  padding: 15px 24px; /* increased height by ~50% (was 10px 24px) */
}

/* Optional helpers for title-left / links-right */
.site-subnav .title { font-weight: 700; font-size: 26px; }
.site-subnav .links { margin-left: auto; display: flex; gap: 16px; }

.site-subnav a {
  font-family: "Century Gothic", Arial, sans-serif !important;
  font-size: 14px;
  font-weight: 700;
  color: #0000EE;
  text-decoration: none;
}


.site-subnav a:hover {
  color: #551A8B;   /* classic hover purple-blue */
  text-decoration: underline;
}

/* ================================ Layout grid for main body ================================== */
.shell {
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  gap: 16px;
  padding: 16px;
}

/* Left navigation panel */
.leftnav { background: var(--mint); padding: 12px; }

.leftnav a,
.leftnav a:visited {
  font-weight: 900;   /* bold */
  color: #0099ff;     /* bright blue */
  text-decoration: none;
}

.leftnav a:hover {
  color: #008080 !important;     /* teal hover */
  background-color: #dbe8ff;     /* optional soft background */
  text-decoration: underline;
}

/* Right sidebar (quick samples) */
.rightside img {
  display: block;
  margin-bottom: 10px;
  width: 100px;
  height: auto;
}

/* ================================ Footer ================================== */
.site-footer {
  text-align: left;  /* left-justified */
  padding: 24px 16px;
  font-size: 12px;
  background: #fff;
  border-top: 1px solid #ccc;
}

html, body {
  height: 100%;                 /* make body stretch full screen height */
  background-color: #ffffff;    /* ensure whole page background is white */
}
