html, body {
    margin: 0;
    padding: 0;
    font-family: "lores-12", sans-serif;
        font-size: 22px;
        line-height: normal;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    color: var(--Purple, #4B355D);
    transition: font .3s;
    overflow-x: hidden;
}

body {
 background-color: #FFE3E0;   
}

img {
    max-width: 100%;
    height: auto;
    z-index: 10;
    line-height: 0;
}

iframe {
    position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    width: 100%;
    height: 100%;
    
  }

a {
    color: inherit;
}

a.nodec {
    text-decoration: none;
}

.uppercase {
    text-transform: uppercase;
}

.header {
    position: sticky;
        top: 0;
        left: 0;
    width: 100%;
    display: inline-flex;
        justify-content:space-between;
        align-items:baseline;
        gap: 2em;
        flex-wrap: wrap;
    padding: 1em;
    box-sizing: border-box;
    line-height: 0;
    z-index: 99;
}

    .header #leftMenu, .menu {
        display: inline-flex;
            align-items: center;
            gap: 1em;
    }

    .menu svg {
      max-height: 1em;
      width: inherit;
      padding: 0 0.2em;
    }

    .logo-icon {
        display: none;
    }

    .header a {
        color: #FFE3E0 !important;
    }

    .pageTitle {
        width: 100%;
        margin: 0;
    }

    .logo {
        font-size: 1.5em;
        font-family: "lores-9-narrow", sans-serif;
        font-style: normal;
        font-weight: 400;
        margin: 0;
        line-height: 1em;
    } /* based on H2 */

    #NKH, #NKH svg {
        width: inherit;
        max-height: 1.6em;
    }

.spacer {
    width: 100%;
    height: 2em;
}
/* Font Styles -------------- */
h1 {
    font-size: 2em;
    font-family: "lores-9-plus-wide", sans-serif;
    font-style: normal;
    font-weight: 710;
    line-height: 1em;
    text-transform: uppercase;
    margin: 1.6em 0 1em;
}

h2 {
    font-size: 1.5em;
    font-family: "lores-9-narrow", sans-serif;
    font-style: normal;
    line-height: 1em;
    font-weight: 400;
    margin: 1.6em 0 0;
}

h3 {
    font-size: 1.3em;
    font-family: "lores-15", sans-serif;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin: 1.6em 0 1em;
}

p, li {
    font-size: 1em;
    font-family: "lores-21-serif", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.45em;
    margin: 1em 0;
}

ul {
  padding-left: 1em;
  margin-bottom: 1.8em;
}

figure {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

.inlineFigure {
    margin: 2em 0;
    padding: 0 2em;
    width: inherit;
} 

.caption {
    font-size: 0.8em;
    font-family: "lores-9-narrow", sans-serif;
    color: var(--Wonka-Purple, #6E3CB0);
}

/* End Font Styles -------------- */

/* Formatting -------------- */
article, .info {
    margin: 0 auto;
    max-width: 36.3em;
    padding: 0 1em 2em;
    z-index: 999;
}
ul.grid {
    list-style-type: none ;
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    margin: 1em;
    padding: 0;
    gap: 1em;
}

ul.grid li {
    margin: 0 0 2em;
}

ul.grid p {
    margin: 0.25em 0 0;
}

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

#social {
    list-style-type: none;
    padding-left: 0;
    display: inline-flex;
    justify-content: baseline;
    gap: 1.6em;
}
    #social li img {
        width: 2em;
        height: 1.5em;
    }

/* End Formatting -------------- */

/* Color Styles -------------- */

.rocketRed {color: #F84467;}
.marigold   {color: #F7A04B;}
.purple {color:#4B355D;}
.wonkaPurple {color: #6E3CB0;}

.purple-bk {
    background-color: #4B355D;
    color: #FFE3E0;
}

.pink-bk {
    background-color: #FFE3E0;
    color: #4B355D;
}

/* End Color Styles -------------- */

/* Marker Styles -------------- */

.container {
    width: auto;
    min-width: 100vw;
    height: 100vh;
    display: block;
    min-height: 100vh;
    position: relative;
        top: 0;
        left: 0;
    box-sizing: border-box;
    z-index: 999;
    overflow: hidden;
}

.renderContainer {
    position: relative;
        top: 0;
        left: 0;
    margin: 0;
    line-height: 0;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
        background-repeat:no-repeat;
        background-size:cover;
        background-position:center;
}

.render {
    max-width: inherit!important;
    width: auto;
    max-height: 100%;
    height: 100vh!important;
    overflow: hidden;
}

.popup {
    display: none;
    max-width: calc(100% - 100px); /* Ensure the block fits within the viewport width */
    max-height: calc(100vh - 100px);
    min-width: 13.6em;
    width: 27.2em;
    position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    padding: 1em 2em 2em;
    box-sizing: border-box;
    border: 4px solid #F7A04B;
    background-color: #FFF;
    z-index: 999;
  }
  
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(75, 53, 93, 0.25);
    z-index: 998; 
  }

button {
    display: inline-flex;
    width: auto;
    height: 2.2em;
    padding: 0.45em 0.9em;
        justify-content: center;
        align-items: center;
    border: 2px solid var(--Rocket-Red, #F84467);
    box-sizing: border-box;

    color: #F84467;
    background: #FFF;
    cursor: pointer;
    
    font-family: "lores-12-narrow", sans-serif;
    font-size: 0.8em;
    font-style: normal;
    font-weight: 400;
    line-height: 0;
    letter-spacing: 20%;
    text-transform: uppercase;
}

button.marigold {
    color:#F7A04B;
    border: 2px solid #F7A04B;
}

.marker {
    position: absolute;
    cursor: pointer;
}

.markerDot {
    position: absolute;
    content: '';
    background-color: white;
    border-radius: 26px;
        width: 26px;
        height: 26px;
    transform: translate(-13px, -13px);
    box-shadow: 0px 0px 10px 20px rgba(255, 255, 255, .5);
    transition: box-shadow 0.5s;
    cursor: pointer;
}

.markerDot:hover {
    box-shadow: 0px 0px 10px 10px rgba(255, 255, 255, .5);
}

.closeButton {
    cursor: pointer;
}

/* End Marker Styles -------------- */

details {
    border-top: 1px solid #4B355D;
    padding: 1em 0.6em;
    
 }

details:last-child {
    border-bottom: 1px solid #4B355D;
    margin-bottom: 1.8em;
}

details > summary {
    cursor: pointer;
    list-style-type: none;
    -webkit-user-select: none; /* Chrome/Safari */ 
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+ */
    -o-user-select: none;
    user-select: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

details > summary::before {
    content: url(/assets/icons/icon-arrow.svg);
    padding-right: 0.6em;
}

details[open] > summary::before {
    content: url(/assets/icons/icon-arrow-close.svg);
}

/* Media Queries */

@media (max-width: 1250px) {
    html, body {
        font-size: 18px;
    }
    ul.grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (orientation: portrait) {
    html, body {
        font-size: 16px;
    }

    #NKH, .logo, .icon-text {
        display: none;
    }
    
    .header {
        position: sticky;
            top: 0;
            left: 0;
        gap: 1em;
    }

    #leftMenu {
        display: inline-flex;
        justify-content: center;
    }

    .logo-icon {
        display: inline;
    }


    .menu {
        gap: 1.8em;
    }

    .menu svg {
        max-height: inherit;
    }

    .popup {
        padding: 1em 1em 2em 1.3em;
    }
  }


  @media (max-width: 500px) {
    header svg {
        max-height: 36px;
    }
    .popup {
        max-width: calc(120% - 100px);
    }
}
