@import url(https://fonts.googleapis.com/css2?family=Gideon+Roman&display=swap);
/* normalize.css */
html {
  box-sizing: border-box;
  font-size: 16px; /* Set default font size to 16px */
}

*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  background: none;
  border: none;
  padding: 0;
}

button:focus {
  outline: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none; /* for Chrome, Safari */
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; /* for Firefox */
}

/* Global font and color themes */
:root {
  --font-family: Arial, sans-serif;
  --background-color-main: #121212;
  --text-color-main: white;
  --container-background: #16213e;
  --button-background: #0f3460;
  --button-hover-background: #5b92e5;
  --border-radius: 5px;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color-main);
  color: var(--text-color-main);
}

/* Global font and color themes */
:root {
  --font-family: "Gideon Roman", serif;
  --background-color-main: #121212;
  --background-color-alternate: #5b92e5;
  --text-color-main: white;
  --text-color-alternate: #5b92e5;
  --container-background: #16213e;
  --button-background: #0f3460;
  --button-hover-background: #5b92e5;
  --border-radius: 5px;
  --header-footer-background: #333;
  --main-padding: 20px;
  --header-padding: 0.5rem 1rem;
  --header-left-padding: 150px;
  --link-hover-decoration: underline;
  --icon-size: 20px;
  --logo-size: 80px;
  --logo-font-size: 2.5rem;
  --logo-font-color: #5b92e5;
  --underline-height: 1px;
  --underline-width: 150px;
  --underline-color: #5b92e5;
  --info-block-min-width: 18vw;
  --info-block-max-width: 22vw;
  --info-block-min-height: 8vw;
  --info-icon-size: 50px;
  --heading-color: #5b92e5;
  --paragraph-line-height: 1.6;
  --button-padding: 10px 20px;
  --button-font-size: 16px;
  --input-width: 50px;
  --input-padding: 10px;
  --carousel-max-width: 500px;
  --carousel-width: 80vw;
  --thumbnail-size: 15%;
  --video-section-margin: 10px 50px;
  --video-height: calc(60vh - 50px);
  --italic-heading-color: #ffffff;
  --list-indent: 20px;
  --list-item-spacing: 10px;
  --fade-in-animation: fadeIn 2s;
}

html, body {
  height: 100%;
}

main {
  flex: 1; /* Allows main to grow and take available space */
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensure the body takes the full height of the viewport */
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--background-color-main);
  color: var(--text-color-main);
}
/* Paragraph styles */
h1,
h2,
h3,
p {
  font-family: var(--font-family);
  color: var(--text-color-main);
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5em;
}

h3 {
  font-size: 1.375rem;
  margin-top: 1.5rem;
}

h4 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 0.9rem;
  padding-bottom: 1rem;
}

/* Universal Button Styles */
.btn, button.btn, a.btn {
    font-family: var(--font-family);
    font-weight: 600;
    background-color: gold;
    color: #000000;
    padding: 15px 30px;
    margin: 0 10px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover, button.btn:hover, a.btn:hover {
    background-color: goldenrod;
}

/* Specific Styles for Back and Next Buttons */
.btn-back, .btn-next {
    display: inline-block; /* Ensure consistency */
}

/* Additional button states if needed */
/* .btn:disabled { ... } */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #1f1f1f;
}

.logo-wrapper {
  margin-left: 4rem;
  display: flex;
  align-items: center;
  flex: 0 0 auto; /* Do not grow, do not shrink, and base size on the content */
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none; /* Removes underline from link */
  color: inherit; /* Inherits the color from the parent element */
}

.logo-image {
  height: 80px;
  width: 80px;
  border-radius: 50%; /* Makes it circular */
  object-fit: cover; /* Ensures the image covers the area without stretching */
}

.logo-title {
  margin-left: 1rem;
  font-size: 3rem;
  font-weight: bold;
  display: flex;
  align-items: center; /* Centers text vertically */
}

.nav-and-toolkit {
  display: flex;
  align-items: center;
}

