/* ============================================
   GEANNECOACH - Frontend Stylesheet
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================ */
:root {
  /* Colors - Background */
  --clr-bg-100: #f9e0f9;
  --clr-bg-200: #7c4e9a;
  --clr-bg-300: rgba(255, 255, 255, 0.8);
  --clr-bg-400: rgba(160, 160, 160, 0.9);
  --clr-bg-500: rgba(190, 190, 190, 0.9);

  /* Colors - Foreground */
  --clr-fg-100: black;
  --clr-fg-200: #333333;
  --clr-fg-300: rgba(0, 0, 0, 0.8);
  --clr-fg-400: rgba(0, 0, 0, 0.2);

  /* Colors - Accent */
  --clr-accent-100: #ab042b;
  --clr-accent-200: rgb(113, 103, 101);
  --clr-accent-300: #00d884;

  /* Colors - Menu */
  --clr-menu-bg-100: rgba(0, 0, 0, 0.5);
  --clr-menu-bg-200: rgb(16, 16, 16, 0.8);
  --clr-menu-fg-100: #ffffff;
  --clr-menu-fg-200: #ffffff;
  --clr-menu-accent: rgb(53, 146, 141);
  --clr-menu-bg-top: rgb(139, 126, 124);
  --clr-menu-bg-bottom: rgb(90, 82, 81);

  /* Colors - Other */
  --clr-border-100: #7d837a;
  --clr-img-border: rgba(255, 213, 146, 0.9);
  --clr-button-bg: rgb(0, 185, 223);
  --clr-button-fg: white;
  --clr-slideshow-bg: #000b;

  /* Font sizes */
  --fs-100: 0.7rem;
  --fs-200: 0.9rem;
  --fs-300: 1.2rem;
  --fs-400: 1.5rem;
  --fs-500: 1.9rem;
  --fs-600: 2.4rem;
  --fs-menu-100: 1.6rem;

  /* Spacing & Layout */
  --hspacer: 2em;
  --br: 0.5em;
  --default-padding: 1em;
  --page-width: 56.25rem;

  /* Navigation */
  --nav-height: 220px;
  --nav-icon-button-height: 3.75rem;
  --nav-icon-button-width: 3.75rem;

  /* Icons */
  --icon-border-clr: #000;
  --icon-border-radius: 0.3rem;

  /* Gallery */
  --gallery-img-height: 240px;
  --gallery-img-border: 2px solid #333;
  --gallery-img-outline: 4px solid #fff;

  /* Article */
  --article-background: linear-gradient(#f9e0f9, #f2c8f2);
  --article-color: #333;
}

/* ============================================
   2. FONTS
   ============================================ */
@font-face {
  font-family: "Courgette";
  src: url("/_fonts/Courgette-Regular.woff2") format("woff2");
}

/* ============================================
   3. CSS RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
dl,
dd,
figure {
  margin: 0;
}

ul[class],
ol[class],
nav ul {
  list-style: none;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}

button {
  cursor: pointer;
}

button[class] {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* ============================================
   4. BASE TYPOGRAPHY
   ============================================ */
body {
  font-family: Calibri, Geneva, sans-serif;
  font-size: var(--fs-300);
  line-height: 1.5;
  background: var(--clr-bg-500);
  color: var(--clr-fg-100);
}

h1,
h2,
h3,
h4 {
  font-family: Courgette, sans-serif;
}

h1 { font-size: var(--fs-600); }
h2 { font-size: var(--fs-500); }
h3 { font-size: var(--fs-400); }
h4 { font-size: var(--fs-400); }

code {
  font-family: monospace;
  font-size: 15px;
}

a {
  color: var(--clr-accent-100);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* ============================================
   5. UTILITY CLASSES
   ============================================ */
.small { font-size: 0.8rem; }
.right { text-align: right; }
.center { text-align: center; }
.bold { font-weight: bold; }
.txt-bigger { font-size: 1.2rem; }
.txt-smaller { font-size: 0.9rem; }
.txt-bold { font-weight: bold; }
.padding { padding: var(--padding, var(--default-padding)); }
.cursor-pointer { cursor: pointer; }

.space-between > * + * {
  margin-left: var(--hspacer, 2em);
}

.gridrow {
  display: contents;
  cursor: pointer;
}

.grid-span-row {
  grid-column: 1/-1;
}

.gridrow div {
  transition: border, background-color 0.5s ease;
}

.gridrow:hover > div {
  background: var(--clr-accent-100);
  border-top: 1px solid var(--clr-light-300);
  border-bottom: 1px solid var(--clr-light-300);
}

.flex-vert-align {
  display: flex;
  align-items: center;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-row {
  flex-direction: row;
}

.fullscreen {
  width: 100vw;
  height: 100vh;
}

.link-look {
  text-decoration: underline;
  cursor: pointer;
}

.link-look:hover,
.link-look:focus {
  text-decoration: underline;
}

/* ============================================
   6. LAYOUT
   ============================================ */
.App,
nav {
  max-width: var(--page-width);
  margin: 0 auto;
}
strong {
  font-weight: bold;
  color: var(--clr-accent-300);
}

/* ============================================
   7. COMPONENTS - Buttons & Icons
   ============================================ */
.icon-button {
  width: 2rem;
  cursor: pointer;
}

.hoverstyle {
  color: inherit;
  text-decoration: inherit;
}

.hoverstyle:hover,
.hoverstyle:focus {
  text-decoration: underline;
  color: inherit;
}

.button,
.md-button {
  display: inline-block;
  padding: 0 0.8em;
  height: 2em;
  line-height: 2em;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  background: var(--clr-button-bg);
  color: var(--clr-button-fg);
  border-radius: 4px;
}

.button:hover,
.md-button:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* ============================================
   8. NAVIGATION - Base Styles
   ============================================ */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--clr-bg-100);
  color: var(--clr-fg-100);
  background-image: url("/images/cropped-9449582-1-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 100px);
  width: 180px;
  height: 180px;
  background-image: url("/images/cropped-logo-1.png");
  background-size: 180px;
  background-position: left top;
  background-repeat: no-repeat;
  pointer-events: none;
}

nav::after {
  content: "Spiritcoach Leusden";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-family: Courgette, sans-serif;
  color: var(--clr-accent-100);
  text-shadow: 0 0 0.5em #666;
  font-size: var(--fs-500);
  text-align: center;
  padding: 0 1em 0.5em 1em;
  pointer-events: none;
}

nav a {
  color: inherit;
}

nav a:hover,
nav a:focus {
  color: var(--clr-menu-fg-100);
  text-decoration: none;
}

.menu-item-active {
  text-decoration: underline;
}

.nav-hamburger {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--nav-icon-button-width);
  height: var(--nav-icon-button-height);
  background: var(--clr-menu-bg-100);
  color: var(--clr-menu-fg-100);
  font-size: var(--fs-600);
  display: inline-block;
  padding: 0.2rem 0.8rem;
  cursor: pointer;
  z-index: 3;
}

.lang-link {
  position: absolute;
  top: 0.15rem;
  right: 3em;
  font-size: 1rem;
  color: var(--clr-accent-100);
  text-decoration: none !important;
}

.lang-link:hover,
.lang-link:focus {
  color: var(--clr-accent-100);
}

/* ============================================
   9. PAGE & SECTION
   ============================================ */
.page {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  margin-top: var(--nav-height);
  margin-bottom: 2em;
  padding: 0 1rem;
  background: var(--clr-bg-200);
  color: white;
  min-height: calc(100vh - var(--nav-height) - 2em);
}

.section {
  width: 100%;
  scroll-margin-top: var(--nav-height);
  margin: 1em 0 2em 0;
  background: var(--clr-bg-200);
}

.section-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 1em;
  padding: 1em 0;
}

