
/* CUSTOM COLORS */
:root {
    --color1:#1A3D7C; /* Reliability, trust, and professionalism. Common in IT branding. */
    --color2:#3A6EA5; /* Calm but modern; keeps the site approachable. */
    --color3:#2ECC71; /* Signals innovation, growth, and success. Great for buttons or highlights. */
    --color4:#00B5E2; /* Fresh, digital, emphasizes clarity and speed. */
    --color5:#F7F9FB; /* Clean background for readability. */
    --color6:#2E2E2E; /* Strong text or header color; anchors without harshness of pure black. */
    --color7:#FFC857; /* Optimism and energy; works for warnings or callouts. */
    --color8:#6C63FF; /* Creative, tech-forward; sparingly for links or hover states. */
    --color9:#676767; 
    --color10:#6699CC; 
    --color11:#003B6D; 
    --color12:#BDBDBD;
    --font-sans: "Saira", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

html {
  font-family: var(--font-sans);
  font-optical-sizing: auto;
}

/* Body styling */
body {
    background-color: #f4f6f8;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header section */
@keyframes logo-move {
  from {transform: translateX(-125px);}
  to {transform: translateX(0);}
}

.site-header-new {
  display: flex;
  position: sticky;
  align-items: center;
  justify-items: left;
  border-bottom: 2px solid var(--color1); 
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color11);    
}

.brand a {
  text-decoration: none;  /* Removes underline from hyperlink */
}

.brand h1 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-right: 30px;
}

.brand img {
  display: block;
  height: 60px;
  width: auto;
  margin: 20px;
}

.logo {
  border-radius: 8px;
  position: relative;
  animation-name: logo-move;
  animation-duration: 2s;
  animation-timing-function: ease-in;
}

.logo:focus-visible { 
    outline: 2px solid; 
    outline-offset: 4px; 
}



.motto {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  padding-right: 30px;
  padding-top: 8px;
}

.motto h1 {
  font-size: 1.5rem;
  color: var(--color2);
}


.header-nav {
  margin-left: auto;
  margin-right: 2rem;
}


.breadcrumb {
  font-size: 0.9rem;
  margin: 0 1rem;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "›";                 /* separator arrow */
  margin: 0 0.5rem;
  color: var(--color3);
}

.breadcrumb a {
  text-decoration: none;
  color: var(--color2);
}

.breadcrumb a:hover {
  text-decoration: underline;  
}


        /* Main content */
.two-column-layout {  /* Creates colums */
  display: grid;
  gap: 30px; /* Space between columns*/
  grid-template-columns: 1fr 1fr; /* Makes 2 columns that are 1 fraction of the width, making them dynamic */
  justify-items:left;
  margin: 2rem 0;
}

main {
    flex: 1;
    display: block;
    padding: 40px 20px;
}

main h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

main p {
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
}


p.border {
  border-top-style: solid;
  border-left: 20px solid var(--color1);
  border-bottom-style: dashed;
  border-right-style: double;
  padding:5px;
  width:350px;
}

/* TRANSFORMATION ANS TRANSITION */
figure#card img#cover {
  transform: scaleX(1);
  box-shadow: 5px 5px 10px rgb(101,101,101);
  transform-origin: left; /*Sets to fold from left*/
  transition: all 1s linear; 
}

figure#card:hover img#cover {
  transform: scaleX(-1); /*Flips image*/
  box-shadow: -5px 5px 10px rgb(101,101,101);
}


/* Footer section */
/*footer {
    background-color: var(--color11);
    color: white;
    padding: 10px;
    font-size: 0.9rem;
    margin-top: auto;
} */

/* BODY */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
}

h1 {
    color:var(--color1);
}

h2 {
    text-align: center;
    color:var(--color2);
}

.info-body h2 {
  text-align: left;
  border-left: solid black;
  padding-left: 1rem;
}

h3 {
    color:var(--color12);
}

h4 {
    color:var(--color12);
}

p {
    line-height: 1.6;
    font-size: 16px;
}

nav {
    text-align: center;
}

.highlight {
    background-color: var(--color3);
    display:inline;
}

