/* CSS Document */


/*  CSS Reset */

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;
    text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	line-height: 1;
    background-color: black;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.bold {
    font-weight: bold;
    color: #bbb;
}

em {
    font-style: italic;
}
ul {
    padding: 10px 10px 10px 40px;
}

ul li {
    list-style-type: disc;
    line-height: 1.5em;
    padding-bottom: 15px;
}
strong {
    color: #999;
}

button {
    padding: 0;
    color: #e25238;
    border-radius: 10px;
    background-color: #eec643;
}

button h4 {
    color: #e25238;
    margin: 10px;
}

s {
    text-decoration: line-through;
}


/* Base styling  */

h1, h2, h3, h4, h5, h6 {
    margin: 30px 20px 25px 20px;
    color: #999;
    line-height: 1.2em
} 

h1 {
   font-size: 3.5em; 
}
h2 {
    font-size: 3.1em; 
}
h3 {
    font-size: 2.5em; 
}
h4 {
    font-size: 1.9em; 
}
h5 {
    font-size: 1.5em; 
}
h6 {
    font-size: 1.2em; 
}

p {
    margin: 10px 20px 20px;
    font-size: 1.1em;
    line-height: 26px;
    word-break: break-word;
}

strong {
    font-weight: bold;
    color: #888;
}

a {
    word-break: break-word;
}


/* Mobile Styling */

.grid-container {
    background-color: black;
	display: grid;
	grid-template-columns: 100%;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

header{
    display: flex;
    height: 100%;
    min-height: 200px;
    max-height: 240px;
    background: url("../images/dc-social.webp") top right/cover no-repeat;
}

#page-title {
    color: #eee;
    padding: 10px;
    margin: auto 0;
    font-size: 3.1em;
    background-color: #000;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}

.section-title {
    margin: 0 0 0 15px;
    font-size: 3em;
    color: darkolivegreen;
}

.content-title {
    font-size: 1.2em;
    margin: -20px 0 -30px 27px;
}

nav {
    word-break: keep-all;
}

nav.subnav {
    margin: 30px 0 0 0;
}

nav ul {
	display: grid;
    grid-template: repeat(4, 60px) / 1fr;
    grid-gap: 5px;  
    text-align: right;
    background-color: #222;
}

nav.subnav ul.submenu {
    display: grid;
    grid-template:  minmax(60px, auto) / repeat(3, 1fr);
    grid-gap: 5px;  
    text-align: right;
    background-color: #111;
    padding: 20px 0 0 0;
}

nav li {
    padding:20px;
    font-size: 1.5em;
    text-decoration: none;
    text-align: center;
    line-height: 1.2em;
    text-shadow: 2px 2px 2px #000;
    transition: all 75ms ease-in;    
    color: #695580;
    word-break: keep-all;
    background-color: #111;
}

ul.submenu li {
    font-size: 1.2em;
    color: #4a9462;
    word-break: keep-all;
    background: none;
}

nav li:hover {
    color: #fff;
}    

.burger-menu {
    display: flex;
    height: 30px;
    width: 30px;
    margin: 10px 20px 10px;
    padding: 7px;
    background-color: black;
    float: right;
}

.menu, #nav-toggle {
    display: none;
}

ul.menu {
    margin: 0 0 20px 0;
    padding: 0;
}

.menu li, .submenu li {
    list-style: none;
}

.sub-menu {
    margin: 20px 0 0 0;
    display: block;
}


#nav-toggle:checked ~ .menu {
    display: grid;
}

.reg-link {
    display: flex;
    margin: 0 20px 30px;
    justify-content: center;
    text-align: center;
}

.register{
    width: 50%;
    height: auto;
}

.location-icons {
    display: flex;
    margin: 30px auto 0;
    width: 87%;
    justify-content: space-around;
    text-align: center
}

.location {
    align-self: center;
    width: 40px;
    padding-bottom: 20px;
    transition: all 200ms ease-out;
}

