
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

/* ==========================================
   TABLE OF CONTENTS:
   1. Base Styles & Variables
   2. Generic Grid System
   3. Typography
   4. Header
   5. Navigation
   6. Card Components
   7. Content Sections
   8. Footer
   9. Utility Components
   10. Color Schemes
   11. Media Queries (Responsive)
   ========================================== */

/* ==========================================
   1. BASE STYLES & VARIABLES
   ========================================== */
:root {
  --c-bg: hsl(0, 0%, 100%);
  --c-text: #eee;
  --c-detail: #eee;
  --c-accent: #ffde16;
  --c-blue: hsl(227, 82%, 51%);
  --c-highlight: #f5e727;
  --a-speed: 75ms;
  --a-ease: ease-out;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --border-radius: 0;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  background: transparent;
  text-decoration: none;
  color: inherit;
  outline: 0;
  border: 0;
  border-radius: var(--border-radius);
  transition-duration: var(--a-speed);
  transition-timing-function: var(--a-ease);
}

html {
	  /* fallback gradient */
  background-image: linear-gradient(
    240deg,
    #f5e727 0%,
    #03EE14 0.5%,
    #01a4a3 1.5%,
    #000154 5%,
    #000154 10%,
    #01a4a3 100%
  );
  

  background-image: linear-gradient(
    240deg in hsl shorter hue,
    #f5e727 0%,
    #03EE14 0.5%,
    #01a4a3 1.5%,
    #000154 5%,
    #000154 10%,
    #01a4a3 100%
  );
  min-height: 100vh;
  background-position: 100% 100%;
}

html, body {
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  color: #FFF;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--c-text);
}
body{
	padding: 0 20px;
	background-image: url(media/noise.png);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-md) 0;
}

/* ==========================================
   2. GENERIC GRID SYSTEM
   ========================================== */
.card-grid {
  display: grid;
  gap: 0;
  margin-top: 0;
  align-items: start;
}

.card-grid--1col {
  grid-template-columns: 1fr;
}

.card-grid--2col {
  grid-template-columns: repeat(1, 1fr);
}

.card-grid--3col {
  grid-template-columns: repeat(1, 1fr);
}

.card-grid--4col {
  grid-template-columns: repeat(1, 1fr);
}

/* ==========================================
   3. TYPOGRAPHY
   ========================================== */
h1, h2, h3 {
  text-transform: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 2.2rem;
  line-height: 1.25;
  margin: var(--spacing-sm) 0;
}

h2,h3 {
  font-size: 1.5rem;
  margin: var(--spacing-md) 0;
  font-weight: 600;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  /* letter-spacing:0.1rem; */
}

.section-title-wrapper {
  background: #eeeeee;
  width: 100%;
  margin: 0;
  margin-top: 1em;
  padding: var(--spacing-xs) var(--spacing-sm);
}

.section-title {
  color: #000154;
  font-weight: 200;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  display: inline;
}