#special {
    font-weight: bold;
}

a:hover {
    color:var(--color8);
}


::selection {
    background-color: var(--color12);
}

#hiringManager {
    color:var(--color12);
}
    
mark {
    background-color:var(--color6) ;
}


/*LISTS*/

ul {
    margin-left: 0%;
    
}

/*TABLES*/


tr:nth-child(even) {
    background-color:var(--color7);
}

#cert-table {
    width: 1000px;
    height: 100px;
    padding: 7px;
    border: 5px solid var(--color3);
    margin-left: auto;
    margin-right: auto;
    table-layout: auto;
    width: 98%;
}

caption {
    color:var(--color3);
    letter-spacing: 2px;
}

th, tr, td {
    text-align: center;
}  

th {
    font-style: italic;
    font-variant: small-caps;
    color:var(--color5);
}

td  {
    border: 1px solid var(--color5);
    vertical-align: top;
    padding: 7px;
    color: var(--color5);
}

/*FORMS*/
.form-container {
    display: flex;
    flex-wrap: wrap; /* Allows columns to stack on smaller screens */
    gap: 20px; /* Space between columns */
    max-width: 500px; /* Optional: limits form width*/
    margin: 0 auto; /* Centers the form*/
    padding: 20px;
    border: 1px solid var(--color5);
    border-radius: 8px;
}

.form-column {
    flex: 1;  /*Equal width for both columns */
    min-width: 300px; /*Ensures columns do not get too narrow*/
    display: flex;
    flex-direction: column;
    gap: 15px; /*Space between form elements*/
}


input[type=submit] {
    background-color: var(--color4);
    color: white;
    padding: 15px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;  
}

input[type=submit]:hover {
    background-color: green;
}

label {
    font-weight: bold;
    color: var(--color6);
}

/* MEDIA*/

.content-wrapper {
    display: flex;
    gap: 40px;        /* space between left and right*/
    align-items: flex-start; /* top-align */
    justify-content: center;
}

.media-container {
    flex: 1;          /* takes up available space */
    max-width: 400px; /* keeps image/video from blowing up */
    text-align: center;
}

@media (max-width: 800px) {
    .content-wrapper {
      flex-direction: column;
      align-items: center;
  }
}



/*body {
    font-family: 'lora', serif;
}
*/

body a {
  color: var(--color2);
}

body p {
  color: var(--color6);
}

body {
  color: var(--color2);
}

.hero-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vh;
  position: relative;
}

button {
  background-color: var(--color12);
  font-family: var(--font-sans);
  font-weight: bold;
  color: var(--color11);
  border: none;
  outline: 0;
  display: inline-block;
  font-size: 17px;
  padding: .25rem .5rem;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 5px 5px 8px var(--color6);
}

button:hover {
  background-color: var(--color2);
  color: var(--color5);
  font-weight: bold;
}


img.pet {
	height: 320px;
	width: 450px;
}

header h1 {
  color: var(--color12);
}

footer h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: .5rem;
  padding: .5rem 1rem;
  gap: 1.5rem;
}

.primary-nav a {
  text-decoration: none;
  color:var(--color1);
  text-align: center;
  padding: .5rem .75rem;
  font-size: 17px;
  border-radius: 8px;
  background-color: var(--color12);
  box-shadow: 5px 5px 8px var(--color6);
  line-height: 1.4;
}

.primary-nav a:hover {
  font-weight: bold;
  background-color: var(--color2);
  color: var(--color5);
}

.primary-nav a.active {
  font-weight: bold;
  background-color: var(--color2);
  color: var(--color5);
  border-left: 8px solid var(--color7);
}

.primary-nav a:focus-visible,
.site-search input:focus-visible,
.site-search button:focus-visible {
  outline: 3px solid var(--color4);
  outline-offset: 3px;
  border-radius: 6px;

}

.primary-nav a[aria-current="page"] {
  font-weight: bold;
  background-color: var(--color2);
  color: var(--color5);
  border-left: 8px solid var(--color7);
}

