/* helpers */

.top-padding {
    padding-top: 30px;
}


/* fonts */

@font-face {
    font-family: "abc-bold";
    src: url("../font/abc-bold.woff") format('woff');
}

@font-face {
    font-family: "abc-light";
    src: url("../font/abc-light.woff") format('woff');
}

/* Define a global font for all elements */
body {
    font-family: abc-light;
    font-size: 100%;
    color: black;
}

/* Title elements receive a bold font style */
h1,
h2,
h3 {
    font-family: abc-bold;
}

/* Set default font sizes for elements */
h1 {
    font-size: 1.3em;
}

h2 {
    font-size: 1em;
}

p {
    font-size: 0.8em;
}

.logo_font {
    font-family: abc-bold;
    font-size: 40px;
}

.nav-font {
    font-family: abc-bold;
    font-size: 20px;
    color: black;
}

.nav-active-font {
    font-family: abc-bold;
    font-size: 20px;
    color: black;
}

.footer-font {
    font-family: abc-bold;
    font-size: small;
    text-align: center;
    word-spacing: -5px;
}

.event-band {
    font-family: 'abc-bold';
    font-size: large;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Set general link colour */
a {
    color: black;
}

a:hover {
    text-decoration-line: none;
    color: black;
}

.event-description {
    font-size: small;
    font-weight: 200;
    margin-bottom: 5px;
}

.event-date {
    font-size: small;
    font-weight: 200;
    text-align: left;
    margin-bottom: 0px;
}

.event-weekday {
    font-family: 'abc-bold';
    font-size: small;
    font-weight: 200;
    text-align: left;
    margin-bottom: 5px;
}

.event-price {
    font-family: 'abc-bold';
    font-size: small;
    font-weight: 200;
    margin-bottom: 0px;
}

.title-font {
    font-family: abc-bold;
    font-size: 20px;
    color: black;
}

.standard-font {
    font-family: abc-light;
    font-size: 15px;
    color: black;
}


/* Colours */

.month-01 {
    background-color: #fdab3f;
}

.month-02 {
    background-color: #8761b8;
}

.month-03 {
    background-color: #aa6a3e;
}

.month-04 {
    background-color: #2c4b81;
}

.month-05 {
    background-color: #f44c5b;
}

.month-06 {
    background-color: #ff9a00;
}

.month-07 {
    background-color: #ff9a00;
}

.month-08 {
    background-color: #ff9a00;
}

.month-09 {
    background-color: #688849;
}

.month-10 {
    background-color: #ff7862;
}

.month-11 {
    background-color: #716b6b;
}

.month-12 {
    background-color: #4ac6ac;
}


/* Navbar */

.navbar-toggler-custom {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: transparent;
    border-radius: 0.25rem;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0)' stroke-width='3' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-custom {
    padding-top: 0px;
    padding-bottom: 0px;
}


/* Elements */

.event-box {
    background-color: white;
    padding-top: 8px;
    padding-bottom: 5px;
    border-radius: 8px;
    margin-left: 0.2em;
    margin-right: 0.2em;
    margin-bottom: 12px;
}

.event-box:hover {
    background-color: lightgray;
}

.content-box {
    background-color: white;
    padding-top: 8px;
    padding-bottom: 5px;
    border-radius: 8px;
    margin-left: 0.2em;
    margin-right: 0.2em;
    margin-bottom: 12px;
}

/** 
Page styling: event list
**/

/* On the event list we want to use the link to wrap many elements. Modify the line style. */
main.event-list a {
    text-decoration-line: none;
    color: black;
}

/**
Page styling: event detail page
**/

main.event-detail-page h2{
    margin-bottom: 1.5rem;
}

main.event-detail-page article * {
    padding-left: 1rem;
    padding-right: 1rem;
}

main.event-detail-page p.actions {
    padding: 0.8rem;
}

main.event-detail-page p.actions a {
    display: inline-block;
    font-family: abc-bold;
    font-size: 1.1em;
    border-color: black;
    background-color: black;
    color: lightgrey;
    text-decoration-line: none;
    text-align: center;
    border-style: solid;
    border-width: 0.2rem;
    border-radius: 8px;
    padding: 0.3rem;
}