html {
    scroll-behavior: smooth;
}

body {
    background-color: #F7F7F7;
    font-family: Futura, SF Pro, Verdana;
    margin: 0px auto;
    color: #303030;
}

.anchor {
    display: block;
    visibility: hidden;
}

.container-text-only {
    padding: 10px 15px 15px 15px;
}

/* COLORS

WHITE: F7F7F7
BLACK: 303030
BLUE: 007EA7

*/

/* TEXT & LINKS */

p {
    font-size: 1rem;
}

a {
    color: #990000;
    text-decoration: none;
    font-weight: bold;
}

.footer-link, a {
    color: #F7F7F7;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #007EA7;
}

.text-blue-highlight {
    color: #007EA7;
}

.text-blue-highlight-b {
    color: #007EA7;
    font-weight: bold;
}


.draft-banner {
    background-color: rgb(247, 108, 9); 
    color: #F7F7F7; 
    text-align: center; 
    font-size: .7rem; 
    padding: 3px; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 9999; 
    box-shadow: 0px 1px 7px #262626;
}
/* HEADER */

.header-background {
    position: relative;
    background-image: url(web-graphics/background-header.png);
    background-size: cover;
    background-position: bottom;
}

.header-logo {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
    font-weight: bold;
    font-size: 3rem;
}

.header-menu {
    width: 100%;
    font-size: 1rem;
    text-align: center;
    padding-bottom: 10px;
}

/* COUNTDOWN */

.countdown-background {
    background-color: #ffffff;
    -webkit-animation: blue-fade 5s ease-in-out 0s;
    -moz-animation: blue-fade 5s ease-in-out 0s;
    -o-animation: blue-fade 5s ease-in-out 0s;
    animation: blue-fade 5s ease-in-out 0s;
}

#countdown {
    margin: 0px auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    text-align: center;
    font-size: 1rem;
    padding-top: 10px;
    padding-bottom: 10px;
    letter-spacing: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 25px;
}

  @-webkit-keyframes blue-fade {
    from {
      background: #007EA7;
    }
    to {
      background: #FFFFFF;
    }
  }
  @-moz-keyframes blue-fade {
    from {
      background: #007EA7;
    }
    to {
      background: #FFFFFF;
    }
  }
  @keyframes blue-fade {
    from {
      background: #007EA7;
    }
    to {
      background: #FFFFFF;
    }
  }

/* ABOUT */

.about-background {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.about-background .content {
    position: relative;
    z-index: 1;
    padding: 15px;
    max-width: 900px;
    color: #303030;
    margin: 0px auto;
    margin-left: auto;
    margin-right: auto;
}

.about-flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 15px;
}

.about-header {
    color: #303030;
    text-align: right;
    font-size: 3.5rem;
    font-weight: bold;
    padding: 15px;
    align-items: end;
    width: 70%;
}

.about-text {
    color: #303030;
    padding: 15px;
}



/* SPEAKERS */

.speakers {
    margin: 0px auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    padding: 30px;
}

.speakers-background {
    background-image: url(web-graphics/background-speakers.png);
    background-color: #F7F7F7;
    background-size: 300px;
}

.speakers-header {
    color: #303030;
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    padding-bottom: 15px;
}

.speakers-carousel {
    display: inline-flex;
    width: fit-content;
    /*gap: 20px;
    margin: auto; */
    animation: scroll 35s linear infinite; /* Adjust the duration as needed */
}

/* Use a media query for smaller screens (tweak as needed) */
@media (max-width: 768px) {
    .speakers-carousel {
      animation-duration: 17s;  /* slower on mobile, for instance */
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Adjust to scroll through all items */
    }
}

.carousel-wrapper {
    overflow: hidden;
    /* white-space: nowrap; */
    position: relative;
    width: 100%;
}

.speakers-carousel-item {
    flex: 0 0 auto;
    width: 200px;
}

.speakers-carousel-content {
    display: flex;
    align-items: top;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.speakers-photo {
    border-radius: 100%; 
    border: 4px solid #007EA7;
    height: 170px;
}

.speakers-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.speakers-title {
    font-style: italic;
    font-size: .9rem;
    color: #354766;
}




/* AGENDA */

.agenda {
    margin: 0px auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    padding: 15px;
}

.agenda-background {
    background-image: linear-gradient(180deg, #007EA7,#006e93);
}

.agenda-header {
    color: #F7F7F7;
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    padding: 15px;
}

.agenda-flexbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 15px;
    padding: 15px;
}

.agenda-time {
    font-weight: bold;
    font-size: .9rem;
}

.agenda-title {
    color: #F7F7F7;
    font-size: 1.1rem;
}

.agenda-presenters {
    font-style: italic;
    font-size: .8rem;
}




/* ATTENDANCE */

.attendance {
    margin: 0px auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
}

.attendance-background {
    background-image: url(web-graphics/background-attendance.png);
    background-size: cover;
    background-position: center;
}

.attendance-header {
    color: #303030;
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    padding: 15px;
}

.attendance-map {
    text-align: center;
    padding: 15px;
    width: 80%;
}

.attendance-text {
    text-align: left;
    padding: 15px;
    width: 80%;
}



/* SPONSORS */

.sponsors {
    margin: 0px auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.sponsors-background {
    background-image: linear-gradient(180deg, #303030, #1A1A1A);
}

.sponsors-header {
    color: gray;
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    padding: 15px;
}

.sponsors-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 15px;
}

/* FOOTER */
.footer {
    font-size: .6rem;
    padding: 50px 10px 30px 10px;
    text-align: center;
    color: #F7F7F7;
    background-color: #1a1a1a;
}