.primary-nav ul {
  display: flex;
  align-items: flex-end; /* lines up with logo baseline work */
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.primary-nav li {
  position: relative;
}



.site-search {
  display: flex;
  justify-items: right;
  align-items: center;
  gap: .5rem;
  font-size: 17px;
}

.site-search input { 
  padding: .4rem .6rem;
  font-size: 1rem;
  border: 1px solid var(--color9); 
  border-radius: 8px;
  box-shadow: 5px 5px 8px var(--color6); 
}

/*.site-search button {
  padding: .4rem .8rem;
  background: var(--color4);
  color: var(--color3);
  font-size: 17px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.site-search button:hover {
  background: var(--color1);
}
*/

.site-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.site-banner img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover; 
  border-radius: 10px; 
  
}

.visually-hidden {
  position: absolute !important;
  width: 1px; 
  height: 1px;
  padding: 0; 
  margin: -1px; 
  overflow: hidden;
  clip: rect(0 0 0 0); 
  white-space: nowrap; 
  border: 0;
}



/*
.call-to-action a {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  padding: .25rem .5rem;
  font-size: 17px;
  font-weight: bold;
}

.call-to-action a:hover {
  background-color: #ff8533;   /* lighter shade when hovered */
  /*transform: scale(1.05);      /* subtle grow effect */
  /*transition: 0.2s ease;       /* smooth animation */ /*
}
*/

/*
.req-consul {
  display: flex;
  align-items: center;          /* vertically centers image and form */
  /*justify-content: center;      /* horizontally centers content */
  /*gap: 2rem;                    /* space between columns */
  /*flex-wrap: wrap;              /* allows stacking on smaller screens */
  /*max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.req-consul img {
  width: 100%;                  /* full width inside its container */
  /*max-width: 550px;             /* controls how large it can grow on desktop */
  /*height: auto;                 /* keeps aspect ratio */
  /*border-radius: 10px;          /* optional — softens edges */
  /*object-fit: cover;
}
*/
.contact-form {
  flex: 1;
  min-width: 300px;
  border-style: solid;
  padding: 2%;
  border-color: var(--color3);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 1rem;
}

.pet-pic {
  text-align: center;          /* centers heading and image */
}

.pet-pic img {
  width: 100%;                 /* image scales to fit container */
  max-width: 400px;            /* limits image size for consistency */
  height: 250px;               /* fixes image height */
  object-fit: cover;           /* crops image neatly */
  border-radius: 8px;          /* optional: softens corners */
  transition: transform 0.2s ease;
}

.pet-pic img:hover {
  transform: scale(1.03);      /* subtle zoom effect on hover */
}

.three-column-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem;                  
  justify-items: center;     
  padding: 2rem;    
}   

#home-page-title {
  margin-bottom: 10px;
} 


.page-title {
  background-color: var(--color12);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.page-title h1 {
  margin: 0;              /* remove default margins so it centers better */
}

/* ====== Left Aside + Main Layout ====== */
.layout-with-aside {
  display: grid;
  grid-template-columns: 1fr;            /* mobile-first: single column */
  gap: 2rem;
  align-items: start;
  padding: 1rem 1rem 2rem;
}



/* ====== Secondary Nav Styles ====== */
.secondary-nav {
  background: #fff;
  border: 1px solid var(--color4);
  border-radius: 10px;
  padding: 1rem;
}

.secondary-title {
  margin: 0 0 .5rem 0;
  font-size: 1.1rem;
  color: var(--color6);
  border-bottom: 1px solid var(--color7);
  padding-bottom: .5rem;
}

.secondary-nav nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;                         /* neat vertical rhythm */
  gap: .35rem;
}

.secondary-nav a {
  display: block;
  text-decoration: none;
  color: var(--color2);
  background: rgba(0,0,0,0);            /* transparent default */
  padding: .5rem .6rem;
  border-radius: 8px;
  transition: background .15s ease, transform .05s ease;
  outline-offset: 3px;
}

.secondary-nav a:hover {
  background: var(--color9);
  color: var(--color5);
  font-weight: bold;
}

.secondary-nav a[aria-current="page"],
.secondary-nav a.active {
  font-weight: 600;
  color: var(--color5);
  background: var(--color2);
}

