/* ------------------------------------
   Define Variables
------------------------------------ */
:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --yellow: #FFFF19;
  --fontSize: 20px;
  --lineHeight: 26px;
}

/* ------------------------------------
   Define Fonts
------------------------------------ */

@font-face {
  font-family: 'Saxmono';
  src: url('fonts/saxmono.ttf');
}

@font-face {
  font-family: 'Luxi Mono Regular';
  src: url('fonts/Luxi-Mono/luximr.ttf');
}

/* ------------------------------------
   Global Styles and Transitions
------------------------------------ */
body,
footer,
h1,
h2,
h3,
a,
li,
:active,
:focus {
  transition: all 0.8s;
}

/* ------------------------------------
   Body Styles
------------------------------------ */
body {
  font-family: "Saxmono", monospace;
  font-size: var(--fontSize);
  line-height: var(--lineHeight);
  margin: 0 auto;
  max-width: 100%;
  background-color: whitesmoke;
  overflow-wrap: break-word;
  overflow-x: hidden;
  animation: fadeInAnimation linear 0.4s 1 forwards;
}

/* ------------------------------------
   Heading Styles (H1, H2, H3)
------------------------------------ */
h1,
h2,
h3{
  margin-left: 0;
  margin-top: 0;
  padding: 12px 0 0 4px;
/*  background-color: rgb(1, 2, 2);*/
  color: whitesmoke;
}

h1,
h1 a {
  font-size: var(--lineHeight);
  font-weight: bold;
}

/* ------------------------------------
   List Styles (UL, LI)
------------------------------------ */
ul {
  background-color: transparent;
  color: black;
  list-style-type: none;
  min-width: 100%;
  margin: 0;
  padding: 0;
}

ul li {
  word-wrap: break-word;
}

/* ------------------------------------
   Anchor Styles (A)
------------------------------------ */
a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: black;
  border-bottom: 10px;
  letter-spacing: 1px;
}


.caption {
  font-size: 10px;
  text-align: right;
  margin-right: 1em;
}

.my-link::after{ 
  content: "\2B91";
  display: flex;
  margin-right:0;
  position: relative;
   font-style: normal;
  font-size: 0.2em;
   margin:0px 0px 0px 10px;
   text-decoration:none;
  color: black;
  background:transparent;
  font-weight: bold;
  padding-right: 1em;
  align-items: center; 
} 

.entry:hover .my-link::after{ 
  content: "\2B91";
  display: flex;
  margin-right:0;
  position: relative;
  font-style: normal;
  font-size: 0.2em;
  margin:0px 0px 0px -10px;
  text-decoration:none;
  color: yellow;
  background: black;
  font-weight: bold;
  padding-right: 1em;
  align-items: center; 
} 

/* ------------------------------------
   Footer Styles
------------------------------------ */
footer {
  margin: 0 auto;
  padding-top: 2em;
  text-align: center;
  color: black;
}

footer.short-page {
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  left: 0;
}

.pfooter {
  color: black;
  background-color: whitesmoke;
  padding: 10px 0;
}

a.footer {
  background-color: black;
  color: whitesmoke;
  padding: 0.2em;
}

a.footer:hover {
  background-color: whitesmoke;
  color: black;
}

/* ------------------------------------
   LightLink Styles
------------------------------------ */
.lightLink {
  color: whitesmoke;
  text-decoration: none;
}

.lightLink:hover {
/*  color: black;*/
  text-decoration: none;
  padding: 0;
  line-height: normal;
  letter-spacing: normal;
  margin: 0 auto;
}

/* ------------------------------------
   Audio Styles
------------------------------------ */
.audio {
  height: 2em;
  margin: 0 auto;
}

.audio-pool {
  margin: 0 auto;
  max-width: 800px;
  padding: 2em 1em 4em 1em;
  background-color: mediumspringgreen;
  color: darkturquoise;
  opacity: 0.9;
}

#audio-iframe {
  margin: 0 auto;
  width: 100%;
  min-height: 200px;
  overflow: hidden;
  border: none;
  padding: 1em 0;
  background-color: darkturquoise;
}

#altizeme{
  padding:0;
  text-decoration: underline;
}
/* ------------------------------------
   Entry Styles
------------------------------------ */
.entry {
  background-color: transparent;
  display: inline-flex;
  min-width: 100%;
  transition-duration: 0.2s;
  letter-spacing: -0.05em;
  line-height: calc(var(--lineHeight) - 0.1em);
  max-width: calc(100% - 3em);
}

li.entry {
  display: inline-flex;
  padding-top: 0.2em;
}

