﻿/* Define the palettes as maps */
/* Mixin to generate CSS custom properties from a color map */
/* Apply themes as classes */
.light-mode {
  --hero-color: rgb(11, 70, 80);
  --hero-contrast: rgb(80, 21, 11);
  --inverse-hero: white;
  --inverse-contrast: #151515;
  --plain-text: black;
  --bg-color: white;
  --inverse-text-color: white;
  --highlight1: rgba(11, 70, 80, 0.2);
  --highlight2: rgba(11, 70, 80, 0.15);
  --highlight3: rgba(11, 70, 80, 0.1);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(11, 70, 80, 0.2);
  --cta-block-2-bg: rgba(11, 70, 80, 0.15);
  --cta-block-3-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg-2: rgba(11, 70, 80, 0.1);
  --tinted-bg-3: rgba(11, 70, 80, 0.2);
  --complimentary70: rgb(80, 21, 11);
  --thumbnail-background: rgba(0, 0, 0, 0);
  --sidebar-bg: rgba(255, 255, 255, 0.4);
  --edge-fade-color: #e8ecec;
}

.dark-mode {
  --hero-color: white;
  --hero-contrast: rgba(179, 47, 25, 0.7);
  --inverse-hero: rgb(11, 70, 80);
  --inverse-contrast: rgb(80, 21, 11);
  --plain-text: white;
  --bg-color: rgb(85, 85, 85);
  --inverse-text-color: rgb(11, 70, 80);
  --highlight1: rgba(165, 231, 243, 0.8);
  --highlight2: rgba(165, 231, 243, 0.75);
  --highlight3: rgba(165, 231, 243, 0.7);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(165, 231, 243, 0.8);
  --cta-block-2-bg: rgba(165, 231, 243, 0.75);
  --cta-block-3-bg: rgba(165, 231, 243, 0.7);
  --tinted-bg: rgba(11, 70, 80, 0.7);
  --tinted-bg-2: rgb(72, 114, 121);
  --tinted-bg-3: rgb(72, 114, 121);
  --complimentary70: rgba(179, 47, 25, 0.7);
  --thumbnail-background: white;
  --sidebar-bg: rgba(0, 0, 0, 0.5);
  --edge-fade-color: #254951;
}

.organisation-page-heading-container {
  text-align: center;
  font-size: 3rem;
  color: var(--hero-color);
  text-shadow: 2px 2px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 8px;
}

.org-structure-container {
  padding-top: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: 500px;
  margin-right: 500px;
  text-align: center;
  background-color: var(--tinted-bg-3);
}
@media (max-width: 1600px) {
  .org-structure-container {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media (max-width: 1050px) {
  .org-structure-container {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .org-structure-container {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.org-structure-container h2 {
  color: var(--hero-color);
  font-size: 2rem;
}

.org-page-content-container {
  padding-top: 32px;
  padding-bottom: 64px;
  padding-left: 500px;
  padding-right: 500px;
  font-size: 1.5rem;
  text-align: center;
}
@media (max-width: 1600px) {
  .org-page-content-container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1050px) {
  .org-page-content-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .org-page-content-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 600px) {
  .organisation-page-heading-container {
    font-size: 1.5rem;
  }
  .org-structure-container {
    display: none;
  }
}
