﻿/* Color Variables*/
:root {
    --dark: #292929;
    --light: #e5e5e5;
}

/*General Style settings*/

body {
    font-family: Anton;
    background-color: var(--light);
    padding: 0;
    margin: 0;
    font-size: calc(12px + 0.1vw);
    max-width: 100vw;
}


h1 {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-top:5vmin;
}


@media only screen and (max-width: 1000px) {
    h1 {
        margin-top: 15vmin;
    }
}

hr {
    border: 2px solid var(--dark);
    border-radius: 1px;
    width: 50%;
}

table {
    border-collapse: collapse;
    width: 50%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    table-layout: fixed;
}

@media only screen and (max-width: 1000px) {
    hr {
        border: 1px solid var(--dark);
        border-radius: 1px;
        width: 80vw;
    }

    table {
        border-collapse: collapse;
        width: 80vw;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        table-layout: fixed;
        font-family: Roboto;
    }
}
tr {
    border-bottom: 2px solid var(--dark);
}
td {
    border-bottom: 2px solid var(--dark);
    border-spacing: 10px;
    padding-bottom: 1em;
    padding-top: 1em;
}

/* Navigation Bar */
.navBar {
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 0.9;
    z-index: 10;
    color: var(--light);
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 0.2vmin;
}

    .navBar a {
        outline: 0;
        text-decoration: none;
        color: var(--light);
        font-size: 25px;
        float: left;
        display: block;
        text-align: center;
        padding: 10px 8px;
        font-weight: bold;
    }

/*.navItems a:hover:after {
    content: '';
    height: 3px;
    background: var(--light);
    display: block;
    
}*/

.navItems a:hover {
    color: #D5383E;
}
    .navBar-social{
        float:right;
    }
        .navBar-social a:hover {
            background-color: #333;
        }

    .navBar-social img{
        height:25px;
    }

.toggle {
    display:none;
}

.navItems {
    display: block;
}

@media only screen and (max-width: 1000px) {
    .toggle {
        display:block;
        float:left;
        margin-left:10px
    }
    .navItems.responsive {
        display: block;
    }
    .navItems {
        display: none;
    }
    #followus {
        display: none;
    }
    .navBar-social {
        position:absolute;
        right: 0;
    }

    .navItem{
        width:100%;
    }
    .navItems a:hover:after {
        display: none;
    }
}

/*Page themes*/
.darkTheme {
    background-color: var(--dark);
    background-size: 100%;
    width: 100%;
    min-height: 100vh;
    height: auto;
    position: relative;
    color: var(--light);
    text-align: center;
    display:block;
    overflow:hidden;
}

    .lightTheme h1 {
        color: #D5383E;
    }

.lightTheme {
    background-color: var(--light);
    background-size: 100%;
    width: 100%;
    min-height: 100vh;
    height: auto;
    position: relative;
    color: var(--dark);
    display: block;
    overflow: hidden;
}

/*Page Layouts*/
#home {
}
#homeBG {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(/img/backgrounds/beide.png) bottom center no-repeat;
    background-size: 100%;
    opacity: 0.8;
}

#logo {
    height: 100vh;
    text-align:center;
    justify-content: center;
    align-items: center;
    vertical-align:central;
}

#newsletter {
    background: url(/img/backgrounds/mrBay_trans.png) no-repeat bottom left fixed;
    background-size: 100%;
    opacity: 0.8;
}

#dates {
    background: url(/img/backgrounds/albatros_trans.png) no-repeat bottom right fixed;
    background-size: 100%;
    opacity: 0.8;
}

@media only screen and (max-aspect-ratio: 15/9) {
    #homeBG {
        background: none;
    }
    #newsletter {
        background: none;
    }

    #dates {
        background: none;
    }
}

#merch {
    opacity: 0.8;
}

/*FORM INPUTS*/
.buttonLight {
    -webkit-appearance: none;
    border: none;
    color: white;
    padding: 10px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-family: Anton;
    margin: 20px 20px;
    cursor: pointer;
    background-color: var(--dark);
}

.buttonDark {
    -webkit-appearance: none;
    border: none;
    color: white;
    color: var(--dark);
    padding: 10px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-family: Anton;
    margin: 20px 20px;
    cursor: pointer;
    background-color: var(--light);
}


.inputLight {
    border: 2px solid;
    border-color: var(--dark);
    color: #292929;
    padding: 10px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-family: Anton;
    margin: 4px 2px;
    background-color: var(--light);
}


