/*
 * Custom CSS
 */

@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');

body {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
}

.navbar-transparent {
    background-color: rgba(255, 255, 255, 0.85);
}

#mainNavBar {
    transition: top 0.3s;
    font-size: 1rem;

}

#title_section {
    height: 100vh;
    margin-top: -76px;
    position: relative;
    min-height: 900px;
    overflow: hidden;
}

#title_section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("images/rummage_bg_1.jpg") no-repeat fixed center;
    background-size: cover;
    opacity: 0.32;
    z-index: -1;
}

#about_section, #signup_section {
    margin: 0 auto;
    position: relative;
}

#about_section::before, #signup_section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background: url("images/rummage_bg_2.jpg") no-repeat center fixed;
    opacity: 0.2;
    z-index: -1;
}

#sponsors_section {
    margin: 0 auto;
    position: relative;
    opacity: 1;
}

#sponsors_section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("images/rummage_bg_3.jpg") no-repeat center fixed;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}

.section-bg-white {
    background-color: #fff;
}

.section-bg-dark {
    background-color: #383838;
}
.caption {
    position: absolute;
    left: 0;
    top: 20%;
    width: 100%;
    text-align: center;
    color: #000;
}

.strong {
    font-weight: 600;
}

.navbar-hidden {
    top: -76px !important;
}

.bg-date-header {
    background-color: #74b926;
}