:where(audio, canvas, iframe, img, svg, video) {
  /*vertical-align: baseline;*/
  display: block;
}
:root {
    --font-clamp: clamp(0.8rem, 2vw, 1rem);
    --text-shadow: 1px 1px 0 #333;
    --box-shadow: 7px 7px 3px #aaa;
}
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
    /*box-sizing: border-box;*/
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS','Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    color: indigo;
}
h1, h2, h3, h4, h5, h6 {
    font-family: lithos-pro, sans-serif;
    font-weight: 300;
    font-size: 0.9em;
    color: orange;
    text-shadow: var(--text-shadow); 
}
a {
    text-decoration: none;
    color: indigo;
}
a:hover {
    color: magenta;
}
a:active {
    color: orange;
}
hr {
    background-color: indigo;
    color: indigo;
}
/* end global styles*/

/*start nav*/
nav {
    width: 100%;
    border-bottom: 1px solid magenta;
    padding: 1% 3% clamp(10px, 3%, 15px) 3%;
    display: flex;
    justify-content: space-between;
    background-color: white;
}
.logo-box {
    width: 175px;
    max-width: 175px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.logo {
    width: 100%;
    margin: 0;
    padding: 0;
}
.logo img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
}
.tag {
    /*width: 100%;*/
    margin: -0.3em 0 0 0;
    padding: 0 0 0 clamp(0.75rem, 4vw, 1.5rem);
    display: inline-block;
    white-space: nowrap;
    width: auto;
    font-size: var(--font-clamp);
    font-style: italic;
}
#it {
    font-size: 1.25em;
    text-transform: uppercase;
    font-weight: bold;    
}
.title-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
.title-box h1 {
    /*width: 100%;*/
    margin: 0.65em 0 0 0;
    text-align: right;
    font-weight: 400;
    font-size: 1.25em;
}
.title-box ul {
    /*width: 100%;*/
    z-index: 5;
    display: flex;
    flex-direction: row;
    gap: 1em;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: flex-end;
    list-style-type: none;
    text-transform: uppercase;
}
.title-box li {
    list-style-type: none;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}
/* end nav */