.navigation {
  margin-right: 4rem;
  list-style: none;
  display: flex;
  align-items: center;
}

.navigation li {
  margin-left: 20px;
  font-size: 1.25rem;
  position: relative;
}

.navigation a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  display: flex; /* Make the entire link block interactable */
  align-items: center; /* Center the caret icon and text */
  padding: 10px; /* Add padding to expand hover area */
}

.btn-login {
  background-color: #ff6f61;
  padding: 10px 20px;
  border-radius: 5px;
}

.btn-login:hover {
  background-color: #ff5a4d;
}

/* Dropdown Menu Styles */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* Ensure dropdown appears below the dropdown trigger */
  left: 0;
  background-color: #2c2c2c;
  padding: 10px;
  border-radius: 5px;
  min-width: 200px; /* Ensure dropdown content is wide enough */
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  color: #fff;
  display: block;
  padding: 5px 10px;
}

.dropdown-content a:hover {
  background-color: #1f1f1f;
}

/* Mobile Styles for Extra Small Devices (e.g., ~412px width, below 576px) */
@media (max-width: 575.98px) {
  .site-header {
    position: relative; /* Allow absolute positioning of children */
    padding: 10px 10px; /* Adjust padding as needed */
    flex-wrap: wrap;
  }

  .logo-wrapper {
    /* Move the logo slightly to the right so it doesn't clash with the toggle */
    margin-left: 3rem;
  }
  
  .logo-image {
    height: 50px;
    width: 50px;
  }
  
  .logo-title {
    font-size: 1.5rem;
    margin-left: 0.5rem;
  }

  /* Hide the main navigation on extra-small screens */
  .navigation {
    display: none;
  }
  
  /* Reposition the mobile menu toggle to the left side */
  .mobile-menu-toggle {
    position: absolute;
    left: 10px;    /* Place 10px from the left edge */
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    display: block; /* Ensure it's visible */
  }
  .mobile-footer-extra {
    padding-top: 20px;
    border-top: 1px solid #444;
  }
  .mobile-footer-extra h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .mobile-footer-extra ul {
    list-style: none;
    padding: 0;
  }
  .mobile-footer-extra li {
    margin-bottom: 10px;
  }
  .mobile-footer-extra a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
  }
  .mobile-footer-contact h4 {
  font-size: 1.2rem;
  margin-top: 0.5rem;
  margin-bottom: 0rem;
  }
  .mobile-footer-contact {
    padding-bottom: 25%;
  }
  .mobile-footer-contact p {
    font-size: 1rem;
  }

  /* QUICK LINKS */
  .mobile-footer-links {
    position: relative;
  }

  .mobile-footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    cursor: pointer;  /* Indicate clickable */
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-footer-links li a {
    font-size: 0.9rem;
  }
}

/* Mobile Styles for Small Devices (576px – 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .site-header {
    position: relative;
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  
  .logo-wrapper {
    margin-left: 3rem;
  }
  
  .logo-image {
    height: 60px;
    width: 60px;
  }
  
  .logo-title {
    font-size: 2rem;
    margin-left: 0.75rem;
  }
  
  .navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-size: 1.75rem;
    color: #fff;
    cursor: pointer;
    display: block;
  }
}

/* Tablet / Medium Devices (768px – 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .site-header {
    padding: 15px 20px;
    flex-wrap: nowrap; /* Typically enough room for all items */
  }
  .logo-wrapper {
    margin-left: 2rem;
  }
  .logo-image {
    height: 70px;
    width: 70px;
  }
  .logo-title {
    font-size: 2.5rem;
    margin-left: 1rem;
  }
  /* Show the navigation menu on tablets */
  .navigation {
    display: flex;
    margin-right: 2rem;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu Container - Hidden off-canvas by default */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -250px; /* Off-canvas position */
  width: 250px;
  height: 100%;
  background-color: #1f1f1f;
  z-index: 1100; /* Higher than header */
  transition: left 0.3s ease;
  overflow-y: auto;
}