.st-aqua{
background: linear-gradient(90deg, #000154 0%, #000154 65%, #01a4a3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-ylw{
background: linear-gradient(90deg, #000154 0%, #000154 65%, #f5e727 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.st-grn{
background: linear-gradient(90deg, #000154 0%, #000154 65%, #03ee17 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (background-clip: text) or not (-webkit-background-clip: text) {
  .section-title {
    background: none !important;
    color: #000154 !important;
    -webkit-text-fill-color: #000154 !important;
  }
}

p{
  margin-bottom: 1.75rem;
}

strong {
  font-weight: 600;
}

em, cite {
    font-size: .75rem;
    opacity: 0.8;
}
oblique{font-style:italic}
/* ==========================================
   4. HEADER
   ========================================== */
header {
  text-align: center;
  padding: var(--spacing-md) 0;
}

header img {
  width: 6rem;
  margin: 0;
}

header h1, header h2, header h3 {
  display: block;
  margin: 0;
  text-align: center;
  font-weight:200;
}

header h1 {
      font-size: 2.5rem;
    /* letter-spacing: .25em; */
  font-weight: 600;
  margin: 1.5em 0 1em;
}

header h1 span {
  display: block;
  margin: 1.5rem 0;
}

header h1 img {
  vertical-align: middle;
  position: relative;
  z-index: 100;
}

header h1 img + img {
  position: relative;
  left: -6rem;
}

header h2, header h3 {
  font-size: 1rem;
  margin-bottom: 1em;
  color: #FFF;
}

header h1 + h2 {
  font-size: 1.5rem;
  text-align: center;
}

header h1 + h2 span {
  color: #1b989f;
  text-transform: uppercase;
  font-weight: 200;
  padding: 0 .25em;
  /* letter-spacing: 2px; */
}

header p {
  margin: var(--spacing-sm) 0;
}

header mark {
  color: #fff;
  background-color: var(--c-accent);
}

header mark a, header mark a:link, header mark a:visited {
  text-decoration: underline;
  text-decoration-color: #fff;
}


.logo-container {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 8rem;
  height: 8rem;
  z-index: 100;
}

.logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem;
  height: auto;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.logo--aqua {
  opacity: 1;
}

.logo--green {
  animation: logoFade 9s infinite 3s;
}

.logo--yellow {
  animation: logoFade 9s infinite 6s;
}

@keyframes logoFade {
  0% { opacity: 0; }
  11% { opacity: 1; }
  33% { opacity: 1; }
  44% { opacity: 0; }
  100% { opacity: 0; }
}


/* ==========================================
   5. NAVIGATION
   ========================================== */
nav {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  text-align: center;
  display: none;
  /* margin-bottom: var(--spacing-lg); */
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  /* NO BOX-SHADOW ON NAV CONTAINER */
}

nav ul {
  font-size: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: stretch;
  gap: 0;
}

nav li {
  font-size: .9rem;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: inset 0 1px 0 0 rgb(120 123 173), inset 1px 0 0 rgb(120 123 173), 0 1px 0 0 rgb(120 123 173), 1px 0 0 rgb(120 123 173);
  
  transition: box-shadow var(--a-speed) var(--a-ease);
  flex: 1 1 auto;
  min-width: 50%;
}

#contact nav li{box-shadow: inset 0 1px 0 0 #78b7c0, inset 1px 0 0 #78b7c0, 0 1px 0 0 #78b7c0, 1px 0 0 #78b7c0;}

nav li:hover, #contact nav li:hover {
  box-shadow: inset 0 1px 0 0 rgba(238, 238, 238, 1), inset 1px 0 0 rgba(238, 238, 238, 1), 0 1px 0 0 rgba(238, 238, 238, 1), 1px 0 0 rgba(238, 238, 238, 1);
  z-index:99;
}

nav li a {
    display: block;
    padding: var(--spacing-xs) var(--spacing-xs);
    text-decoration: none !important;
}

nav a:hover {
  color: rgba(238, 238, 238, 1);
}

/* ==========================================
   6. CARD COMPONENTS
   ========================================== */
.card {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent;
  height: 100%;
}

.card--bordered {
  box-shadow: inset 0 1px 0 0 var(--c-detail), inset 1px 0 0 var(--c-detail), 0 1px 0 0 var(--c-detail), 1px 0 0 var(--c-detail);
}



.card__content {
    display: block;
    padding: var(--spacing-sm);
    height: 100%;
}

.card__content--keynote {
  display: block;
  padding: var(--spacing-md);
}

.keynote-info {
  text-align: left;
  margin-bottom: var(--spacing-md);
  width: 100%;
  display: block;
}



.keynote-info .card__name {
  text-align: left;
  margin-bottom: var(--spacing-xs);
  display: block;
  width: 100%;
}

.keynote-info .card__link {
  display: block;
  text-align: left;
  width: 100%;
  margin-bottom: var(--spacing-sm);
}

.card__bio {
  clear: both;
  width: 100%;
}

.card__title {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
  margin-top:0;
  color: var(--c-text);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
  text-align: left;
}

.card__subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: left;
}

.card__description {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}


#papers .card__description, #artworks .card__description, #performances .card__description {
	margin-bottom: 1rem;
}


.card__image {
  width: 100%;
  height: auto;
  margin-bottom: var(--spacing-sm);
}

.mix__lighten{
  mix-blend-mode: lighten;
}

.card__text {
  display: flex;
  flex-direction: column;
}

.card__name {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  text-align: left;
  color: var(--c-text);
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-weight: 700;
}

.card__bio {
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.5;
}

.card__link {
    /* position: absolute; */
    /* bottom: var(--spacing-sm);
    left: var(--spacing-sm); */
    border: 1px solid #fff;
    color: #fff;
    padding: 0.25rem 0.75rem 0.25rem 0.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: .8rem;
    margin-top: .5rem;
    display: block;
    width: fit-content;
}

.card__note {
  font-style: italic;
  opacity: 0.8;
  margin-top: var(--spacing-sm);
}

.card--featured {
  background: rgba(255, 255, 255, 0.05);
}