/* start main */
.main {
    width: 100%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-title {
    width: 100%;
    max-width: none;
    border: 1px solid white;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 1.0em;
    font-weight: bold;
    text-shadow: var(--text-shadow); 
    background-color: magenta;
    color: white;    
}
.section-title h1 {
    margin: 0;
    padding: 0.25em 0;
    font-size: 1.0em;
    font-weight: bold;
    color: white;    
}
.hero {
    width: 100%;
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    padding-bottom: 2vh;
    background-color: white;
}
.qq-wrapper {
    position: relative;
    width: 100%; 
    max-width: none;
    /*max-width: 400px;*/
    aspect-ratio: 16/9;
    margin: 0 auto;
    /*padding: 0 5%;*/
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
} 
.qq-wrapper iframe,
.qq-wrapper video {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0; 
    border: none;
    display: block;
    /*box-shadow: var(--box-shadow); */
}
video {
    border-radius: 1rem;
}
.merch {
    width: 100%;
    height: 10vh;
    text-align: center;
    background-color: indigo;
}
.merch h1 {
    margin: 1em;
    font-size: 200%;
    color: magenta;
}
.engage {
    width: 90%;
    max-width: 1050px;
    margin: 0;
    border-radius: 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.engage h2 {
    margin: 1.5em 0 0 0;
    padding: 0;
    font-size: 1.1em;
}
.engage ul {
    width: 100%;
    padding: 0 2.5em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3%;
    line-height: 1.4em;
}
.engage li {
    position: relative;
   /* width: 75%;*/
    box-sizing: border-box;
    margin: 0;
    /*margin: 3%;*/
    padding-left: 1.5em;     /* Space for the bullet */
    padding-bottom: 1em;
    text-align: left;
    list-style: none;
    flex: 1 1 280px;   /* grow, shrink, ideal 280px width */
    width: auto;       /* override the 25% */
    min-width: 240px;  /* or whatever your minimum readable width is */

}
.engage li::marker {
    content: ""; /* hide default */
}
.engage li::before {
    content: "";
    position: absolute;
    top: 0.35em; /* Adjust as needed */
    left: 0;
    width: 0.75em;
    height: 0.75em;
    background-image: url("../media/yin-yang-indigo-small.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.engage .button {
    width: 180px;
}
.engage .button a {
    display: inline-block;
    width: 100%;
    border-radius: 1rem;
    border: 1px solid magenta;
    padding: 0 ;
    text-transform: uppercase;
    background-color: indigo;
    color: white;
}
.engage .button h2 {
    font-weight: bold;
    text-shadow: var(--text-shadow); 
}
.slide-container {
  width: 100%;
  max-width: none; 
  margin: 7vh 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
.MOM-wrapper {
    position: relative;
    width: 50%; 
    max-width: 500px;   
    aspect-ratio: 16/9;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 1rem;
    background-color: indigo;
    box-shadow: var(--box-shadow); 
    display:flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
} 
.MOM-wrapper a {
    width: 100%;
}
.MOM-wrapper video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /*object-fit: contain;*/
}
/* end hero*/

/* start arts */
.arts {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: gray;
}
.arts-wrapper {
    width: 85%;
    max-width: 900px;
    /*height: auto;*/
    /*aspect-ratio: 16/9;*/
    margin:  0 auto;
    box-sizing: border-box;
    /*border-radius: 20px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*overflow: hidden;*/
    background-color: black;
    border: 1.5rem solid transparent;    /* creates visible gap without affecting layout */
    background-clip: padding-box;         /* keeps black background inside the border */
}  
.arts-video-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 5px 5px 10px #111111;
    border-radius: 20px;
    /*padding: 3em;*/
    display: flex;
    justify-content: center;
    align-items: center;
}
.arts-wrapper video {
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    display: block;
    /*object-fit: contain;*/
}
.medium-title {
    width: 100%;
    margin: 0;
    padding: 0.1em 0;
    border: 1px solid white;
    text-align: center;
    font-size: 1.1em;
    background-color:orange;
    color: white;
}
.medium-title h2 {
    margin: 0;
    font-size: 1.1em;
    text-shadow: var(--text-shadow);
}
.image-box {
    width: 100%;
    height: auto;
    padding: 5vh 5vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex: 1 1 250px;
}
.image {
    max-width: 300px;
    object-fit: contain;
    box-sizing: border-box;
    border-radius: 1rem;
    padding: 1.15rem;
    background: white;
    box-shadow: 5px 5px 10px #111111;
}
.image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    display: block;
}
.caption {
    min-height: 15vh;
    padding: 10%;
    background-color: white;
    font-size: 0.8em;
    font-style: italic;
}
.song-box {
    width: 100%;
    margin: 0 auto;
    padding: 3vh 0 10vh 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    background-color: indigo;
    color: white;
}
.song {
    width: 65%;
    padding: 0 0 2vh 0;
    text-align: left;
    /*background-color: indigo;
    color: white;*/
}
.song-title {
    text-align: center;
    color: orange;
}
.bold-song-title {
    font-weight: bold;
}
.song-title a, 
.song-title h3 {
    margin: 0;
    padding: 0;
}
.song-body {
    margin: 2vh 0 0 10vw;
}
.song span {
    display: block; 
    /*text-indent: -1em;  
    padding-left: 1em;  */
}
.song-tag {
    margin-top: 2.5%;
    margin-bottom: 4%;
    font-style: italic;
    color: magenta;
}
/* end arts */

/*start about*/
.about {
    width: 100%;
    max-width: none;
    padding-bottom: 60px;
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
}
.about img {
    max-width: 100%;
    height: auto;
}
.bio {
    width: 100%;
    /*max-width: 600px;*/
    margin: 2em 4em;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
    background-color: white;
}
.avatar {
    width: clamp(85px, 12.5vw, 90px);
    height: clamp(85px, 12.5vw, 90px);
    margin: 15px; /* preserved exactly */
    border-radius: 50%;
}
.info {
     max-width: 60vw;
     padding: 0 clamp(5px, 3em, 7px);
     /*flex: 1 1 300px;*/
 }
#soc-link {
    width: 100%;
    max-width: 1050px;
    margin-bottom: 12vh;
    padding: 0.5em clamp(2em, 8vw, 16em);
    border-radius: 0.75em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25em; 
    background-color: white;
}
.social a img {
    width: 25px;
    height: 25px;
    margin: 10px;
}
/* end about*/
/* end main */

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 3vh;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: white;
    border-top: 1px solid magenta;
}
.contact {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    border: 1px solid orange;
}
p.email {
    margin: 0;
    padding: 0.5em 0 1em 0;
    text-align: center;
    font-size: var(--font-clamp);
    font-size: 0.7rem;
    text-transform: uppercase;    
    letter-spacing: 3px;
}
@media screen and (min-width: 600px) {
    .qq-wrapper {
        margin: 0;
        padding: 0;
        box-sizing: border-box;  
    }
    .slide-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1em; 
    } 
    .MOM-wrapper {
        margin: 0;
        padding: 0;
        flex: 0 0 clamp(300px, 25%, 400px);            
        box-sizing: border-box;  
    }
    .arts-wrapper {
        /*max-width: 1050px;*/
        margin: 0;
        padding: 0;
        box-sizing: border-box;  
    }
    .song-box {
        padding: 3vh clamp(30px, 5vw, 50px);
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: clamp(20px, 5vw, 40px);
    }
    .song {
        max-width: 350px;
        margin: 0;
        padding: 0;
    }
    .song-body {
        margin: 0;
        padding: 0;
    }
}