li.cursor-pointed{
	cursor:pointer;
}

/* ============================================
   DESKTOP SECTION
   ============================================ */

/* ---------- Blue Header ---------- */
header.vote-seminole-header {
  background-color: var(--scse-blue);
  border-bottom: 8px solid white;  
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-blue {
  background: #6b92c8;
  height: 8px;
  display: flex;
}

/* ---------- Primary Header Content ---------- */
.primary-header {
  padding: 0 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 0 0 auto;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  column-gap: 40px;
  row-gap: 10px;
  width: 100%;
  padding: 12px 20px;
  border-left: 1px solid var(--scse-blue);
  padding-bottom: 20px;
	flex-direction: column-reverse;
}

/* Logo and Supervisor Info */
.amy-img-title-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.img-logo {
  width: 102px;
  padding-top: 20px;
}

.scse-main-image {
  object-fit: contain !important;
  display: flex !important;
}

.supervisor-info {
  text-align: left;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.supervisor-info h3 {
  color: white;
  font-weight: 900 !important;
  text-transform: uppercase;
  font-size: clamp(28px, 5vw, 38px);
}

.supervisor-info h5 {
  color: #ff3a54;
  font-weight: 400 !important;
  text-transform: uppercase;
  margin: 0;
}

.supervisor-info p {
  color: white;
  font-size: 14.355px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

/* ---------- Desktop Navigation Menu ---------- */
.nav-menu-items #menu-mobile-menu,
.nav-menu-items .desktop-nav-menu {
  display: flex;
  margin: 0;
  column-gap: 38px;
/*   flex-wrap: wrap; */
  list-style: none;
  font-size: 0.9rem;
  color: white;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  justify-content: flex-end;
}

.nav-menu-items li {
  transition: 0.5ms all ease-in-out;
  position: relative;
}

.nav-menu-items li:hover {
  transition: 0.5ms all ease-in-out;
  color: var(--scse-red);
}

.nav-menu-items li > a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  border-bottom: 5px solid var(--scse-blue);
}

.nav-menu-items li:hover > a {
  border-bottom: 5px solid white;
}

/* Active/Current menu item styling for DESKTOP */
.nav-menu-items a.current-menu-item,
.nav-menu-items a.current_page_item,
.nav-menu-items a.current-page-ancestor,
.nav-menu-items a.current-menu-ancestor,
.nav-menu-items a.current-menu-parent,
.nav-menu-items li.current-menu-item > a,
.nav-menu-items li.current_page_item > a,
.nav-menu-items li.current-page-ancestor > a,
.nav-menu-items li.current-menu-ancestor > a,
.nav-menu-items li.current-menu-parent > a {
  color: #de6079 !important;
}

/* ---------- Desktop Dropdown Submenus ---------- */
.nav-menu-items .sub-menu {
  display: none;
  position: absolute;
  top: 157%;
	right:0;
/*   left: 0; */
  background: white;
  width: 413px;
  max-width: 90vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 8px solid var(--scse-red);
} 





.nav-menu-items > li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 70%;
  background: transparent;
}

.nav-menu-items .sub-menu::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: transparent;
}

.nav-menu-items li:hover > .sub-menu {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 96px;
  row-gap: 30px;
  padding: 20px;
}

.nav-menu-items .sub-menu li {
  width: 100%;
}

.nav-menu-items .sub-menu li:last-child {
  border-bottom: none;
}

.nav-menu-items .sub-menu li > a {
  border-bottom: none !important;
  color: #002a71;
  font-family: "Gotham Narrow";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
}

.nav-menu-items .sub-menu a {
  display: flex;
  color: #002a71;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.nav-menu-items .sub-menu a:hover {
  color: #002a71;
}

.nav-menu-items .sub-menu li:hover > a {
  border-bottom: none;
}

.nav-menu-items .sub-menu a.current-menu-item,
.nav-menu-items .sub-menu a.current_page_item {
  background: var(--scse-red);
  color: white !important;
}

/* Nested dropdown (third level) */
.nav-menu-items .sub-menu .sub-menu {
  left: 100%;
  top: 0;
  border-top: none;
  border-left: 3px solid var(--scse-red);
}

