:root {
    --black: #000;
    --primary: #39b54a;
    --white: #fff;
    --shadow: #999;
  }

html {
    margin: 0;
    padding: 0;
    font-size: 10px;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", serif;
}

h1, h2, h3, h4, h5 {
    font-family: "zuume-edge", sans-serif;
    letter-spacing: 2px;
}

.hidden {
    display: none;
}

.message.info {
    cursor: default;
}

header {
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    justify-content: space-between;
    background-color: var(--black);
    color: var(--primary);
}
header a, footer a {
    color: var(--primary);
    text-underline-offset: 1rem;
    font-family: "zuume-edge";
    font-size: 3rem;
    letter-spacing: 2px;
}
header a:hover, footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.title-logo {
    font-size: 4rem;
}
.title-logo a {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.title-logo a div {
    display: flex;
    flex-direction: column;
}

header .title-logo a:hover {
    text-decoration: none;
}
span.logo-bottom-line {
    margin-top: -1rem;
}
span.logo-top-line {
    margin-bottom: -1rem;
}
nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    column-gap: 2rem;
}

.hero-background {
    background-image: url(/img/hero_cyclist.jpg);
    background-position: center center;
    background-size: cover;
    height: 40rem;
    display: flex;
}
.hero-background .container {
    margin-top: 7rem;
}

.hero-background h1 {
    color: var(--white);
    font-size: 5rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 0 10px var(--black);
}
.hero-watermark {
    background-image: url(/img/logo_watermark.png);
    height: 271px;
    margin-bottom: -50px;
    margin-top: -200px;
    background-repeat: no-repeat;
    background-position: 90%;
    display: none;
    opacity: 0.5;
}
.tag-line-area {
    background-color: var(--primary);
    color: var(--black);
    padding: 3rem 0;
    margin: 5rem auto;
}
.tag-line-area h2  {
    font-size: 5rem;
    text-align: center;
    margin: 0;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 3px;
}
.tag-line-area h3  {
    font-size: 3rem;
    text-align: center;
    margin: 0;
    letter-spacing: 2px;
}
.map-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
   
}
.map-section .map-container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-bottom: 2rem;
}
footer {
    background-color: var(--black);
    color: var(--primary);
    padding: 5rem 0;
}

.information-container {
    box-shadow: 0 0 5px var(--shadow);
    padding: 1rem 2rem;
    margin: 2rem 0;
}
.information-container .information-container-title {
    display: flex;
    justify-content: space-between;
}

.information-container .information-container-content {
    overflow-y: auto;
}

.information-container .tab {
    overflow: hidden;
}

.information-container .tab button{
    background-color: var(--shadow);
    float: left;
    border: none;
    border-bottom: none;
    border-radius: 1rem 1rem 0 0;
    outline: none;
    cursor: pointer;
    margin-bottom: 0;
    transition: 0.3s;
}


.information-container .tab button:hover {
    background-color: var(--primary);
    color: var(--white);
}

.information-container .tab button.active {
    background-color: var(--primary);
    color: var(--white);
}
  
.information-container .tabcontent {
    display: none;
    background-color: #ddffdd;
    padding: 2rem 2rem;
}

.twin-ride {
    border: 1px solid black;
    padding: 2rem;
    margin-bottom: 2rem;
}

.twin-ride-link {
    display: flex;
    justify-content: space-between;
}
.twin-ride-link h3{
    margin: 0;
}
.twin-ride .list-display {
    display: none;
}

.twin-ride-link .fa-chevron-down {
    display: initial;
}
.twin-ride-link .fa-chevron-up {
    display: none;
}

.twin-ride-link.expanded .fa-chevron-down {
    display: none;
}
.twin-ride-link.expanded .fa-chevron-up {
    display: initial;
}


.button, button, input[type='button'], input[type='reset'], input[type='submit'] {
    background-color: var(--color-cakephp-red);
    border-color: var(--color-cakephp-red);
}
.tabcontent-row-image {
    height: 30rem;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
}
.sign-up-box {
    width: 60%;
    margin: 2rem auto;
}

body .fc .fc-scrollgrid-section-sticky {
    background-color: var(--primary);
    color: var(--black);
}


@media screen and (min-width: 768px){
    header {
        flex-direction: row;
    }
    .hero-watermark {
        display: block;
    }
    .map-section {
        display: flex;
        flex-direction: row;
        column-gap: 2rem;
    }
    .map-section .map-container {
        width: 50%;
    }
    .map-section .map-words {
        width: 50%;
    }

    .tabcontent-row {
        display: flex;
        flex-direction: row;
        column-gap: 2rem;
    }

    .tabcontent-row-image {
        height: 15rem;
        width: 50%;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .tabcontent-row-description {
        height: 15rem;
        width: 50%;
        background-size: contain;
        background-repeat: no-repeat;
    }
    
}

@media screen and (min-width: 768px){
    .tabcontent-row-image {
        height: 30rem;
        width: 50%;
        background-size: contain;
        background-repeat: no-repeat;
    }
    .tabcontent-row-description {
        height: 30rem;
        width: 50%;
        background-size: contain;
        background-repeat: no-repeat;
    }

}