﻿@charset "UTF-8";
/*#region font faces*/
/*#region Armata*/
@font-face {
  font-family: "Armata";
  src: url("https://cdn-endpoint-wwwroot-1.azureedge.net/lib/googleFonts/Armata/Armata-Regular.ttf") format("truetype");
}
/*#endregion*/
/*#region roboto*/
@font-face {
  font-family: "roboto-black";
  src: url("https://cdn-endpoint-wwwroot-1.azureedge.net/lib/googleFonts/Roboto/Roboto-Black.ttf") format("truetype");
}
@font-face {
  font-family: "roboto-bold";
  src: url("https://cdn-endpoint-wwwroot-1.azureedge.net/lib/googleFonts/Roboto/Roboto-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "roboto-light";
  src: url("https://cdn-endpoint-wwwroot-1.azureedge.net/lib/googleFonts/Roboto/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: "roboto-medium";
  src: url("https://cdn-endpoint-wwwroot-1.azureedge.net/lib/googleFonts/Roboto/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "roboto-regular";
  src: url("https://cdn-endpoint-wwwroot-1.azureedge.net/lib/googleFonts/Roboto/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "roboto-thin";
  src: url("https://cdn-endpoint-wwwroot-1.azureedge.net/lib/googleFonts/Roboto/Roboto-Thin.ttf") format("truetype");
}
/*#endregion*/
/*#region cinzel*/
@font-face {
  font-family: "cinzeldecorative-regular";
  src: url("https://cdn-endpoint-wwwroot-1.azureedge.net/lib/googleFonts/Cinzel_Decorative/CinzelDecorative-Regular.ttf") format("truetype");
}
/*#endregion*/
/*#endregion*/
/*#region color vars*/
/*#endregion*/
/*#region transitions/transforms*/
/*#endregion*/
/*#region sizing vars*/
/*rem defs*/
/*em defs*/
/*#endregion*/
/*#region rgba vars*/
/*#endregion*/
/* Reset default browser spacing */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Segoe UI", sans-serif;
  background-color: #ffffff;
}

/* Ensure images don't leave inline gaps */
img {
  display: block;
}

.banner {
  background-color: #000000;
  width: 100%;
  height: 335px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  top: -30px;
}

.banner h1 {
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  font-size: 3rem;
  margin: 0;
}

.banner img {
  height: 300px;
  width: auto;
  margin: 0;
}

.shortcut-section {
  background-color: white;
  padding: 10px 0;
  height: 300px;
  width: 100%;
}

.shortcut-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 100px;
}

.shortcut-item {
  flex: 1;
  text-decoration: none;
  color: black;
  transition: transform 0.2s;
}

.shortcut-item:hover {
  transform: scale(1.05);
}

.shortcut-item img {
  width: 200px; /* adjust to your prefs */
  height: auto;
  margin-bottom: 10px;
}

.shortcut-item p {
  font-size: 1.1em;
  font-weight: 600;
  margin-top: 10px;
}

#howto-logo {
  width: 240px;
}

#account-access-logo {
  width: 260px;
}

.course-start-info {
  background-color: #000000;
  color: #ffffff;
}

.helpdesk-section {
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  flex-wrap: wrap; /* Makes it responsive */
}

.helpdesk-left {
  flex: 1;
  min-width: 300px;
  margin-right: 20px; /* reduced gap to bring arrow closer */
  display: flex;
  flex-direction: column;
  align-items: center; /* center headings horizontally */
}

.helpdesk-left h1 {
  font-family: "Segoe UI", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-align: center;
}

.helpdesk-left h2 {
  font-family: "Segoe UI", sans-serif;
  font-size: 1.8rem;
  color: #AB8C3E;
  margin-bottom: 20px;
}

.arrow-image {
  width: 150px; /* adjust as needed */
  display: block;
  margin-top: 20px;
  margin-left: 0; /* ensure it hugs the right edge of the column */
  position: relative;
  top: -65px;
  left: 350px;
}

.helpdesk-right {
  flex: 1;
  min-width: 350px;
}

.course-info-section {
  background: black;
  color: white;
  padding: 40px 20px;
  width: 100%;
  font-family: "Segoe UI", sans-serif;
}

.course-info-section h2 {
  text-align: center;
  color: #AB8C3E; /* gold */
  margin-bottom: 40px;
  font-size: 32px;
}

.course-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.course-col {
  flex: 1;
}

.image-col img {
  width: 100%;
  max-width: 280px;
  border-radius: 6px;
}

.text-col h3 {
  font-family: "Segoe UI", sans-serif;
  color: #AB8C3E;
  margin-bottom: 10px;
}

.text-col ol {
  margin-left: 20px;
}

.note {
  margin-top: 15px;
  margin-bottom: 20px;
}

.highlight {
  color: #D4AF37;
  text-decoration: underline;
}

.browser-row {
  display: flex;
  gap: 50px;
  margin-top: 20px;
}

.browser-item {
  text-align: center;
}

.browser-item img {
  width: 80px;
  height: 80px; /* force a uniform box */
  object-fit: contain; /* scale while preserving aspect ratio */
  display: block;
  margin: 0 auto;
}

.indicator {
  margin-top: 8px;
  font-size: 24px;
  font-weight: bold;
}

.indicator.good {
  color: #3CB043; /* green */
}

.indicator.bad {
  color: red;
}