.inputDark {
    border: 2px solid;
    border-color: var(--light);
    color: #e5e5e5;
    padding: 10px 50px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    font-family: Anton;
    margin: 4px 2px;
    background-color: var(--dark);
}

textarea {
    margin: 4px 4px;
    width: 25vmax;
    min-height: 30vh;
    font-size: 16px;
}

@media only screen and (max-width: 1000px) {
    textarea {
        width:60vw;
    }
}

/*Special Blocks*/
.bioGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 20px;
    grid-row-gap: 10px;
    width: 50vw;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

#bioText {
    grid-column:1/2;
    text-align: left;
    width: 100%;
    font-size: calc(12px + 0.2vw);
    font-family:Roboto;
}

#bioGigs {
    grid-column: 2;
    text-align: left;
    width: 100%;
    font-size: calc(12px + 0.2vw);
    font-family: Roboto;
}

#bioGigs ul {
    line-height: 1.5em;
    padding: 0; /* Remove padding */
    margin-left: 2vw; /* Remove margins */
}

ul.no-bullets {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin-left: 10px; /* Remove margins */
}

@media only screen and (max-width: 1000px) {
    #bioText {
        grid-column: 1/3;
        grid-row:1/2;
        text-align:center;
    }
    #bioGigs {
        grid-column: 1/3;
        grid-row: 2/3;
        text-align:center;
    }
    .bioGrid {
        min-width: 90vw;
    }
    .bioGrid li{
        margin: 0 0 6px 0;
    }
}




/*News Grid definitions*/
.container {
    display: inline-grid;
    grid-template-columns: 1fr,1fr,1fr,1fr;
    grid-template-rows: 2fr,1fr;
    column-gap: 10px;
    grid-row-gap: 10px;
    width: 75vw;
    overflow: hidden;
    position: relative;
}
#NewsItem-1 {
    grid-column: 1 / 2;
    grid-row: 1/2;
    min-height: 45vmin;
    max-height: 45vmin;
}
#NewsItem-2 {
    grid-column: 2 / 3;
    grid-row: 1/2;
    min-height: 45vmin;
    max-height: 45vmin;
}
#NewsItem-3 {
    grid-column: 3 / 4;
    grid-row: 1/2;
    min-height: 45vmin;
    max-height: 45vmin;
}
#NewsItem-4 {
    grid-column: 1 / 2;
    grid-row: 2/3;
    min-height: 35vmin;
    max-height: 35vmin;
}
#NewsItem-5 {
    grid-column: 2 / 3;
    grid-row: 2/3;
    min-height: 35vmin;
    max-height: 35vmin;
}
#NewsItem-6 {
    grid-column: 3 / 4;
    grid-row: 2/3;
    min-height: 35vmin;
    max-height: 35vmin;
}
.newsBlock {
    position: relative;
    width: 100%;
    height: 100%;
    overflow:hidden;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    /*News Grid definitions*/
    .container {
        display: inline-grid;
        grid-template-columns: 1fr,1fr;
        grid-template-rows: 1fr,1fr,1fr,1fr,1fr,1fr,1fr;
        column-gap: 10px;
        grid-row-gap: 10px;
        width: 78%;
        overflow: hidden;
        position:relative;
    }

    #NewsItem-1 {
        grid-column: 1 / 2;
        grid-row: 1/2;
        min-height: 45vmin;
        max-height: 45vmin;
    }

    #NewsItem-2 {
        grid-column: 1 / 2;
        grid-row: 2/3;
        min-height: 45vmin;
        max-height: 45vmin;
    }

    #NewsItem-3 {
        grid-column: 1 / 2;
        grid-row: 3/4;
        min-height: 45vmin;
        max-height: 45vmin;
    }

    #NewsItem-4 {
        grid-column: 1 / 2;
        grid-row: 4/5;
        min-height: 45vmin;
        max-height: 45vmin;
    }

    #NewsItem-5 {
        grid-column: 1 / 2;
        grid-row: 5/6;
        min-height: 45vmin;
        max-height: 45vmin;
    }

    #NewsItem-6 {
        grid-column: 1 / 2;
        grid-row: 6/7;
        min-height: 45vmin;
        max-height: 45vmin;
    }

    .newsBlock {
        grid-column: 1 / 2;
        position: relative;
        width: 100%;
        text-align: center;
    }

}


/*News Content Definitions*/

.image {
    opacity: 1;
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    border-radius: 0.5px;
}

.newsText {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 5%;
    color: white;
    text-align: left;

}

.newsBlock:hover .image {
    opacity: 0.1;
}

.newsBlock:hover .newsText {
    opacity: 1;
}