/* CSS Reset */

@import url("./reset.css");
@import url("./fonts.css");
@import url("./colors.css");
@import url("./typography.css");
/* Fonts */

/* Custom Styles */
body {
  font-family: "Lateral", sans-serif;
  background-color: var(--white);
  color: var(--primary-color);
  position: relative;
  min-height: 100vh;
  padding-bottom: 50px;
    height:100vh;
  overflow: hidden; 
  display: flex;
  flex-direction: column;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  border-bottom: solid black 2px;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;padding: 5px 0;
}

nav .logo img {
  width: 120px;
}
section{
    padding-bottom: 2rem;
}
.donate-grp,
.listen-grp {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 25%;
}
.listen-grp {
  justify-content: flex-end;
}
.page-header-tagline {
  font-family: "Lateral", sans-serif;
  margin-left: 1rem;
  font-size: 14px;
  font-weight: 300;
  color: var(--primary-color);
  margin-top: 5px;
  width: 150px;
  line-height: 1;
}
.btn-solid,
.btn-hollow {
  font-family: "Lateral", sans-serif;
  font-size: 16px;
  font-weight: 300;
  padding: 5px 20px;
  border: 2px solid black;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  text-align: center;
  color: var(--primary-color);
  border-radius: 5px;
}
.btn-hollow:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.btn-solid {
  display: inline-block;
  padding: 10px 25px;
  margin: 1rem 0;
  background-color: var(--dark-purple);
  color: var(--white);
}
.btn-solid:hover {
  filter: brightness(1.5);
  cursor: pointer;
}
.content-wrapper {
  max-width: 900px;
  margin: 1rem auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
}
.page-gradient {
  position: absolute;
  top: 0;
  z-index: -2;
  inset: 0 0 auto 0;
  height: 300px;
  width: 100%;
  opacity: 0.6;
  background: linear-gradient(
    to bottom,
    #faacd2 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-repeat: no-repeat;
}
.key-art img {
  position: fixed;
  bottom: -100px;
  left: -5%;
  z-index: -1;
  opacity: 0.5;
  height: 90vh;
  width: auto;
  transform: translateY(-200);
}

.purple, .gold, .white{
  bottom: 0;
  left: 0;
  width: 100%;
padding: 3rem 0;
  background-color: var(--dark-purple);
  z-index: -3;
    background-image: url("../images/design-element-lines.svg"); 
    background-position: 100px;
    background-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.gold{
    background-color: var(--yellow);
    background-blend-mode: color-dodge;

}
.white{
    background-color: var(--white);
background-image: none;
border-top: solid;
padding: 0;
}

.gala-header {
  margin-top: 5rem;
  margin-bottom: 2rem;
}
.right-col {
  max-width: 400px;

  text-align: right;
  align-self: flex-end;
}
.split-row, .split-row-even {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.split-row-even{
grid-template-columns: 1fr 1fr;
}
.split-row img,
.split-row .right-col img,
.split-row-even img
{
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.clip{
  align-self: stretch;       
  overflow-y: auto;        
  -webkit-overflow-scrolling: touch;
}

.clip > .content-wrapper{
  margin-top: calc(var(--header-height) * -1); 
  padding-top: var(--header-height);         
}

iframe{
    width: 100%;
}

.split-row iframe,
.split-row-even iframe {
  display: block;
  width: 100%;
  height: auto;      
  aspect-ratio: 16/9; 
  border: 0;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 50%; 
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.ad-footer{
    display: flex;
    justify-content: space-between;
    height: 80px;
    padding: 1rem 0;
    align-items: center;
    gap: 2rem;
}
.ad-footer a, .ad-footer img{
    display: block;
    height: min-content;
    margin: 0;
}
.ad-footer img{
    height: auto;
    width: 200px;
}
.btn-solid.black{
    background-color: var(--primary-color);
    color: var(--white);
}
@media screen and (max-width: 767px) {
  .split-row,
  .split-row-even {
    grid-template-columns: 1fr;
  }
  .honorees .split-row{
      display: flex;
      flex-direction: column-reverse;
      gap: 2rem;
  }
  .btn-solid{
    width: -webkit-fill-available;
  }
  .listen-grp {
   display: none;
  }
  .donate-grp{
    flex-direction: column;
    width: 40%;
    align-items: start;
  }
  .page-header-tagline {
    width: auto;
    text-align: left;
    margin-left: 0;
  } 
  .ad-footer{
      flex-direction: column;
      height: auto;
      gap: 1rem;
  }
  .key-art img {
    left: auto;
    right: 0;
    height: 70vh;
  }
}