.course-navigation {
  background-color: #4C344A; /* JSOU Purple color */
  display: flex;
  flex-direction: column; /* stack children vertically and keep them centered */
  justify-content: center; /* center vertically */
  align-items: center; /* center horizontally */
  text-align: center; /* ensure inline text is centered */
  padding: 20px 40px;
}

.course-navigation h1 {
  color: #AB8C3E;
  font-family: "Segoe UI", sans-serif;
}

.course-navigation p {
  color: #ffffff;
}

.faq-header {
  background-color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  padding: 25px 20px;
}

.faq-header h5 {
  font-size: 38px;
  color: #4C344A; /* JSOU Purple color */
  text-align: center;
}

.faq-header p {
  font-size: 18px;
  text-align: center;
}

.faq-header img {
  width: 75px;
  height: auto;
}

.faq-header em {
  color: #AB8C3E;
}

.faq-inline {
  display: flex;
  align-items: center; /* vertically align image + text */
  gap: 10px; /* space between them */
}

.faq-inline img {
  height: 90px; /* adjust size as needed */
  width: auto;
}

.faq-inline p {
  margin: 0; /* remove default paragraph spacing */
}

.accordion {
  background-color: #ffffff;
  width: 100%;
  max-width: none;
  font-family: Arial, sans-serif;
  padding: 0 20px;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

/* Hide the checkbox */
.accordion-item input {
  display: none;
}

/* Title styling */
.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Segoe UI", sans-serif;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 8px 0;
  font-weight: 500;
}

/* Arrow indicator */
.accordion-title::after {
  content: "▾"; /* down arrow */
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.accordion-item input:checked + .accordion-title::after {
  transform: rotate(-180deg);
}

/* Content */
.accordion-content {
  font-size: 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 8px;
  color: #444;
}

/* Image container inside content */
.accordion-imgs {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.accordion-imgs img {
  flex: 0 1 45%; /* allow two images side-by-side */
  max-width: 25%;
  height: auto;
  display: block;
  border-radius: 6px;
}

@media (max-width: 600px) {
  .accordion-imgs img {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
/* Show content when checked */
.accordion-item input:checked ~ .accordion-content {
  max-height: 2000px; /* Enough for typical text */
  margin-top: 10px;
}

/* Optional hover effect */
.accordion-title:hover {
  color: #AB8C3E;
}

.ppt-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px; /* space between the two PPTs */
  flex-wrap: wrap; /* stacks on mobile */
}

.ppt-item {
  flex: 1 1 45%; /* each gets about half width */
  min-width: 300px; /* prevents collapsing */
}

.ppt-item iframe {
  width: 100%;
  height: 420px; /* adjust height */
  border: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

/* CSS-only modal for Account Access */
.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none; /* hidden until targeted */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1200;
  padding: 20px;
}

/* When targeted via fragment identifier, show the overlay and center the modal */
.modal-overlay:target {
  display: flex;
  align-items: center;
  justify-content: center;
  /* prevent the browser from scrolling the modal into view (keeps page position) */
  scroll-margin-top: 0;
}

.modal {
  background: #ffffff;
  color: #000000;
  width: min(980px, 100%);
  max-width: 980px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh; /* ensure the modal fits and stays centered */
}

.modal-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.modal-close {
  text-decoration: none;
  font-size: 28px;
  line-height: 1;
  color: #333;
  padding: 4px 8px;
}

.modal-body {
  flex: 1 1 auto;
  min-height: 0; /* allow child iframe to shrink inside flex */
}

.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Make modal full-height on smaller screens */
@media (max-width: 520px) {
  .modal {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}
/* Large desktop (1200px and up) */
@media (min-width: 1200px) {
  .arrow-image {
    width: 150px; /* adjust as needed */
    display: block;
    margin-top: 20px;
    margin-left: 0; /* ensure it hugs the right edge of the column */
    position: relative;
    top: -55px;
    left: 200px;
  }
}
/* Tablets landscape (992px to 1199px) */
@media (max-width: 1199px) {
  .arrow-image {
    display: none;
  }
}
/* Mobile (less than 576px) */
@media (max-width: 575px) {
  .course-col image-col {
    display: none;
  }
  .banner {
    background-color: #000000;
    width: 100%;
    height: 280px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    top: -30px;
  }
  .banner h1 {
    color: #ffffff;
    font-family: "Segoe UI", sans-serif;
    font-size: 3rem;
    margin: 0;
  }
  .banner img {
    height: 150px;
    width: auto;
    margin: 0;
  }
  .shortcut-section {
    background-color: white;
    padding: 10px 0;
    height: 180px;
    width: 100%;
  }
  .shortcut-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 50px;
  }
  .shortcut-item img {
    width: 95px; /* adjust to your prefs */
    height: auto;
    margin-bottom: 10px;
  }
  #howto-logo {
    width: 125px;
  }
  #account-access-logo {
    width: 137px;
  }
  .helpdesk-left h2 {
    text-align: center;
  }
  .arrow-image {
    display: none;
  }
  .browser-item img {
    width: 50px;
    height: 50px; /* force a uniform box */
  }
  .course-navigation video {
    width: 400px;
    height: 250px;
  }
  .accordion-title {
    font-size: 1.5rem;
  }
  .accordion-imgs img {
    flex: 0 1 75%;
    max-width: 75%;
  }
}