/* Dropdown indicator arrows */
.nav-menu-items .menu-item-has-children > a::after {
  content: " ▼";
  font-size: 0.7em;
  margin-left: 5px;
}

.nav-menu-items .sub-menu .menu-item-has-children > a::after {
  content: " ▶";
  float: right;
  margin-left: 10px;
}

/* ---------- Menu Items with Icons/Subtitles ---------- */
.menu-icon {
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

.menu-icon img {
  width: 43px;
  height: auto;
  object-fit: contain;
}

.menu-text {
  display: inline-flex;
  flex-direction: column;
}

.menu-subtitle {
  color: #515151;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ---------- Desktop Search & Language Section ---------- */
.search-language-header-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  background-color: white;
  border-radius: 100px;
  height: 60px;
  padding: 0 15px;
}

input[type="search"] {
  border-radius: 100px !important;
  border: 0 !important;
}

input.search-field-blue-container {
  padding: 0 10px !important;
/*   max-width: 120px !important; */
	height:45px;
  width: 100%;
}

button.search-submit-blue-container {
  padding: 0;
  background-color: transparent;
}

form.search-form {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  border-radius: 100px 0 0 100px;
  border-right: 1px solid var(--scse-blue);
  height: 60px;
}

select.goog-te-combo,
input.search-field-blue-container,
input.search-field-blue-container::placeholder {
  color: var(--scse-blue) !important;
  font-family: "Open Sans";
  font-size: 0.875rem !important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 0 !important;
}

.goog-te-gadget .goog-te-combo {
  margin: 0 !important;
  padding: 10px 15px;
  width: 100%;
  max-width: 169px !important;
}

/* Google Translate Customization */
.goog-te-combo {
  padding: 10px 15px !important;
  font-size: 12px !important;
}

.goog-te-banner-frame {
  display: none !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
  display: none;
}

.skiptranslate.goog-te-gadget span {
  display: none !important;
}

#google_translate_element .goog-te-gadget-simple {
  background-color: transparent !important;
  border: none !important;
}

#google_translate_element .goog-te-gadget-simple > span > a > span:last-child {
  display: none !important;
}

#google_translate_element .goog-te-gadget span {
  display: none !important;
}

#google_translate_element .goog-te-gadget span:first-child {
  display: inline !important;
}

.goog-te-gadget {
  color: transparent !important;
}

