/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body#login {
    background-image: url('content/lighttower-super-blurry.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-color: #7c7a89;
    color: white;
}

#login #cover {
    max-width: 400px;
    width: 100%;
    margin-bottom: 1rem;
    border: 10px solid white;
    border-radius: 10px;
}

#login h1 {
    color: white;
    font-size: 2rem;
}

@media screen and (max-width: 600px) {
    #login h1 {
        font-size: 1.5rem;
    }
}

#login label {
    display: block;
    margin-top: 0.75rem;
    max-width: 500px;
    text-align: center;
    line-height: 1.35;
}

#login form {
    display: flex;

    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#login input {
    font-family: 'Josefin Sans', sans-serif;
    border: none;
    margin-top: 0.75rem;
    padding: 1rem;
    width: 250px;
    display: block;
    border-radius: 10px;;
}

#login button {
    display: block;
    margin-top: 0.5rem;
    padding: 1rem;
    background-color: #403e49;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: 'Josefin Sans', sans-serif;
    width: 250px;
    cursor: pointer;
}

#login button:hover {
    background-color: #555361;
}

#login button:active {
    background-color: #292730;
}

#login #error-message {
    margin-top: 0.5rem;
}

.album-title {
    font-family: "Kaushan Script", cursive;
    font-weight: 400;
    font-style: normal;
}

.container-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(124, 122, 137, 0.65);
    padding: 1rem;
}
/*
#7e726f

#7c7a89
*/

.hidden {
    display: none;
}

body#main {
    background-color: #f2f0ee;
}

#headline {
    background: linear-gradient(0deg, rgba(124, 122, 137, 0.65), rgba(124, 122, 137, 0.65)), url('content/lighttower-super-blurry.webp');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    color: white;
    padding-top: 1rem;
}

#headline #cover {
    max-width: 250px;
    border: 10px solid white;
    border-radius: 10px;
    margin-right: 2rem;
}

#headline h1 {
    font-size: 4rem;
    line-height: 5rem;
}

#headline h2 {
    font-size: 2rem;
    margin-top: 1rem;
}

.header-cta {
    color: #292730;
    text-transform: uppercase;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1;
    background-color: white;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

@media screen and (max-width: 800px) {
    #headline #cover {
        max-width: 180px;
        border: 6px solid white;

        margin-right: 1rem;
    }

    #headline h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    #headline h2 {
        font-size: 1.75rem;
        margin-top: 0.75rem;
    }
}



.content-wrapper {
    max-width: 960px;
    margin: 0 auto;
}

#headline .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media screen and (max-width: 600px) {
    #headline .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    #headline-text {
        text-align: center;
    }

    #headline #cover {
        max-width: 180px;
        border: 6px solid white;

        margin-right: 1rem;
    }

    #headline h1 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    #headline h2 {
        font-size: 1.75rem;
        margin-top: 0.75rem;
    }

    #tab-group .content-wrapper {
        display: block;
    }
}

aside {
    display: block;
    font-style: italic;
    background-color: #d8e6ffb9;
    padding: 1rem;
    border-radius: 6px;
}

#tab-group {
    overflow-y: auto;
}



#tabs {
    display: flex;
    margin-top: 1rem;
}

a.tab {
    color: white;
    display: block;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
}

a.tab.active {
    border-bottom: 3px solid white;
}

.panel {
    padding: 1rem;

}

.panel h1 {
    font-size: 2rem;
    margin: 1.25rem 0 1rem;
}

.panel h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 1rem;
}

.panel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.panel h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
}

.panel p {
    margin-top: 0.25rem;
    line-height: 1.35;
}

p.cite {
    margin-top: 1.3rem;
    padding-left: 1rem;
    border-left: 4px dashed #ccc;
    font-style: italic;
    font-weight: 300;
}

p.person-name {
    text-align: right;
    font-weight: 700;
    padding-right: 3rem;
    margin-top: 0;
}

#photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.25rem;
}

#photo-grid li {
    padding-top: 67%;
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

@keyframes up {
    0% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(0);
    }
}

#photo-grid .desc {
    display: none;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 48%, transparent 100%);
    padding: 0.75rem;
    position: absolute;
    bottom: 0;
    color: white;
    line-height: 1.3;
    padding-top: 2rem;
    animation: up 0.23s ease-in forwards;
}

#photo-grid li:hover .desc {
    display: block;
}

img.responsive {
    max-width: 100%;
}

.mt-1 {
    margin-top: 1rem;
}

.boxed-list {
    margin-top: 1rem;
}

.boxed-list li {
    display: grid;
    grid-template-columns: 8fr 2fr;
    gap: 0.5rem;
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 3px 4px 5px -2.2px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    align-items: center;
}

.boxed-list li a.button {
    color: white;
    background-color: #7d7b8a;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.boxed-list li a.button:hover {
    background-color: #7d7b8a;
}

#records-list audio {
    display: block;
    margin-top: 0.25rem;
    width: 100%;
}

footer {
    text-align: center;
    padding: 1rem 0 2rem;
}

footer .band-name {
    font-size: 0.75rem;
    letter-spacing: 0.5rem;
    margin-top: 0.25rem;
    text-transform: uppercase;
}

footer .social-media {
    margin-top: 1rem;
}

footer .mail {
    margin-top: 1rem;
    font-weight: 300;
}

#logout-link {
    display: block;
    color: #292730;
    text-decoration: none;
    text-align: center;
    margin-top: 1.5rem;
}

#logout-link:hover {
    text-decoration: underline;
}