.section-articles > * {
  flex-grow: 1;
}

.section-articles-border {
  border: 2px solid var(--clr-border-100);
  border-radius: var(--br);
  background: var(--article-background);
  color: var(--article-color);
  padding: 0.6em 1.2em;
}

/* ============================================
   10. ARTICLE
   ============================================ */
article {
  font-family: Calibri, Geneva, sans-serif;
}

article > * {
  margin: 1rem 0;
}

article > pre > code {
  white-space: pre-wrap;
}

.article-border {
  padding: 0.6em 1.2em 1.5em 1.2em;
  background: var(--article-background);
  border: 2px solid var(--clr-border-100);
  border-radius: var(--br);
  box-shadow: 10px 10px 15px #301635;
  margin: 0 0 1em 0;
  color: black;
}

.article-LR {
  flex-basis: 100%;
  display: grid;
  gap: 1em;
  grid-template-rows: 1fr 1fr;
  padding-bottom: 0.8em;
}

.article-fullwidth { flex-basis: 100%; }
.article-small { flex-basis: 300px; max-width: 450px; }
.article-tiny { flex-basis: 150px; max-width: 225px; }

.article-checklist > ul {
  list-style-image: url("/images/check-la.svg");
  font-size: var(--fs-300);
}

.blogtimestamp {
  background: #fffadb;
  font-size: var(--fs-200);
  padding: 0.5em 0;
}