/* ===== MOBILE FIXES FOR HEADER + NAV OVERLAP ===== */
@media (max-width: 768px) {

  /* Stack header brand elements vertically */
  .site-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    text-align: center;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    gap: .25rem;
  }

  .brand h1 {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: center;
    margin: 0;
  }

  .brand img {
    height: 60px;
    margin: 0;
  }

  /* Make the nav wrap and avoid overlap */
  .primary-nav {
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    padding: .5rem;
    position: relative;
    z-index: 10; /* ensures it's above hero only when needed */
  }

  .primary-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
  }

  .primary-nav li {
    flex: 1 1 auto;
  }

  .primary-nav a {
    display: inline-block;
    padding: .5rem .75rem;
    font-size: 1rem;
    line-height: 1.2;
    background-color: var(--color4);
    color: var(--color5);
    box-shadow: none;
    border-radius: 6px;
  }

  .primary-nav a:hover {
    background-color: var(--color2);
    color: var(--color5);
  }

  /* Prevent double nav rows from cluttering */
  footer .primary-nav {
    flex-wrap: wrap;
  }

  /* Hero image spacing fix */
  .hero-image {
    margin-top: 0.5rem;
  }

  /* Optional: hide the breadcrumb if space is tight */
  .breadcrumb {
    font-size: 0.8rem;
    margin-top: 0.25rem;
  }
}



/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 480px) {
  .brand h1 {
    font-size: 1.1rem;
  }

  .primary-nav a {
    font-size: 0.9rem;
    padding: .4rem .6rem;
  }

  .hero-image img {
    border-radius: 6px;
  }
}



/* Wider screens: two columns (aside left, content right) */
@media (min-width: 960px) {
  .layout-with-aside {
    grid-template-columns: 260px 1fr;    /* left nav ~260px */
  }
}

/* ====== Make secondary nav mobile-friendly ====== */
/* Make the left nav stick as user scrolls on desktop */
@media (min-width: 960px) {
  .secondary-nav {
    position: sticky;
    top: 1rem;                           /* adjust if header is fixed */
    max-height: calc(100vh - 2rem);
    overflow: auto;
  }
}
/* On small screens, turn it into a horizontal pill list above content */
@media (max-width: 959px) {
  .secondary-nav {
    border: none;
    border-radius: 0;
    padding: .5rem 0;
  }
  .secondary-title {
    display: none;                       /* keep it compact on mobile */
  }
  .secondary-nav nav ul {
    display: flex;
    gap: .5rem;
    overflow-x: auto;                    /* horizontal scroll if needed */
    -webkit-overflow-scrolling: touch;
    padding-bottom: .25rem;
  }
  .secondary-nav a {
    white-space: nowrap;
    background: var(--color4);
  }
  .layout-with-aside {
    display: none;
  }
}



/* Auto-alternate image/text on wider screens for visual rhythm */
@media (min-width: 992px) {
  .info-block:nth-of-type(even) {
    grid-template-columns: 1fr minmax(260px, 380px);
  }
  .info-block:nth-of-type(even) .info-media { order: 2; }
  .info-block:nth-of-type(even) .info-body  { order: 1; }
}

/* ====== Main content ====== */
.page-content {
  min-width: 0; /* fixes overflow in grid children */
}

/* ====== Content blocks for pet pages ====== */

.info-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;    /* keeps cards a consistent shape */
  object-fit: cover;       /* crops politely to fill area */
  border-radius: 10px;
}

/* Nice readable measure + spacing */
.info-body > * + * { margin-top: .75rem; }
.info-body ul { padding-left: 1.25rem; }

/* Section dividers with consistent spacing */
.section-divider {
  border: 0;
  border-top: 3px solid var(--color2);
  margin: 2rem 0;          
}

/* Optional: tighten headings inside blocks */
.info-body h2, .info-body h3 { margin-top: 0; }

.sitemap,.sitemap ul { 
  list-style: disc; 
  margin: 0; 
  padding-left: 1.25rem; 
}

