@charset "utf-8";
/* CSS Document */
/* Begin root elements */ :root {
  /* Consolidated color definitions */
  --main-brand-blue: #0057b8;
  --main-accessible-blue: #0e4a7d;
  --main-accessible-gray: #657581;
  --main-brand-gray: #98a4ae;
  --main-accessible-orange: #C15324;
  --secondary-brand-red: #C8102E;
  --secondary-brand-blue: #0cb7e1;
  --white: #ffffff;
  --black: #25282B;
  --vertbar: #32a1ce;
  --border-ams: #78BAF27F;
  --sunflower: #ffbf47;
  --transparent: transparent;
  /* Font families */
  --font-family-system-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-system-serif: Georgia, "Times New Roman", Times, serif;
  /* Bootstrap colors */
  --bs-primary: #0057b8;
  --bs-secondary: #565d62;
  --bs-success: #198754;
  --bs-info: #3678BA;
  --bs-warning: var(--main-accessible-orange);
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  /* Grayscale colors */
  --bs-white: #fff;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #565d62;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-black: var(--black);
  /* Background and text colors */
  --bs-body-bg: var(--bs-white);
  --bs-body-color: var(--black);
  /* State colors */
  --bs-primary-hover: #004494;
  --bs-primary-focus: var(--bs-primary);
  --bs-primary-active: #0a58ca;
  --bs-primary-disabled: #0a58ca;
  --bs-secondary-hover: #5c636a;
  --bs-secondary-focus: #5c636a;
  --bs-secondary-active: #4d5358;
  --bs-secondary-disabled: #4d5358;
  --bs-info-hover: #0e4a7d;
  --bs-warning-hover: #C15324;
  /* Utility colors */
  --bs-link-color: var(--bs-primary);
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-decoration: underline;
  /* Additional color variables */
  --pullquote-border-color: #7c848a;
  --membersquote-color: #e87722;
  --membersquote-border-color: #7d7d7d;
  --search-button-border: var(--main-brand-gray);
  --search-button-bg: var(--main-accessible-gray);
  --search-button-hover-bg: var(--secondary-brand-blue);
}
/* Secondary banners with text over backgrounf images: Apply existing variables for colors, backgrounds, and text styling */
.header .position-absolute {
  color: var(--white); /* Using predefined white color for default text color */
}
.header h1 {
  background-color: var(--main-accessible-orange); /* Utilizing the accessible orange for h1 */
  padding: 0.25em; /* Padding around text for better visibility */
  display: inline-block; /* Ensures background only extends to text */
}
.header p {
  background-color: rgba(101, 117, 129, 0.6); /* Direct RGB values */
  padding: 0.5em;
}
.header .position-absolute {
  width: 100%; /* Full width */
  left: 0; /* Aligns to the left */
  bottom: 0; /* Aligns to the bottom */
  text-align: left; /* Text aligned left */
}
@media (max-width: 768px) {
  .header img {
    display: none; /* Hides the background image on mobile */
  }
  .header .position-absolute {
    color: var(--black); /* Black text on mobile for better contrast */
    background-color: var(--white); /* White background on mobile */
  }
  .header h1, .header p {
    background-color: var(--transparent); /* Transparent background for h1 and p on mobile */
    color: var(--black); /* Ensuring text is black */
  }
  .header {
    margin-top: 20px; /* Adds space above the header */
  }
}
/* End Secondary banners with text over backgrounf images */
/* Background */
.bg-primary {
  color: var(--white);
  background-color: var(--bs-primary) !important;
}
/* Button Base Styles */
.btn {
  display: inline-block;
  font-weight: 400;
  color: var(--bs-white);
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
/* Consolidated button styles */
.btn-success, .btn-danger, .btn-warning, .btn-primary, .btn-info {
  color: var(--bs-white);
}
.btn-success {
  background-color: var(--bs-success);
  border-color: var(--bs-success);
}
.btn-danger {
  background-color: var(--bs-danger);
  border-color: var(--bs-danger);
}
.btn-warning {
  background-color: var(--bs-warning);
  border-color: var(--bs-warning);
}
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.btn-info {
  background-color: var(--bs-info);
  border-color: var(--bs-info);
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-info:hover, .btn-info:focus, .btn-info:active {
  filter: brightness(90%);
}
/* Focus Visible Enhancement */
 *:focus-visible {
  --focusVisibleOutlineColor: var(--sunflower);
  --focusVisibleOutlineOffset: 2px;
  --focusVisibleOutlineAnimation: focusVisible;
  outline: 2px solid var(--focusVisibleOutlineColor);
  outline-offset: var(--focusVisibleOutlineOffset);
  animation: var(--focusVisibleOutlineAnimation) 0.2s ease;
  animation-fill-mode: forwards;
  border-radius: 4px;
}

.btn-link {
  color: #0d6efd;
  text-decoration: var(--bs-link-hover-decoration); /* Using the link hover decoration */
}
.btn-link:focus-visible {
  color: var(--bs-btn-color); /* Link color on focus */
}
.btn-link:hover {
  color: var(--bs-btn-hover-color); /* Link hover color */
}
/* Navbar centering */
.navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
}
.navbar-nav .nav-item {
  margin: 0 10px;
}
/* Typography */
body {
  font-family: var(--font-family-system-sans);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-system-serif);
}
#landingh1 {
  font-family: var(--font-family-system-serif);
  color: var(--main-accessible-orange);
  background-color: var(--transparent);
  font-weight: normal;
  font-size: 2.3em;
}
.lead {
  font-weight: 400;
}
h2.topdestinations {
  font-family: var(--font-family-system-serif);
  border-left: 3px solid var(--main-accessible-orange);
  margin-top: 15px;
  padding-left: 10px;
}
/* Link styling */
a {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}
/* Header and inspo area */
a .fa-arrow-right-long {
  color: var(--main-accessible-orange);
  background-color: var(--transparent);
}
/* Borders */
.border-ams {
  border-color: var(--border-ams) !important;
}
/* Images */
.img-responsive {
  max-width: 100%;
  height: auto;
}
/* Pull quotes */
aside .pullquote, .membersquote {
  font-style: italic;
  padding: 10px;
  margin: 20px 0;
  font-size: 1.2em;
  line-height: 1.4em;
}
aside .pullquote {
  border-top: 1px solid var(--pullquote-border-color);
  border-bottom: 1px solid var(--pullquote-border-color);
  color: var(--membersquote-color) !important;
  margin-left: 15px;
}
.membersquote {
  color: #555;
  border-left: 4px solid var(--membersquote-border-color);
  padding-left: 15px;
  font-family: 'Georgia', serif;
  background-color: #f9f9f9;
  border-radius: 8px;
}
/* Transcript link */
.transcriptlink {
  color: #0000EE;
  background-color: var(--white);
  text-decoration: underline;
  font-weight: 400;
  padding-top: 50px;
}
.transcriptlink:focus {
  outline: 3px solid var(--sunflower);
  background-color: var(--white);
}
/* Profile cards */
.profile-card-header {
  background-color: var(--main-accessible-blue);
  color: var(--white);
  text-align: center;
  padding: 5px;
  height: 60px;
}
.profile-card-header img {
  width: 100%;
  height: auto;
}
.profile-avatar {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid var(--white);
  top: -50px;
  margin-bottom: -50px;
}
.profile-card-title {
  margin-top: 20px;
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none;
    transition: none;
    scroll-behavior: auto;
  }
}
/* Breakpoints */
@media (min-width: 768px) {
  #landingh1 {
    font-size: 2.3em;
  }
}
@media (min-width: 1200px) {
  #landingh1 {
    font-size: 3.3em;
  }
}
/* Dropdown Styling */
.dropdown-megamenu {
  position: static;
}
.dropdown-menu {
  width: 100%;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--main-accessible-blue);
}
.bi {
  vertical-align: -0.125em;
  fill: currentColor;
}
.bd-mode-toggle {
  z-index: 1500;
}
.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}
/* Skip Link Styling */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--black);
  color: white;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 10px;
}
/* Custom Toggler */
.custom-toggler {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 1%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}
/* Navbar Styling */
.navbar-nav {
  width: 100%;
}
.navbar-collapse {
  display: flex;
  justify-content: space-between;
}
/* Search Form Styling */
.gsc-input {
  border-radius: 5px !important;
  min-width: 150px !important;
  width: 25vw;
  max-width: 200px;
  padding: 0.25rem;
}
@media (max-width: 576px) {
  .gsc-input {
    width: 80vw;
    border-radius: 50px !important;
  }
}
@media (min-width: 768px) {
  .gsc-input {
    width: 40vw;
    border-radius: 50px !important;
  }
}
.gsc-input-box {
  border-radius: 5px !important;
}
.gsc-search-button-v2 {
  border: 2px solid var(--search-button-border);
  background-color: var(--search-button-bg);
  border-radius: 5px !important;
}
.gsc-search-button-v2:hover {
  background-color: var(--search-button-hover-bg);
  border: 2px solid var(--search-button-bg);
}
/* Leftovers from BS3 */
.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline;
}
.pager li > a, .pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.pager li > a:focus, .pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}
.pager .next > a, .pager .next > span {
  float: right;
}
.pager .previous > a, .pager .previous > span {
  float: left;
}
.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
}
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline li {
  display: inline-block;
}
.list-inline li:not(:last-child) {
  margin-right: .5rem;
}
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well-lg {
  padding: 24px;
  border-radius: 6px;
}
.well-sm {
  padding: 9px;
  border-radius: 3px;
}

/* 2 column layout */
.two-col {
  -webkit-column-count: 2; /* For Safari and Chrome */
     -moz-column-count: 2; /* For Firefox */
          column-count: 2;
  column-gap: 1.7rem; /* Adjusts the space between columns */
}
@media (max-width: 767.98px) {
  .two-col {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}

/* 3 column layout */
.recipients {
  columns: 3;
  widows: 2;
  column-rule: 1px solid lightblue;
  column-gap: 40px;
  column-width: 200px;
}
.recipients:first-child {
  margin-top: 0;
}