.entry:hover {
  background-color: yellow;
  display: inline-flex;
  color: black;
  transition-duration: 0.4s;
  letter-spacing: 0.01em;
  text-align: left;
  max-width: calc(100% - 3em);
}

/* ------------------------------------
   Title Styles
------------------------------------ */
.title {
  flex-shrink: 1;
  overflow-wrap: break-word;
  margin-top: calc(var(--fontSize) / 4);
  text-align: left;
  max-width: calc(100% - 2em);
/*  transition-duration: 0.6s;*/
}

.title:hover {
/*  transition-duration: 0.6s;*/
}

/* ------------------------------------
   Li-More Styles
------------------------------------ */
.li-more {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  color: yellow;
  background-color: rgb(1, 2, 2);
  margin: 0;
  display: none;
  height: 0;
  width: 0;
}

.li-more span {
  word-wrap: break-word;
  padding: 0 0 0em 1em;
  flex-shrink: 20;
  text-align: center;
}

.entry:hover .li-more {
  transition-duration: 0.8s;
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: row;
  letter-spacing: 0.06em;
  font-size: 12px;
  margin-top: 0;
  opacity: 1 !important;
  width: 100%;
  height: auto;
}

/* ------------------------------------
   Link and Hover Styles
------------------------------------ */
.link,
.my-link {
  text-decoration: none;
  font-size: 2em;
  font-weight: 100;
  margin-bottom: 0;
  margin-top: 5px;
  display: inline-flex;
}

.link:hover,
.my-link:hover {
  pointer-events: auto;
}

/* ------------------------------------
   Animations
------------------------------------ */
@keyframes fadeIn {
  0% {
    opacity: 0;
    width: 0;
    max-height: 0;
    letter-spacing: 0em;
  }
  50% {
    max-height: 1em;
  }
  100% {
    opacity: 1;
    max-height: 5em;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    max-height: 0;
  }
  100% {
    opacity: 1;
    max-height: 2em;
  }
}

/* ------------------------------------
   Grid Layout
------------------------------------ */
.item1 {
  margin: 0;
  grid-area: a;
  background-color: rgb(1, 2, 2);
  width: 12em;
}

.item2 {
  grid-area: b;
  align-self: start;
  width: 100%;
}

.grid-container {
  display: inline-grid;
  grid-template-areas: 'a b';
  gap: 10px;
  text-align: left;
}

ul.grid-container {
  margin: 0;
}

div.grid-container {
  padding-top: 1em;
  padding-bottom: 1em;
}

/* ------------------------------------
   Container Layout
------------------------------------ */
.container {
  max-width: 800px;
  margin: 0 auto;
}

/* ------------------------------------
   Masked Image Container
------------------------------------ */
.mask-container {
  width: 100%;
  max-width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 0 auto;
  max-height: 80vh;
  min-height: 40vh;
}

.masked-image {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* ------------------------------------
   Responsive Styles
------------------------------------ */
@media (max-width: 645px) {
  .grid-container {
    display: inline-flex;
    flex-direction: column;
    float: left;
    text-align: left;
/*    padding-right: 1em;*/
/*    padding-left: 1em;*/
  }

  .item1 {
    padding: 0;
    width: 100vw;
  }

  .item2 {
    padding: 0.5em;
    width: calc(100% - var(--fontSize));
  }

  .entry:hover {
    flex-direction: column;
  }
  
  .title {
    width: 100%;
  }
  
}

@media (max-width: 800px) and (min-width: 646px) {
  .container {
    margin: 0 auto;
  }

  .item2 {
    width: 100%;
  }

  .entry:hover .title:hover ~ .dscrptn,
  .my-link:hover > .dscrptn,
  .dscrptn:hover,
  .location:hover {
    display: flow-root;
    margin-left: 0;
    max-width: 90vw;
  }
}


/* Dark mode */
/*
@media (prefers-color-scheme: dark) {
  body {
    background-color: rgba(5,5,5,1.00);
    color: whitesmoke;
  }
  a, h1, h1 a{
    background-color: transparent;
    color:whitesmoke;
  }
  
  a:hover{
    color:yellow;
  }
  .title{
    color: whitesmoke;
  }
  li-more{
    color: yellow;
  }
  .entry:hover .title {
    background-color: yellow;
    display: inline-flex;
    color: rgba(5,5,5,1.00);
    transition-duration: 0.4s;
    letter-spacing: 0.01em;
    text-align: left;
    max-width: calc(100% - 3em);
  }
  .lightLink {
    color: rgba(5,5,5,1.00);
    text-decoration: none;
  }
  .item1{
    background: yellow;
  }
  .lightLink:hover {
  }

}
*/