/* ============================================
   11. BACKGROUND ELEMENTS
   ============================================ */
.backgroundcolor {
  position: relative;
  height: 150px;
  max-width: 900px;
  margin: 0 -1rem;
  border-top: 0.075rem #0a0000 solid;
  border-bottom: 0.075rem #0a0000 solid;
  display: flex;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}

.backgroundimg {
  position: relative;
  height: 55vh;
  border-top: 1px #0a0000 solid;
  border-bottom: 1px #0a0000 solid;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
}

.backgroundimg h2 {
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  text-shadow: 1px 1px 0 #444;
  font-size: 26px;
  margin: 0 1em 2em 0;
  opacity: 0.5;
  text-align: right;
}

/* ============================================
   12. MARKDOWN CONTENT
   ============================================ */
.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
  vertical-align: baseline;
}

picture {
  font-size: 0;
}

/* Markdown Images */
.md-image {
  display: block;
  border: 2px solid var(--clr-img-border);
  border-radius: 5px;
  max-width: 100%;
  width: min(var(--md-img-width, var(--md-img-base-width)), 100%);
}

.md-image-left {
  margin: 5px 15px 5px 0;
  float: left;
}

.md-image-right {
  margin: 5px 0 15px 5px;
  float: right;
}

.md-image-center {
  margin: 15px auto;
}

.img_ {
  width: 100%;
  max-height: calc(100vh - 6em);
}

/* Markdown Checklist */
ul.md-checklist {
  list-style-image: url("/images/check-la.svg");
  font-size: 25px;
}

/* Markdown Quote */
.md-quote > .par,
.md-quote > .md-p {
  font-family: serif;
  font-style: italic;
  line-height: 1.8;
  font-size: 16px;
}

.md-quote > .par::before,
.md-quote > .md-p::before {
  content: "❠ ";
  color: #666;
  display: inline-block;
  transform: rotate(180deg) scale(3);
  margin: 1em 1em 0 0.5em;
}

.md-quote > .par::after,
.md-quote > .md-p::after {
  content: " ❠";
  color: #666;
  display: inline-block;
  transform: scale(3) translateY(-0.2em);
  margin: 0 0 0 1em;
}

/* Markdown Table */
.md-table {
  border-spacing: 0;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 16px;
}

.md-table th,
.md-table td {
  padding-left: 0.5em;
  padding-right: 0.5em;
  border: 1px #666 solid;
}

.md-table th {
  background: rgba(190, 190, 190, 0.8);
}

/* Markdown Icons */
.md-icon-container {
  display: flex;
  align-items: center;
}

.md-icon-yt,
.md-icon-wp,
.md-icon-pdf,
.md-icon-unknown {
  width: 40px;
  height: 40px;
  margin: 0 0.8em 0 0;
  background-color: var(--clr-bg-100);
  background-size: cover;
  background-position: center center;
  border: 1px solid var(--icon-border-clr);
  border-radius: var(--icon-border-radius);
}

.md-icon-unknown:first-child {
  text-decoration: none;
}

.md-icon-unknown::before {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "?";
  font-size: var(--fs-400);
}

.md-icon-yt {
  border: none;
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/images/icons/youtube-100.png");
}

.md-icon-pdf {
  background-image: url("/images/icons/pdf-100.png");
}

.md-icon-wp {
  background-image: url("/images/icons/wikipedia-100.png");
}

.md-audio-title {
  font-size: 16px;
}

/* Markdown YouTube */
.md-youtube-large,
.md-youtube-medium,
.md-youtube-small {
  margin-bottom: 1.5em;
}

.md-youtube-large {
  max-width: 100%;
  max-height: 100%;
}

.md-youtube-medium { width: 450px; }
.md-youtube-small { width: 300px; }

/* ============================================
   13. GALLERY
   ============================================ */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: var(--page-width);
}

.gallery > div {
  position: relative;
  flex-grow: 1;
  background-color: var(--clr-bg-400);
  transition: all 0.4s ease-in;
}

.gallery > div.gallery-item {
  border: var(--gallery-img-border);
  border-radius: var(--br);
}