.sitemap > li { 
  margin-top: .25rem; 
}

.sitemap a { 
  text-decoration: none; 
}

.sitemap a:hover { 
  text-decoration: underline; 
}

/* Normalize only where you’re customizing the control */
button,
input[type="button"],
input[type="submit"] {
  appearance: none;           /* modern */
  -webkit-appearance: none;   /* Safari */
  border: 0;
  border-radius: .5rem;
  padding: .5rem .9rem;
  background: var(--color12);
  color: var(--color1);
  font: inherit;
  cursor: pointer;
}

/* Only vertical resize so layout doesn’t explode horizontally */
textarea {
  resize: vertical;
  min-height: 8rem;
  max-height: 50vh;
}

/* Great for accessibility and looks crisp */
:focus-visible {
  outline: 3px solid var(--accent, #4CAF50);
  outline-offset: 3px;  /* moves ring away from the element edge */
  border-radius: .4rem; /* optional: match your UI corners */
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color12, #fff);
  color: var(--color1, #000);
  padding: .5rem .75rem;
  border-radius: 6px;
  z-index: 1000;
}
.skip-link:focus {
  left: .5rem;
  top: .5rem;
  outline: 3px solid currentColor;
  outline-offset: 2px;
}

/*#map {  
  height: 100%;  
} 
*/

html,  
body {  
  height: 100%;  
  margin: 0;  
  padding: 0;  
}

/* DRAG AND DROP */


.info-media .dnd-container {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: stretch;
}

/*.info-media {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: stretch;
}
*/

.box {
  border: 3px solid #666;
  background-color: var(--color3);
  border-radius: .5em;
  padding: 10px;
  text-align: center;
  cursor: move;
}

.box.over {   
  border: 3px dotted #666;  /* Adds visual cue when user drags box over a column */
}

canvas {
  border: solid;
  border-color: #2ECC71;
}

input:invalid:required {
  border: 2px solid red;
}


/*  BOOTSTRAP NAVBAR OFFCANVAS*/
.bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
}
}
      .b-example-divider {
        width: 100%;
        height: 3rem;
        background-color: #0000001a;
        border: solid rgba(0, 0, 0, 0.15);
        border-width: 1px 0;
        box-shadow:
          inset 0 0.5em 1.5em #0000001a,
          inset 0 0.125em 0.5em #00000026;
      }
      .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
      }
      .bi {
        vertical-align: -0.125em;
        fill: currentColor;
      }
      .nav-scroller {
        position: relative;
        z-index: 2;
        height: 2.75rem;
        overflow-y: hidden;
      }
      .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }
      .btn-bd-primary {
        --bd-violet-bg: #712cf9;
        --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
        --bs-btn-font-weight: 600;
        --bs-btn-color: var(--bs-white);
        --bs-btn-bg: var(--bd-violet-bg);
        --bs-btn-border-color: var(--bd-violet-bg);
        --bs-btn-hover-color: var(--bs-white);
        --bs-btn-hover-bg: #6528e0;
        --bs-btn-hover-border-color: #6528e0;
        --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
        --bs-btn-active-color: var(--bs-btn-hover-color);
        --bs-btn-active-bg: #5a23c8;
        --bs-btn-active-border-color: #5a23c8;
      }
      .bd-mode-toggle {
        z-index: 1500;
      }
      .bd-mode-toggle .bi {
        width: 1em;
        height: 1em;
      }
      .bd-mode-toggle .dropdown-menu .active .bi {
        display: block !important;
      }


/* BOOTSTRAP NAVBAR OFFCANVAS CSS */
body {
  padding-bottom: 20px;
}

.navbar {
  margin-bottom: 20px;
}

.navbar-brand h1 {
  margin-left: 1rem;
  color: var(--color2)
}

.info-block {
  display: grid;
  gap: 1.5rem;
  align-items: flex-start;
  /* mobile first: single column */
  grid-template-columns: 1fr;
  margin-block: 1.75rem; /* vertical spacing for each block */
}

/* desktop/tablet: two columns */
@media (min-width: 768px) {
  .info-block.info-block--text-left {
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
  }
}