﻿@charset "UTF-8";
:root {
  --navy: #002B5C;
  --navy-dark: #001a38;
  --navy-mid: #003d82;
  --ice: #E8F4FD;
  --ice-dark: #c8e4f5;
  --steel: #8BA7C7;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --text: #1a2a3a;
  --muted: #5a7a9a;
  --accent: #1a7fd4;
  --accent-light: #3d9be8;
  --gold: #C8A84B;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,43,92,0.10);
  --shadow-lg: 0 12px 48px rgba(0,43,92,0.18);
}

/* Sticky navbar transition */
#mainNav {
  transition: background 0.3s ease, padding 0.3s ease;
  padding: 15px 0;
  border-bottom: 1px solid #e5e7eb;
  padding: 0px 15px 0px 15px;
  color: #000000 !important;
  height: 6rem;
  align-items: center;
  line-height: 2rem;
  width: 100%;
  background-color: white !important;
  border-bottom-color: lightgray;
  border-bottom: inset;
  border-width: 2px;
  z-index: 1000;
}
#mainNav.scrolled {
  background: white !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
#mainNav a.nav-link {
  color: #000 !important;
  letter-spacing: 0.25px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}
#mainNav a.nav-link:hover {
  color: #0dcaf0 !important;
}
#mainNav a.nav-link.active {
  color: #0dcaf0 !important;
}

#adminNav {
  transition: background 0.3s ease, padding 0.3s ease;
  padding: 0px 100px 0px 15px;
  color: #0dcaf0 !important;
  height: 3rem;
  align-items: center;
  line-height: 2rem;
  width: 100%;
  background-color: black !important;
  z-index: 1001;
}
#adminNav a.nav-link {
  color: #0dcaf0 !important;
  letter-spacing: 0.25px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background-color: black !important;
}
#adminNav a.nav-link:hover {
  color: orangered !important;
}
#adminNav a.nav-link.active {
  color: orangered !important;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%; /* below the parent menu item */
  left: 0;
  color: #0dcaf0 !important;
  height: 3rem;
  align-items: center;
  line-height: 2rem;
  width: 100%;
  background-color: black !important;
  border-color: black;
  min-width: 180px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid #ddd;
  z-index: 1052;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.submenu-item {
  display: block;
  padding: 3px 3px;
  text-decoration: none;
  color: #000000 !important;
  background-color: white !important;
  letter-spacing: 0.25px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.submenu-item:hover {
  color: orangered !important;
}
.submenu-item.active {
  color: orangered !important;
}

.dropdown-hover {
  position: relative;
}
.dropdown-hover:hover > .submenu {
  display: block;
}
.dropdown-hover > .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  color: #0dcaf0 !important;
  background-color: black !important;
  letter-spacing: 0.25px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  min-width: 180px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid #ddd;
  z-index: 999;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
}
.dropdown-hover .level-1 {
  top: 100%;
  left: 0;
  width: 200px;
}

.dropdown-hover-right {
  position: relative;
}
.dropdown-hover-right:hover > .submenu {
  display: block;
}
.dropdown-hover-right > .submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  color: #0dcaf0 !important;
  background-color: black !important;
  letter-spacing: 0.25px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  min-width: 180px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid #ddd;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.dropdown-hover-right .level-2 {
  top: 0;
  left: 100%;
}

.has-admin-nav #mainNav {
  margin-top: 3rem; /* adjust to match adminNav height */
}

.icon-wrapper {
  display: inline-block;
}

.icon-btn {
  border: none;
  outline: none;
  border-radius: 50%;
  overflow: hidden;
  width: 32px;
  height: 32px;
  background-color: white;
  padding: 0;
  position: relative;
  cursor: pointer;
}
.icon-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.icon-btn:hover img {
  animation: loopUpDown 0.4s ease forwards;
}
.icon-btn:not(:hover) img {
  animation: loopDownUp 0.4s ease forwards;
}