.goog-te-gadget-simple {
  background: none !important;
  border: none !important;
  font-size: 12px !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
  color: #313131;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* ---------- Desktop Header Controls ---------- */
.nav-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 190px;
  box-sizing: border-box;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-menu-btn {
  background: none;
  color: var(--scse-red);
  padding: 8px 15px 8px 0;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

button.desktop-menu-btn:hover {
  background: transparent !important;
  color: var(--scse-red);
}

.desktop-menu-btn .menu-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.desktop-menu-btn .menu-icon span {
  width: 34px;
  height: 5px;
  background: white;
}

/* ---------- Desktop Search Functionality ---------- */
.header-search {
  position: relative;
}

.header-search .search-form {
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: row-reverse;
}

.header-search .search-field-desktop {
  display: none;
}

.header-search .search-submit {
  background: transparent;
  border: none;
  color: var(--scse-red);
  cursor: pointer;
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.2s ease;
}

.header-search .search-submit:hover {
  transform: scale(1.1);
}

.header-search .search-submit svg {
  width: 24px;
  height: 24px;
}

.header-search input[type="search"] {
  padding: 8px 15px;
  border: none;
  border-bottom: 2px solid #333;
  background: transparent;
  width: 200px;
  font-size: 14px;
}

.header-search input[type="search"]:focus {
  outline: none;
  border-bottom-color: #1976d2;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 9999;
  padding-top: 100px;
}

.search-overlay.active {
  display: flex;
}

.search-overlay .search-container {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  position: relative;
  justify-content: center;
  display: flex;
}

.search-overlay .search-form {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-overlay .search-field-desktop {
  width: 100%;
  padding: 15px;
  border: 2px solid #333;
  border-radius: 4px;
  font-size: 16px;
  background: #f5f5f5;
  margin-right: 10px;
}

.search-overlay .search-field-desktop:focus {
  outline: none;
  border-color: #1976d2;
}

.search-overlay .search-submit {
  background: var(--scse-red);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.search-overlay .search-submit:hover {
  background: #b71c1c;
  transform: none;
}

.search-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

input[type="search"].search-field {
  border-bottom: 1px solid #333;
  border-top: none;
  border-left: none;
  border-right: none;
}

input[type="search"].search-field-desktop {
  padding: 8px 15px;
  border: none;
  border-bottom: 2px solid #333;
  background: transparent;
  width: 100% !important;
  font-size: 14px;
  border-radius: 2px;
  background: white !important;
}

/* ============================================
   MOBILE SECTION
   ============================================ */

/* ---------- Mobile Header ---------- */
.primary-mobile-header {
  display: none;
}

.logo-header-controls-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- Mobile Navigation Overlay ---------- */
.mobile-nav-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 588px;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.mobile-nav-overlay.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  background: var(--scse-blue);
  overflow: visible;
  height: 100vh;
}

.mobile-nav-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.43) 24.01%, rgba(0, 0, 0, 0) 89.11%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 126px;
  box-sizing: border-box;
}

.mobile-nav-logo img {
  height: 100%;
  max-height: 82px;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 60px !important;
}

button.mobile-close-btn:hover {
  background: transparent !important;
  color: white !important;
}

/* ---------- Mobile Menu Content ---------- */
.mobile-nav-menu {
  background: var(--scse-blue);
  height: auto;
  height: calc(100vh - 326px);
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.mobile-nav-menu::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav-menu::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-nav-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.mobile-nav-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.mobile-nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid white;
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  text-decoration: none;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 700;
  min-height: 60px;
  transition: background-color 0.2s ease;
}

.mobile-nav-menu a:hover {
  color: white;
  background-color: #172f59;
}

.mobile-nav-menu a:active {
  background: var(--scse-red) !important;
  color: white;
}

/* Active/Current menu item styling for MOBILE */
.mobile-nav-menu a.current-menu-item,
.mobile-nav-menu a.current_page_item,
.mobile-nav-menu a.current-page-ancestor,
.mobile-nav-menu a.current-menu-ancestor,
.mobile-nav-menu a.current-menu-parent,
.mobile-nav-menu li.current-menu-item > a,
.mobile-nav-menu li.current_page_item > a,
.mobile-nav-menu li.current-page-ancestor > a,
.mobile-nav-menu li.current-menu-ancestor > a,
.mobile-nav-menu li.current-menu-parent > a {
  background: var(--scse-red) !important;
  color: white !important;
  position: relative;
}

/* ---------- Mobile Dropdown Submenu (Old Method - Now Replaced by Slide Panel) ---------- */
.mobile-nav-menu .sub-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #ebe6e6;
}

.mobile-nav-menu .sub-menu li {
  background: #ebe6e6;
}

.mobile-nav-menu .sub-menu a {
  color: #333;
  background: #ebe6e6;
}

.mobile-nav-menu .sub-menu a:hover {
  background: #d5d0d0;
  color: #333;
}

.mobile-nav-menu .sub-menu.show {
  display: block;
}

.mobile-nav-menu .menu-item-has-children > a::after {
  content: " ▶";
  font-size: 0.8em;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.mobile-nav-menu .menu-item-has-children.open > a::after {
  transform: rotate(180deg);
}

/* ---------- Mobile Submenu Slide Panel (New Method) ---------- */
.submenu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 588px;
  height: 100vh;
  background: var(--scse-blue);
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.submenu-panel.active {
  transform: translateX(0);
}

.submenu-panel-header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.43) 24.01%, rgba(0, 0, 0, 0) 89.11%);
  padding: 20px;
  height: 126px;
  display: flex;
  align-items: center;
}

.submenu-back-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
}

.submenu-back-btn:hover {
  background: transparent !important;
  color: white !important;
}

.submenu-panel-content {
  padding: 0;
}

.submenu-panel-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu-panel-content li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: white;
}

.submenu-panel-content a {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  color: #002a71;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  min-height: 60px;
  transition: background-color 0.2s ease;
}

.submenu-panel-content a:hover,
.submenu-panel-content a:active {
  background: #f5f5f5;
  color: #002a71;
}

/* Icons and subtitles in submenu panel */
.submenu-panel-content .menu-icon {
  margin-right: 15px;
}