.card--keynote .card__content {
  padding: var(--spacing-md);
}


.card--venue .card__image,
.card--proceedings .card__image {
  object-fit: cover;
      display: block;}

.card--proceedings .card__image {


    max-width: 50vw;
margin-bottom:0;
}

#travel img{
	    max-width: 100%;
    float: unset;
    box-sizing: unset;
    margin: 0 auto 1rem auto;
}

/* ==========================================
   7. CONTENT SECTIONS
   ========================================== */
section {
  margin: 1rem 0;
}

section:first-of-type {
  margin-top: var(--spacing-md);
}

#about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 1.5rem 0;
}

/* Date List */
.date-list {
  list-style: none;
  margin-left: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
}

.date-list li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.date-list li:last-child {
  border-bottom: none;
}

/* Committee Lists */
.committee-section {
}

.committee-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.committee-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.committee-list li, .mentor-list li {
  /* padding: var(--spacing-xs) 0; */
  font-size: 0.9rem;
  line-height: 1.4;
      color: #eeeeeebb;
}

.committee-list--organizing li {
  font-size: 1rem;
  color: var(--c-text);
}

  .committee-list span{  
  font-weight: 600;
  color:#eeeeee}
  

/* Mentor Grid */
.mentor-grid {
  margin-top: var(--spacing-md);
}

.mentor-list ul {
  margin: 0;
  padding: 0;
}


.mentor-list li span, .committee-list li span{
	
	/* letter-spacing:1px; */
	    color: #eeeeee;
}


/* Proceedings List */
.proceedings-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.proceedings-list li {
  padding: var(--spacing-xs) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.proceedings-list li:last-child {
  border-bottom: none;
}

/* ==========================================
   8. FOOTER
   ========================================== */

#contact{
	 /*   margin: var(--spacing-lg) auto var(--spacing-xs) auto;*/
}
#contact nav{margin-bottom:0}

#contact nav li{text-transform:unset;}

#contact h3{padding:0 var(--spacing-sm);}



#program h3{
    padding: var(--spacing-sm);
    
    margin: 1px 0 0 1px;
	    font-size: 130%;
		/* letter-spacing:3px */
}

#program .card:nth-of-type(1) h3 {

	    background: linear-gradient(310deg, #ffde16, #fedd1630 50%);

	 
}

#program .card:nth-of-type(2) h3 {
	background: linear-gradient(310deg, #b0f539, #b0f53930 50%);


}

#program .card:nth-of-type(3) h3 {

	 background: linear-gradient(310deg, #03ee17, #03ee1730 50%);
}

#program .card:nth-of-type(4) h3{
	 background: linear-gradient(310deg, #019fa1, #03ee1730 50%);

}



#program h3:nth-of-type(4) {
	 
}
.shuttle-info{
	padding: var(--spacing-sm);
	background-color:#019fa180;
	margin: 1px 0 0 1px;
	/* letter-spacing:1px; */
}

.icon{vertical-align: middle;
    width: 24px;
	height:24px;
    margin-right: 0.25rem;
	padding-bottom: 2px;
}

#footer {
      padding: var(--spacing-sm);
	  padding-top: var(--spacing-md);
    background: #eeeeee;
    margin-top: var(--spacing-xl);
    max-width: 900px;
    margin: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}

.footer-section h3 {
    font-size: 1rem;
    color: #241f21;
        margin: 0rem 0 2.5rem 0;
    text-transform: uppercase;
    text-align: center;
}

.footer-section p,
.footer-section ul {
  margin: 0;
  padding: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

#footer a, #footer a:link, #footer a:visited {
  color: rgb(50, 50, 50);
  text-decoration: underline;
}

#footer a:active, #footer a:hover {
  color: #000;
}

/* ==========================================
   9. UTILITY COMPONENTS
   ========================================== */
/* Lists */
ul {
  list-style: none;
  margin-left: 0;
  padding: 0;
}

.inline-list {
  padding-left: 0;
  text-indent: 0;
  margin-left: 0;
}

.inline-list li {
  display: inline;
}

.inline-list li:after {
  content: "; ";
}

.inline-list li:last-child:after {
  content: ".";
}

/* Logos */
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: center;
}

.logos li {
  display: inline-block;
          margin-right: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
  vertical-align: middle;
flex: 1 1 auto;
        max-width: 30%;
}

.logos img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 40px;
}

/* Dividers */
.divider {
  margin: var(--spacing-md) 0 0 0;
            background-color: #eeeeeebb;
		height:1px;
		
}

 Links 