.location:hover {
    transform: scale(1.5) perspective(100px) rotateX(20deg) rotateY(20deg);
}

hr {
  border: 0;
    width: 80%;
    height: 1px;
    margin: 15px 0 0 20px;
    background-image: linear-gradient(to right,  rgba(100, 100, 100, 0.75), rgba(100, 100, 100, 0));      
}

.cevm {
    margin: 10px 0 0 0px;
    border-radius: 5px;
}

.date-time {
    font-size: 1em;
    font-weight: 200;
    color: skyblue;
    margin-top: -15px;
}

a {
    color: #A1B0C6;
}

a:hover {
    color: #ddd;
}

.float-left {
    margin: 15px 15px 15px 0;
    max-width: 100%;
}

.float-right {
    margin: 15px 15px 15px 15px;
    max-width: 100%;
}

#content {
    display: grid;
    margin-top: 0;
}

#news h3, #details h3, #contests h3, #events h3, #music h3 {
    margin: 10px 0 -5px 20px;
    color: #ccc;
}

.news-item {
    margin-top: 25px;
}

.news-item, #news-toggle {
    display: none;
}

.news-expand {
    position: relative;
    top: 4px;
    margin: 0;
    display: inline-block;
    transition: all 0.15s 0s;
    transform: rotate(0);
    
}

.news-expand img {
    height:25px;
    width: auto;
}

#news-toggle:checked + .news-expand {
  transform: rotate(90deg);
}

#news-toggle:checked ~ .news-item {
    display: block;
    padding-left: 20px
}


#news .sec-title {
    display: inline-block;
    margin: 0 10px 0 -10px;
    color: #c54b38;
    max-width: 60%;
}

#news h3.headline {
    margin-top: 40px
}


h3.headline {
    line-height: 2em
}

.title {
    font-size: 1.5em;
    margin: 20px 0 0 20px;
}

.link-grid {
    display:grid;
    grid-template: 1fr / repeat(2, 1fr); 
    
}

.link-grid div {
    margin: 0 auto 20px;
    text-align: center;
    color:  #bbb;
}

.link-grid img {
    height: 75px;
    width: auto;
    
}

main {
    display: grid;
    grid-template: repeat (5, minmax(100px, auto)) / 1fr;
    color: #777;
    grid-gap: 20px;
    padding: 30px
}

section {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.40), rgba(0,0,0,.00));
    background-color: #111;
    padding: 30px;
}

main section {
    padding: 10px 30px;
}

.img-pad {
    margin: 20px 0 20px 20px;
}


.three-col {
    display: grid;
    grid-gap: 3%;
    margin: 30px 20px 85px;
}

.det-col {
    background-image: linear-gradient(to top, rgba(0,0,0,.80), rgba(0,0,0,.00));
    border-radius: 0 0 10px 10px;
}

.det-col p .det-col h3 {
    text-align: center;
}

.theme-colors ul {
    margin: 0 auto;
    padding: 0;
    
    
}

.theme-colors ul li {
    list-style-type: none;
    margin:0;
    padding: 10px;
    text-shadow:  none;
    color: #000;

}

