:root {
    --background-color: #aec0ab;
    --text-color: #f4f3e8;
    --footer-background-color: var(--text-color);
    --footer-text-color: #000000;
    --footer-padding: 2.5rem;
    --page-padding: 2rem;
    --paragraph-spacing: 1rem;
    --header-padding: 2rem;
    --header-padding-bottom: 0;
    --header-font-size: 2rem;
    --text-column-font-size: 2.5rem;
    --about-font-size: 1.7rem;
    --link-color: #4682B4;
    --link-visited-color: #3A699A;
    --link-hover-color: #5A9BD8;
    --link-active-color: #2C5785;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    position: relative;
    min-height: 100vh;
    flex: 1;
    overscroll-behavior: none;
}

header {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: var(--header-padding);
    padding-bottom: var(--header-padding-bottom);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    margin: 0;
    font-size: var(--header-font-size);
    flex-shrink: 0;
}

header h1 a {
    color: var(--text-color);
    text-decoration: none;
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:visited {
    color: var(--link-visited);
}

a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

a:active {
    color: var(--link-active);
}

nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin: 0 1rem;
}

.nav-links li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-media {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-media li {
    margin-left: 1rem;
}

.social-media li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
}

.header-icon {
    font-size: 1.5rem;
    margin-left: 0;
    margin-right: 10px;
}

.footer-icon {
    font-size: 2rem;
    margin: 0 10px;
    color: var(--footer-text-color);
}

footer {
    background-color: var(--footer-background-color);
    color: var(--footer-text-color);
    padding: var(--footer-padding);
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

footer ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#content-box {
    flex: 1;
    padding: var(--page-padding);
}

.columns {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--page-padding);
}

.column {
    flex: 1;
    box-sizing: border-box;
}

.text-column {
    font-size: var(--text-column-font-size);
}

.column img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

#about img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 700px;
    margin-bottom: 20px;
}

#about div {
    width: 100%;
}

#about p {
    margin: 0 0 var(--paragraph-spacing) 0;
    font-size: var(--about-font-size);
}

.active-link {
    text-decoration: underline !important;
}

.bw-image {
    filter: grayscale(100%);
}

.music-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
}

.music-list li {
    margin-bottom: 2rem;
}

#shows ul {
    list-style-type: none; 
    padding: 1rem; 
    margin: 0;
}

#shows li {
    margin-bottom: 3rem;
}

#shows ul h3 {
    font-size: 1.1em;
    font-weight: bold;
}


#contact {
    text-align: center;
}

#contact h1 {
    margin-bottom: 4rem;
}

.cryptedmail:after {
    content: attr(data-name) "@" attr(data-domain) "." attr(data-tld); 
}

.article h2 {
    text-align: center;
}


/*
#contact {
    display: flex;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 600px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, textarea {
    width: 100%;
}

.contact-form #name, #email, #subject {
    height: 2rem;
}

.contact-form #message {
    height: 12rem;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form button {
    padding: 10px;
    border-width: 1px;
    background-color: white;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}
*/
/* Media queries for responsive design */

/* Small devices (tablets, 576px and up) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-links {
        justify-content: flex-start;
        width: 100%;
        margin-bottom: 1rem;
    }

    .social-media {
        justify-content: flex-start;
        width: 100%;
    }

    .nav-links li {
        margin-top: 1rem;
        margin-right: 2rem;
        margin-left: 0;
    }

    .social-media li {
        margin: 0.5rem 0;
    }

    .header-icon {
        font-size: 1.5rem;
        margin-left: 0;
        margin-right: 30px;
    }

    .nav-links li a,
    .social-media li a {
        font-size: 1rem;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    footer ul {
        justify-content: flex-start;
        width: 100%;
    }

    .columns {
        flex-direction: column;
    }

    .image-column, .text-column {
        margin: 0;
    }

    #main-content p {
        font-size: 2rem;
    }

    #about p {
        font-size: 1.3rem;
    }

    .music-list li iframe {
        width: 100%;
        height: auto;
    }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    #main-content p {
        font-size: 1.3rem;
    }

    #about p {
        font-size: 1rem;
    }
}