/* Keyframes for moving up and reappearing from below */
@keyframes loopUpDown {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-60%);
    opacity: 0;
  }
  60% {
    transform: translateY(120%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes loopDownUp {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(120%);
    opacity: 0;
  }
  60% {
    transform: translateY(-60%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*Overlay Container*/
.overlay-container {
  position: relative;
  display: inline-block;
}

.big-letter {
  font-size: 100px; /* make W big */
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08); /* faded background look */
  position: relative;
  z-index: 1;
  line-height: 1; /* remove extra spacing */
}

.text-overlay {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #000; /* overlay text color */
  z-index: 2;
  white-space: nowrap; /* ✅ keeps it on one line */
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .big-letter {
    font-size: 120px;
  }
  .text-overlay {
    font-size: 28px;
  }
}
.orange-btn {
  background-color: orange !important;
  border-color: orange !important;
  color: white !important; /* for the text or icon */
}
.orange-btn:hover {
  background-color: darkorange !important;
  border-color: darkorange !important;
}

.red-btn {
  background-color: red !important;
  border-color: red !important;
  color: white !important; /* for the text or icon */
}
.red-btn:hover {
  background-color: darkred !important;
  border-color: darkred !important;
}

.blue-btn {
  background-color: blue !important;
  border-color: blue !important;
  color: white !important; /* for the text or icon */
}
.blue-btn:hover {
  background-color: darkblue !important;
  border-color: darkblue !important;
}

.green-btn {
  background-color: green !important;
  border-color: green !important;
  color: white !important; /* for the text or icon */
}
.green-btn:hover {
  background-color: darkgreen !important;
  border-color: darkgreen !important;
}

.lightblue-btn {
  background-color: lightblue !important;
  border-color: lightblue !important;
  color: white !important; /* for the text or icon */
}
.lightblue-btn:hover {
  background-color: darkblue !important;
  border-color: darkblue !important;
}

.purple-btn {
  background-color: #7431fa !important;
  border-color: #7431fa !important;
  color: white !important; /* for the text or icon */
}
.purple-btn:hover {
  background-color: darkslateblue !important;
  border-color: darkslateblue !important;
}

.red-background {
  background-color: #d3f6d9;
}

.blue-icon {
  background-color: blue !important;
  border-color: blue !important;
  color: white !important;
}

section {
  scroll-margin-top: 90px;
}

/* ─── Utility ─── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--steel);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Bebas Neue", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

/* ─── Common Section ─── */
.commonSection {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.commonSectionOffWhite {
  padding: 60px 0;
  position: relative;
  z-index: 1;
  background: var(--off-white);
}

.commonSection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

/* Tablet */
@media (max-width: 992px) {
  .commonSection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile */
@media (max-width: 576px) {
  .commonSection-grid {
    grid-template-columns: 1fr;
  }
}
.wh-btn {
  flex: 1;
  padding: 11px;
  border-radius: 10px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.wh-btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(0, 43, 92, 0.2) !important;
}

.wh-btn-outline:hover {
  background: var(--ice);
}

.wh-btn-primary {
  background: var(--navy);
  color: white;
}

.wh-btn-primary:hover {
  background: var(--accent);
}

.wh-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.navbar-toggler:checked ~ .nav-scrollable {
  display: block;
}

/* Show submenu on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

/* Custom styling for your dropdown */
.custom-dropdown {
  border-radius: 0 !important; /* remove rounded corners */
  /*margin-top: 10px !important;  push dropdown lower */
  border-top: 3px solid #0dcaf0 !important; /* top border (light gray) */
  /* Submenu hover effect */
  /* Hover effect for dropdown items (NavLink) */
  /* If you want hover to also work on the active item */
}
.custom-dropdown .custom-dropdown .dropdown-item:hover,
.custom-dropdown .custom-dropdown .dropdown-item:focus {
  color: #0dcaf0 !important; /* text color */
  /*background-color: lightgray !important;*/ /* remove Bootstrap bg */
  padding-left: 1.5rem !important; /* shift right */
  transition: all 0.2s ease !important;
}
.custom-dropdown .custom-dropdown .dropdown-item.active:hover {
  color: #0d6efd !important;
}

/* Optional: keep dropdown aligned nicely */
.navbar-nav .dropdown-menu {
  margin-top: 0px;
}

#navbarCollapse {
  background-color: white;
  z-index: 1000;
}

@media (max-width: 767.98px) {
  #navbarCollapse {
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    overflow-x: hidden;
  }
}
