
:root {
  --color2: #222;
  --color4: #777;
  /**/
  --white: #fff;
  --black: #000;
  --red: #f00000;
}

body {
  margin: 0;
  background-color: var(--black);
  color: var(--white);
  font-size: clamp(1rem, 2vw, 3rem);

  font-family: "Faustina", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
h1, h2, h3, h4, header p {
  font-family: "New Amsterdam", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
  margin: 0;
}
img {
  max-width: 100%;
  width: 100%;
}
a {
  color: var(--red);
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
iframe {
  border: 0;
}
ol { 
  padding-left: 0;
}

header {
  background-color: var(--black);
  padding: 1rem;
  text-align: center;
}
header img {
  max-width: 600px;
}
header p {
  font-size: 150%;
}

nav {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: var(--red);
}  
nav ul {
    margin: 0;
    padding: .25rem 0;
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}   
nav a {        
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  max-width: 80vw;
  padding: 0.15rem 0.5rem;
  color: var(--white);
}

nav img { 
  opacity: 0;
  transition: opacity 0.3s;
  position: absolute;
  top: 5%;
  left: 1rem;
  max-height: 90%;
  width: auto;
}
@media (min-width:750px) {
  nav.is-sticky img {
    opacity: 1;
  } 
}
@media (min-width: 1000px) {
  nav ul { gap: 0 1rem; }
}


section {
  margin: 0 auto; 
  padding: 1rem;
  position: relative;
}
section:not(:last-child):after {
  content:"";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color4);
}

article {
  margin-bottom: 3rem;
}
article:after {
  content: "";
  display: block;
  border-bottom: 1px solid var(--white);
  width: 25%;
  margin: 3rem auto 0;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--color2);
  color: var(--color4);
}
footer img {
  max-width: 150px;
}

.videos ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 600px), 1fr));
  gap: 1rem;    
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.mw {
  max-width: 900px;
  margin: auto;
}

.youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--red);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  white-space: nowrap;
  cursor: pointer;
}
.youtube a {
  position: absolute; 
  color: var(--white); 
  background-color: var(--red); 
  bottom: 10px; 
  left: 50%; 
  transform: translate(-50%, -100%); 
  z-index: 2; 
  padding: 10px 20px; 
  opacity: 0;    
  transition: opacity .3s;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.youtube:hover {
  opacity: .85;
}
.youtube:hover a {
  opacity: 1;
}
.youtube .play-button {
  width: 90px; 
  height: 60px; 
  background-color: var(--red); 
  z-index: 1; 
  border-radius: 6px;
}
.youtube .play-button:before {
  content: ""; 
  border-style: solid; 
  border-width: 15px 0 15px 26px; 
  border-color: transparent transparent transparent #fff;
}
.youtube iframe {
  position: absolute;
  height: 100%; 
  width: 100%; 
  top: 0; 
  left: 0;
}
.youtube .play-button, 
.youtube .play-button:before {
  position: absolute;
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
}

.concerts {
  text-align: center;
  list-style-position: inside;
}
.songs {
  text-align: center;
  list-style-position: inside;
}

.songs dt {
  font-size: 1rem; 
}
  .songs dd {
  margin: 0 0 1rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
}
.grid img {
  display: block;
} 

.links {}
.links ul {  
  list-style: none;
  padding: 0;
  margin: 0;
}
.links li {background-color: var(--color2);}
.links a { display:block; position: relative;}
.links a div {position:absolute; bottom:.25rem; left:0; right:0; text-align:center; opacity:0; transition: opacity .3s;}
.links span { font-size:60%; display:inline-block; background:var(--red); padding:2px 4px; color:var(--white) }
.links a:hover div {opacity: 1;}
.mt {margin-top: 2rem;}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  padding-top: 60px; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%;
  overflow: auto; 
  background-color: var(--color2); 
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.modal-close:hover,
.modal-close:focus {
  color: #bbb;
  text-decoration: none;
}


.toggler {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.toggler:after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.toggler.open:after {
  transform: rotate(-135deg);
}

/* Optional collapse animation */
.expandable {
  overflow: hidden;
  max-height: 2000px;
  padding: 2rem 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.expandable.collapsed {
  max-height: 0;
  padding: 0;
}