.color-1{
    background: linear-gradient(to top left, #ec82a5, #c56683);
}

.color-2{
    background: linear-gradient(to top left, #4c92ce, #316094);
}

.color-3{
    background: linear-gradient(to top left, #78c587, #4a9462);
}

.color-4{
    background: linear-gradient(to top left, #93d0a8 , #6cca98);
}

.color-5{
    background: linear-gradient(to top left, #ef6456, #c54b38);
}


.mod-image {
    width: 35%;
    float: right;
    margin: 40px 15px 10px;    
}

.mod-name{
    font-size: 1.8em;
    color: sienna
}

.mod-handle{
    font-size: 1.5em;
    margin-top: -20px;
    padding-top: 0;
}

.mod-lang {
    font-style: italic;
    margin-top: -10px
}

.mod-bio {
    
}

footer{
    text-align: center;
    padding: 30px;
    background-color: #222;
    color: #888
}

.title-box {
    display: grid;
    width: 30%;
    text-shadow: 3px 3px 3px #000;
    color: rgba(229,199,246,1.50);
}

.title-box h1 {
    font-family: Helvetica, Arial, "sans-serif";
    margin: 200px 0 0 0;
    display: none;
}

.title-box img.image-title {
    margin: auto 5px;
}

img.scale {
    max-width: 95%;
    height:auto;
}

img.post-image {
    max-width: 50%;
    float: left;
    margin: 5px 20px 10px;
}

.post-title {
    font-size: 2.4em;
    color: #6cca98;
    margin-bottom: 10px;
}

.contest-title {
    margin: 20px 0 -30px 20px;
    padding: 0;
    color: #4999e5;
}

article.post {
    margin: 0 0 50px 0;
}

.sec-title {
    color: #eec643;
    line-height: 1.1em;
    margin: 0 0 30px 18px;
}

#news {
    color: #777;
}

#news h3 {
    margin-bottom: 30px;
    padding-left: 30px;
    font-size: 2em;
}
.entry {
    margin-bottom: 40px;
}

#music p {
    margin-top: 25px;
}

.white-rabbit {
    font-family: 'whiterabbit', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"
}

.talk-title {
    font-size: 2em;
    color: #64d576;
    word-break: break-word;
}

.time-room {
    font-size: 1em;
    color: #e25238;
    margin: -15px 20px 10px;
}

.speaker {
    font-size: 1.4em;
    color: #eec643;
    line-height: 1em;
}

h4.speaker {
    margin: 5px 20px;
}

.speaker-title {
    font-size: .7em;
    color: #dc8530;
}

.abstract {
    
}

.in-person {
    color: #4999e5
}

.speaker-bio {
    font: italic 1.2em;
}

.speaker-bio strong{
    color: #bbb;
}

ul.schedule-row {
    display: grid;
    grid-auto-flow: row;
}

.schedule-row li {
    list-style-type: none;
    margin: 0;
}

.sched-title {
    font-size: 1.1em;
}

.track {
    background-color: #000;
    padding: 10px;
}
li.sched-fill {
    display: none;
}

.time {
    color: #64d576 ;
    font-size: 2em;
    margin-bottom: 10px;
    font-family: 'whiterabbit', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.tracks {
    display: grid;
}
.track-name {
    display: block;
    color: #000;
    background-color: #555;
    padding: 5px;
    margin-bottom: 5px;
}

.d-e-t {
    font-size: .8em;
}

.schedule-title {
    color: #eec643;
    font-weight: bold;
}

.sched-speaker{
    color: #4999e5
}

/*JS Forums calendar styling*/

.calendar-entry {
    display: grid;
    grid-template: 1fr / 1fr 4fr;
    margin: 0 15px 20px 8px;
    
}

.start-date {
    display: grid;
    grid-template: 1fr 40% / 1fr;
    padding: 0 5px 10px;
    background: linear-gradient(to top left, #ef6456, #c54b38);
    color: white;
    margin: 0 12px;
    border-radius: 10px;
    justify-items: center;
    align-items: center;
    text-align: center;
    font: 1.3em 'whiterabbit', Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif"

        
}

.day {
    display: flex;
    font-size: 2.3em;
    width: 100%;
    height: 100%;
    padding: 0 5px;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    color: black;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
}

.event-info a {
    font-weight: 500;
}

.event-info {
    line-height: 1.3em;
}

.q {
    margin-top: 50px;
    font-size: 1.6em;
    color: #999;
    line-height: 1.5em;
}

.a {
    line-height: 1.7em;
}

.home-link {
    position: absolute;
    right: 20px;
    height: 30px;
    margin: 10px 0px 10px 0px
}

.float-left {
    float: left;
    margin: 15px 15px 15px 0;
    max-width: 50%;
}

.float-right {
    float: right;
    margin: 15px 15px 15px 15px;
    max-width: 50%;
}

p.list strong {
    color: rgba(122,67,4,1.00);
}

/* end calendar styling*/

@media only screen and (min-width:1028px){
    
.three-col{
    grid-template: 1fr / repeat(3, 1fr);
    margin: 30px 20px;

} 
p.listing {
    column-count: 2;
    column-gap: 30px;
}
    .tracks {
    grid-template: 1fr / repeat(3, 1fr);
}
 
ul.schedule-row {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    margin: 0;

}
    
ul.schedule-row li{
    margin: 0;

}
li.sched-fill {
    display: inline-block;

}
    

}




/* Desktop Styling */

@media only screen and (min-width:800px){
    
header {
    }

nav {
    height: 100%;
    min-height: 60px;
    }
	
nav ul {
    grid-template: minmax(60px, auto) / repeat(4, 1fr);
}
    
nav.subnav ul.submenu {
    grid-template: minmax(30px, auto) / repeat(6, 1fr);
    color: #4a9462;
}
#page-title {
    padding: 10px;
    margin: auto 0;
    font-size: 4em;
}
nav li:hover {
    background-color: #222
}
    
#nav-toggle, .burger-menu {
    display: none;
}
    
.menu {
    display: grid;
}

ul.menu {
    margin: 0 0 -10px 0;
}
    
#news-toggle, .news-expand {
    display: none;
}
    
.news-item {
    display: grid;
    margin-top: 0;
}
    
#content {
    grid-template: 100% / 60% 1fr;
    grid-gap: 20px;
    margin-top: 20px;
}
    
img.scale {
    max-width:80%;
    height:auto;
}
#news {
    height: 100vh;
    top: 20px;
    position: sticky;
    position: -webkit-sticky;
    overflow: auto;
    }
    