.submenu-panel-content .menu-icon img {
  width: 43px;
  height: auto;
}

.submenu-panel-content .menu-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
	font-weight: 700;
}

.submenu-panel-content .menu-subtitle {
  color: #515151;
  font-size: 14px;
  font-weight: 400;
}

/* Hide submenu arrows in slide panel */
.submenu-panel .menu-item-has-children > a::after {
  content: none;
}

/* ---------- Mobile Search Section ---------- */
.mobile-search-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 30px;
  gap: 20px;
}

.mobile-search-section .search-form {
  position: relative;
  margin: 0;
  flex: 1;
  border-radius: 0;
  background: white;
  padding: 40px 20px;
}

form.search-form-mobile {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  height: 60px;
  background: white;
  width: 100%;
  justify-content: center;
  padding: 5px 15px;
}

.mobile-search-section input[type="search"] {
  width: 100%;
  padding: 0 10px !important;
  font-size: 1rem;
}

button.search-submit {
  background: transparent !important;
  padding-left: 0;
}

::placeholder {
  color: var(--scse-blue) !important;
  font-family: "Open Sans";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none !important;
}

.mobile-language-section {
  border: 2px solid #d32f2f;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  background: white;
  min-width: 150px;
  text-align: center;
}

/* ---------- Mobile Register Button ---------- */
div#mobileNavOverlay .button-register {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 307px !important;
}

div#mobileNavOverlay .button-register a.btn.btn--primary {
  background: var(--scse-red);
  color: var(--body-white);
  text-decoration: none;
  text-align: center !important;
  font-family: "PT Serif";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 6px 22px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  max-width: 307px;
  text-align: center;
  width: 100%;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================
   UNUSED CSS (Commented Out)
   ============================================ */

/* .nav-white {
  background: white;
  height: 8px;
  display: flex;
} */

/* .mobile-nav-content {
  background: blue;
  padding: 30px 20px;
  height: 200px;
} */

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* Hide mobile overlay on desktop */
@media screen and (min-width: 1601px) {
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* Tablet and below */
@media (max-width: 1024px) {
  .supervisor-info h3 {
    font-size: 1rem;
  }

  .supervisor-info p {
    font-size: 0.875rem;
  }

  .mobile-nav-menu {
    height: calc(100vh - 340px);
  }
}

/* Mobile and below */
@media (max-width: 728px) {
  .supervisor-info h3 {
    font-size: 1rem !important;
  }

  .supervisor-info h5 {
    font-size: 15px !important;
  }

  .supervisor-info p {
    font-size: 14px !important;
  }

  .mobile-nav-menu {
    height: calc(100vh - 340px);
  }
}

/* Mobile menu breakpoint */
@media screen and (max-width: 1100px) {
  .primary-mobile-header {
    display: flex;
    flex-direction: column;
    padding: 10px 54px 0 54px;
    position: relative;
  }

  .logo-header-controls-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Supervisor Info Mobile */
  h1.hero-banner__heading {
    margin-top: 14px;
  }

  .supervisor-info-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -60px;
  }

  .supervisor-text {
    border: 1px solid var(--scse-blue);
    background-color: white;
    border-radius: 3px;
    padding: 4px 10px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-self: center;
    padding-right: 50px;
  }

  .supervisor-header-mobile {
    font-size: 23px !important;
    color: var(--scse-red);
    font-weight: 700;
    font-style: italic;
    line-height: normal;
  }

  .supervisor-p-mobile {
    font-size: 12px !important;
    color: var(--scse-blue);
    margin: 0;
  }

  .supervisor-img {
    width: 75px;
  }

  .supervisor-img img {
    margin-left: -30px;
  }

  /* Hide desktop header */
  .primary-header,
  .header-top-section {
    display: none;
  }
}

/* Small mobile */
@media screen and (max-width: 500px) {
  .primary-mobile-header {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 24px;
	  padding-bottom:0 !important;
  }

  .header-controls {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
	
	.supervisor-info h5 {
 display:none;
}
}

/* ============================================
   MISC/UTILITY STYLES
   ============================================ */

.logo-section {
  flex: 1;
  text-align: center;
  margin: 0;
}

.logo-section img {
  max-height: 100px;
  width: auto;
}