.gallery > div.gallery-item:hover {
  transform: scale(1.1);
  outline: var(--gallery-img-outline);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.gallery > div > picture > img {
  cursor: pointer;
  object-fit: contain;
}

.gallery > div > div {
  position: absolute;
  bottom: 0.6em;
  left: 0;
  right: 0;
  z-index: 2;
  color: var(--clr-bg-100);
  text-shadow: 0 0 0.2em #000;
  width: 100%;
  text-align: center;
}

.gallery-smaller {
  --gallery-img-height: 100px;
}

/* ============================================
   14. MODAL
   ============================================ */
.modal-background {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(30, 30, 30, 0.5);
}

.modal-content-no-padding {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  border: 2px solid white;
  border-radius: 6px;
  z-index: 4;
  background: rgba(30, 30, 30, 0.8);
  color: white;
  overflow: auto;
}

.modal-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  width: 50px;
  background: var(--clr-menu-bg-100);
  color: var(--clr-bg-100);
  font-family: sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 50px;
  text-align: center;
  z-index: 5;
  border-radius: 3px;
  cursor: pointer;
}

.modal-close::before {
  content: "×";
}

.modal-close:hover {
  background: var(--clr-accent-200);
}

.modal-slideshow {
  width: 800px;
  height: 800px;
}

/* ============================================
   15. SLIDESHOW
   ============================================ */
.slideshow-container {
  position: relative;
  background: var(--clr-slideshow-bg);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow-container > picture {
  width: 100%;
  height: 100%;
}

.slideshow-container > picture > img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}

.slideshow-left,
.slideshow-right {
  position: absolute;
  font-size: 3rem;
  width: 1em;
  height: 2em;
  top: calc(50% - 1em);
  border: none;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 0.2em rgba(0, 0, 0, 0.2);
}

.slideshow-left:hover,
.slideshow-right:hover {
  color: var(--clr-bg-100);
}

.slideshow-left { left: 0; }
.slideshow-right { right: 0; }

.slideshow-title {
  position: absolute;
  bottom: 2em;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--clr-bg-100);
  text-shadow: 0 0 0.2em #000;
  font-size: var(--fs-400);
}

.slideshow-navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 2em;
  align-items: center;
  justify-content: center;
}

.slideshow-navigation > div {
  width: 0.7em;
  height: 0.7em;
  border: 1px solid var(--clr-bg-100);
  border-radius: 50%;
  cursor: pointer;
  margin: 5px;
  background: var(--clr-slideshow-bg-nav, var(--clr-fg-400));
  box-shadow: 0 0 0.4em #000;
}

.slideshow-dot-cur {
  --clr-slideshow-bg-nav: var(--clr-bg-100);
}

/* ============================================
   16. POPUP
   ============================================ */
.popup .popuptext {
  visibility: hidden;
  width: 260px;
  background-color: #666;
  border: 1px solid white;
  color: #fff;
  font-size: 0.7rem;
  font-style: italic;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -180px;
}

.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 70%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.popup ul {
  padding-left: 10px;
}

.popup .show {
  visibility: visible;
  animation: fadeIn 1s;
}

div.youtube {
  background: url(images/icons/youtube-100.png) no-repeat;
  background-size: 36px;
  background-position: center;
  padding-top: 30px;
  font-size: 0.6rem;
  font-weight: bold;
  text-shadow: none;
  text-align: center;
}

div.audio {
  background: url(images/icons/play.svg) no-repeat;
  background-size: 40px;
  background-position: center;
}

.audio-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  padding: 10% 0;
}