.content-title {
    font-size: 1.2em;
    margin: -20px 0 -30px 20px;
}
    
.page-index {
    height: 100vh;
    top: 20px;
    position: sticky;
    position: -webkit-sticky;
    overflow: auto;
    padding-top: 20px
}

section {
    background-color: #111;
    padding: 30px;
}
    
.location {
    width: 60px;
}
.home-link {
    position: absolute;
    right:20px;
    height: 30px;
    margin: 10px;    
}
    
.title-box {
    background-image: linear-gradient (to bottom right, rgba(0,0,0,.80), rgba(0,0,0,.00));
}
    
.title-box h1 {
    display: none;
}
    
.title-box img.image-title {

}
    
.calendar-entry {
    grid-template: 1fr / 1fr 2fr;
}
    
h1 {
   font-size: 3.5em; 
}
    
h2 {
    font-size: 3em; 
}

h3 {
    font-size: 2.5em; 
}
    
h4 {
    font-size: 2.1em; 
}
    
h5 {
    font-size: 1.7em; 
}
    
h6 {
    font-size: 1.3em; 
} 
    
article.post {
    margin: 0 0 50px 0;
}
    
#news .sec-title {
    display: inline-block;
    margin: 0 0 30px -10px;
}

.category {
    margin: 60px 20px 15px;
    padding: 0;
    color: #e25238
}
    
main {
    display: grid;
    grid-template: 1fr 15fr / 1fr;
    color: #777;
    grid-gap: 20px;
    padding: 30px
}


}

@media only screen and (max-width:480px){

#page-title {
    padding-left: 20px;
    margin: auto 0;
    font-size: 2.4em;
}
    
}

@font-face{font-family:'whiterabbit';src:url("../../images/fonts/whitrabt-webfont.woff")format('woff');font-weight:normal;font-style:normal;text-rendering: optimizeLegibility;font-display: swap;}

p.status-date {
    margin: 0 20px;
    padding: 0;
    font-size: 2em;
    color: #aaa;
}