/* When active, slide into view */
.mobile-menu.open {
  left: 0;
}

/* Mobile Menu Content */
.mobile-menu-content {
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Close Icon Styles */
.mobile-menu-close {
  text-align: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
  margin-bottom: 20px;
}

/* Mobile Menu List Styles */
.mobile-menu ul {
  flex: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 20px;
}

.mobile-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050; /* Under mobile menu (1100) */
  display: none; /* Hidden by default */
}

/* Show the overlay when the menu is open */
body.mobile-menu-open .mobile-menu-overlay {
  display: block;
}

.mobile-footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
/* Footer Styles */
.site-footer {
  flex-shrink: 0; /* Ensures footer stays at the bottom */
  margin-top: auto; /* Pushes the footer to the bottom when there's extra space */
  background-color: #1f1f1f;
  color: white;
  padding-top: 1rem;
  width: 100%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 50px;
}

.footer-extra {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 50px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: #141414;
}

.footer-about, .footer-links, .footer-contact {
  max-width: 30%;
  margin-bottom: 20px;
}

.footer-about p, .footer-contact p {
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0; /* Remove default list padding */
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.social-media a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
}

.social-icons {
  text-align: center;
  margin-bottom: 1rem; /* Adds space below the icon links */
  width: 100%;
}

.social-icons a {
  color: white; /* Sets the icon color */
  margin: 0 10px; /* Adds space between icon links */
  font-size: 1.5rem; /* Sets the size of the icons */
  display: inline-block; /* Aligns icons in line */
}

.social-icons a:hover,
.social-icons a:focus {
  color: #5b92e5; /* Change color on hover/focus for visual feedback */
  text-decoration: none; /* Removes underline from links */
}


/* Extra Small Devices (e.g., ~412px width, less than 576px) */
@media (max-width: 575.98px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .footer-extra {
    display: none;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-about p,
  .footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer-links ul li {
    margin-bottom: 8px;
  }
  .footer-links ul li a {
    font-size: 14px;
  }
  .social-media a {
    font-size: 18px;
    margin-right: 8px;
  }
}

/* Small Devices (576px – 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px;
  }
  /* Have two items per row, center-aligned */
  .footer-about,
  .footer-links,
  .footer-contact {
    max-width: 45%;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-about p,
  .footer-contact p {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .footer-links ul li a {
    font-size: 15px;
  }
  .social-media a {
    font-size: 18px;
    margin-right: 8px;
  }
}

/* Medium Devices (768px – 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-around;
    padding: 40px;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    max-width: 30%;
    text-align: left;
    margin-bottom: 20px;
  }
  .footer-about p,
  .footer-contact p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .footer-links ul li {
    margin-bottom: 10px;
  }
  .footer-links ul li a {
    font-size: 16px;
  }
  .social-media a {
    font-size: 20px;
    margin-right: 10px;
  }
}
/* Normalize CSS */

/* Google Font Import */

/* Modular CSS Files */

/* Universal Styles */

.universal-container {
  background-color: var(--container-background);
  padding: 20px; /* A common padding, adjust based on your design */
  border-radius: var(--border-radius);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* A moderate shadow for depth */
  margin: auto; /* Center the container */
  box-sizing: border-box; /* Include padding in the container's total width */
}

/* Tab Styles */
.tab-button {
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--heading-color);
  text-align: left;
  border-left: 4px solid transparent;
  margin-bottom: 2px;
  transition:
    background-color 0.3s,
    border-left 0.3s;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 150px;
  box-sizing: border-box;
}

.tab-button:not(:last-child) {
  border-bottom: 1px solid #ffffff30; /* Specific color for this section */
}

.tab-button:hover,
.tab-button.active {
  background-color: var(--container-background);
  border-left: 4px solid var(--heading-color);
}

.tab-button.active {
  color: var(--text-color-main);
  background: rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--heading-color);
  margin-left: -4px; /* Specific margin for this section */
}