.PI-audio {
  background: #0f0;
  width: 80%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.PI-popup-youtube {
  width: 600px;
  height: 500px;
  overflow: hidden;
}

.PI-popup-audio {
  width: 500px;
  height: 200px;
}

/* ============================================
   17. HOME PAGE
   ============================================ */
.ImgHeader {
  position: relative;
  width: 100%;
  height: 405px;
  max-width: 720px;
  background-image: url("../../images/logo/logo-400.png");
  background-size: 200px 345px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 60px auto 0 auto;
}

.ImgHeader div.leftup {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -10px;
  margin-left: -50px;
  color: #ff3198;
}

.ImgHeader div.rightdown {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: -40px;
  margin-bottom: -40px;
  color: #35928d;
}

div.leftup img { width: 330px; }
div.rightdown img { width: 310px; }

/* ============================================
   18. ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   19. MEDIA QUERIES
   ============================================ */

/* Extra small screens */
@media (max-width: 400px) {
  .md-image {
    --md-img-width: 100%;
  }
}

/* Small screens (gallery) */
@media (min-width: 400px) {
  .gallery > div > picture > img {
    height: var(--gallery-img-height, 200px);
  }
}

/* Small screens (background) */
@media (min-width: 450px) {
  .backgroundcolor {
    margin: 0 -2rem;
  }
  .backgroundcolor h2 {
    margin-left: 25px;
    font-size: 36px;
  }
}

/* Small screens (font size) */
@media (max-width: 600px) {
  :root {
    --fs-100: 0.6rem;
    --fs-200: 0.8rem;
    --fs-300: 1rem;
    --fs-400: 1.3rem;
    --fs-500: 1.6rem;
    --fs-600: 2rem;
  }
}

/* Medium screens */
@media (min-width: 640px) {
  .page {
    padding: 0 2rem;
  }

  .section {
    max-width: 900px;
    font-size: var(--fs-300);
    padding: 1px 0;
  }

  .article-LR {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .logo {
    background-position: left center;
    background-image: url("/images/logo/corien-van-zweden-1-line.svg");
  }

  .content-float-r {
    float: right;
  }
}

/* Home page - smaller screens */
@media (max-width: 700px) {
  div.leftup img { width: 200px; }
  div.rightdown img { width: 200px; }
  .ImgHeader div.leftup { margin-left: 0; }
  .ImgHeader div.rightdown { margin-right: 0; }
}

/* Mobile navigation */
@media (max-width: 799px) {
  nav > ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: var(--menu-left, -15em);
    width: 15em;
    max-width: 100vw;
    max-height: calc(100vh - 4rem);
    color: var(--clr-menu-fg-100);
    font-size: var(--fs-menu-100);
    overflow: auto;
    transition: left ease-in-out 0.3s;
    margin: 0;
  }

  nav > ul.show {
    --menu-left: 0;
    z-index: 3;
  }

  nav > ul > li,
  .submenu-li > ul > li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.2em 0;
    background: var(--clr-menu-bg-200);
    border-top: 1px solid var(--clr-menu-bg-top);
    border-bottom: 1px solid var(--clr-menu-bg-bottom);
  }

  nav > ul > li > a,
  .submenu-li > ul > li > a {
    display: block;
    width: 100%;
    padding: 0.1em 2em;
    text-decoration: none;
  }

  .submenu-li {
    background: var(--clr-menu-accent);
  }

  .submenu-li > div {
    padding: 0.1em 1em;
  }

  .submenu-li > ul {
    display: flex;
    flex-direction: column;
    margin: 0 0.8em 0.3em;
    width: calc(100% - 1.6em);
    font-size: 1.4rem;
    line-height: 2;
  }

  .lang-link {
    top: -3.6rem;
    right: -20em;
  }
}

/* Desktop navigation */
@media (min-width: 800px) {
  .nav-hamburger {
    display: none;
  }

  nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    font-size: var(--fs-menu-100);
  }

  nav::before {
    left: 2em;
  }

  nav::after {
    top: 20px;
  }

  nav > ul {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: calc(100% - 4em);
    max-width: 100vw;
    margin: 0 2em;
    font-family: Courgette, sans-serif;
    font-size: 1.2rem;
    background: darkblue;
    color: var(--clr-menu-fg-100);
  }

  nav > ul::before {
    content: "spirituele hulpverlening, coach, advies, healing en reading, reiki master";
    font-family: Courgette, sans-serif;
    font-size: 1.3rem;
    color: var(--clr-accent-100);
    text-align: center;
    position: absolute;
    top: -100px;
    left: 220px;
    width: 400px;
    height: 100%;
  }

  nav > ul > li,
  .submenu-li > ul > li {
    height: 100%;
  }

  nav > ul > li:hover,
  .submenu-active {
    text-decoration: underline;
  }

  nav > ul > li > a,
  .submenu-li > div,
  .submenu-li > ul > li > a {
    display: block;
    width: 100%;
    padding: 0.1em 1em;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
  }

  .submenu-li {
    position: relative;
  }

  .submenu-li > ul {
    position: absolute;
    right: 0;
    top: 2.8rem;
    display: none;
    cursor: pointer;
  }

  .submenu-li.hover:hover > ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    z-index: 100;
    font-size: 1.2rem;
    line-height: 1.9;
  }

  .submenu-li:hover > ul > li {
    padding: 0;
    background: var(--clr-menu-bg-100);
    border-top: 1px solid var(--clr-menu-bg-top);
    border-bottom: 1px solid var(--clr-menu-bg-bottom);
  }

  /* Menu transitions */
  .submenu-li:hover > ul > li,
  nav > ul > li {
    transition: all ease-in-out 0.2s;
  }

  .submenu-li:hover > ul > li:hover,
  nav > ul > li:hover {
    transform: scale(1.15);
    text-decoration: none;
  }
}