#keynotes a,#keynotes a:link,#keynotes a:visited {
  color: #FFF;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.75);
}

#keynotes a:active,#keynotes a:hover {
  color: var(--c-highlight);
  text-decoration-color: var(--c-highlight);
}*/

mark a, mark a:link, mark a:visited {
  color: #fff;
  text-decoration: none;
}


/* ==========================================
   11. MEDIA QUERIES (RESPONSIVE)
   ========================================== */
/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
.section-title {
font-size: 2rem;}	


.logos li {
        max-width: 17%;
}


#travel img{
	    max-width: 50%;
    float: right;
    box-sizing: unset;
    margin: 0 0 1rem 1rem;
}
	
	
	.keynote-info .card__image {
        width: 50%;
        height: auto;
        margin: 0 0 var(--spacing-sm) 0;
        display: block;
        float: none;
}
	
  nav {
    display: block;
  }

nav li {
  min-width: max-content;
}
.navigation li {
  /* min-width: 22%; */
}


  .footer-content {
    grid-template-columns: repeat(1, 1fr);
  }

  .logos {
    justify-content: center;
  }

  .logos li {
            margin-right: var(--spacing-xs);
        margin-bottom: var(--spacing-sm);
  }

  .card-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }

  .committee-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
  html, body {
    font-size: 19px;
  }

  header, section {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  header h1 span {
    display: inline;
	
  }

  .footer-content {
    
  }

  .card-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .committee-list {
    column-count: 2;
    column-gap: var(--spacing-sm);
  }

  .committee-list--organizing {
    column-count: 1;
  }

  .committee-list li {
    display: inline-block;
    width: 95%;
    padding-right: 1em;
    font-size: 0.85rem;
  }

  .committee-list--organizing li {
    font-size: 1rem;
  }

  .committee-list a,  .committee-list span{  
  

  line-height: 1.5;
  color:#eeeeee}

.committee-list span{    margin-right: 0.5rem; font-weight: 600;}
  
  .committee-list .description{font-weight:200;}

  .card__content--keynote {
    display: block;
  }

  .keynote-info {
    text-align: left;
    margin-bottom: var(--spacing-md);
    width: 100%;
    display: block;
  }

  .keynote-info .card__image {
            width: 100%;
        height: auto;
        margin: 0 0 var(--spacing-sm) 0;
        display: block;
        float: none;
  }

  .keynote-info .card__name {
    text-align: left;
    display: block;
    width: 100%;
  }

  .keynote-info .card__link {
    text-align: left;
    display: block;
    width: 100%;
  }

  .card__bio {
    clear: both;
    width: 100%;
  }

  .card__image {
    margin-bottom: 0;
  }
}


.schedule-content p{
	margin-bottom: 0;
}

/* Large devices (1200px and up) */
@media (min-width: 1200px) {
  .card-grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }

  .committee-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}






.schedule-time-break {

    margin-bottom: 0.25rem;
  float:right;

}

.schedule-time span{
position: absolute;
    top: -1rem;
    font-size: 0.75rem;
opacity: .75;}


.schedule-time {
    font-size: 1.1rem;

    margin-bottom: 0.25rem;
  float:right;
    position:relative;
}

a.schedule-location{
    border: 1px solid #00bfc180;
    color: #00bfc1;
    padding: 0.25rem 0.75rem 0.25rem 0.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: .8rem;
    margin-top: 1rem;
    display: block;
    width: fit-content;
    
}
.schedule-location:hover{
    background: #00bfc140;
        border: 1px solid #fede17;
    color: #fede17;
	border: 1px solid #00bfc1;
    color: #00bfc1;


    text-decoration: none;

    opacity: 100%;	
}

.schedule-content {
    color: var(--c-text);
}



.schedule-content h4 {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
	font-weight: 600;
	

}

.schedule-content ul {
    list-style: disc;
    margin-left: 1rem;
    padding-left: 0;
    margin-top: 1rem;
}

.schedule-content li {
    display: list-item;
    margin-bottom: 0.25rem;
    font-size: .75rem;
    list-style-type: ">";
    padding-inline-start: 1ch;
	    opacity: 85%;
}






.schedule-item {
    border-bottom: 1px solid #eeeeeebb;
    padding: 0.75rem 0;
}

.schedule-break{
	padding: var(--spacing-xs) var(--spacing-sm);
    background-color: #019ea060;
    border-bottom: none;
}

.schedule-item:last-child {
    border-bottom: none;
}


.borderless{border: none;}