:root {
    --purple: #800080;
    --light-purple: #b266ff;
    --yellow: #fff200;
    --white: #ffffff;
    --black: #000000;
    --gradient-light: linear-gradient(135deg, var(--purple), var(--white));
    --gradient-dark: linear-gradient(135deg, var(--black), var(--purple));
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: var(--white);
    padding: 1rem 2rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--yellow);
    background: var(--purple);
    border-radius: 50%;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 0 10px var(--light-purple);
    text-shadow: 1px 1px 2px var(--black);
}

.logo a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    font-size: 1.5rem;
}

.logo a:hover {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--yellow);
    font-weight: bold;
    background: var(--purple);
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 8px var(--light-purple);
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-menu li a:hover {
    transform: scale(1.1);
}

.nav-menu li.current > a {
    font-weight: bold;
    color: var(--yellow);
    text-decoration: underline;
}

main {
    padding: 2rem;
}

.hero-image {
    background: linear-gradient(to bottom, rgba(128, 0, 128, 0.4), rgba(0, 0, 0, 0.6));
    padding: 2rem 0;
    text-align: center;
}

.hero-image img {
    width: 600px;
    height: 600px;
    border: 5px solid var(--purple);
    box-shadow: 0 0 20px var(--light-purple);
    border-radius: 8px;
    display: block;
    margin: 2rem auto;
    object-fit: cover;
    max-width: 100%;
}

h2 {
    text-align: center;
    background: var(--gradient-light);
    color: var(--yellow);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 0 5px var(--light-purple);
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: var(--white);
    color: var(--black);
    box-shadow: 0 0 10px rgba(128, 0, 128, 0.6);
}

thead {
    background: var(--gradient-light);
    color: var(--yellow);
}

th, td {
    border: 1px solid var(--purple);
    padding: 0.75rem 1rem;
    text-align: left;
}

.featured-music iframe {
    margin-top: 1rem;
    box-shadow: 0 0 15px var(--purple);
    border: 4px solid var(--yellow);
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.carousel img, .carousel video {
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin: 0.5rem;
    border: 2px solid var(--yellow);
    border-radius: 0.5rem;
    box-shadow: 0 0 10px var(--purple);
}

footer {
    background: var(--gradient-dark);
    color: var(--yellow);
    text-align: center;
    padding: 1rem;
}

.social-links img {
    margin: 0 0.5rem;
    transition: transform 0.2s;
}

.social-links img:hover {
    transform: scale(1.1);
}

.contact-info a {
    color: var(--yellow);
    text-decoration: underline;
}

.portrait {
    width: 600px;
    height: 600px;
    display: block;
    margin: 2rem auto;
    border-radius: 10px;
    border: 4px solid var(--light-purple);
    box-shadow: 0 0 15px var(--purple);
    object-fit: cover;
    max-width: 100%;
}

.about-page {
    background-image: url('D8KQF0/img/portrait2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--white);    
}

@media (max-width: 600px) {
    .header-container,
    .nav-menu,
    .contact-content,
    .carousel {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .carousel img,
    .carousel video {
        width: 100%;
        height: auto;
    }

    .hero-image {
        height: 150px;
    }

    .contact-info {
        text-align: left;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .carousel {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .carousel img,
    .carousel video {
        width: 100%;
        height: auto;
    }

    .hero-image {
        height: 250px;
    }
}

@media (min-width: 1025px) {
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 2rem;
    }

    .carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .carousel img,
    .carousel video {
        width: 100%;
        height: auto;
    }

    .hero-image {
        height: 300px;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.facebook-event-alternative {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    margin: 1rem auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.facebook-event-alternative:hover {
    transform: scale(1.01);
}

.facebook-event-alternative a {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.event-img {
    width: 600px;
    height: auto;
    object-fit: cover;
}

article.introduction {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    background-color: #f9f9f9;
    color: #111;
    border-left: 4px solid #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    border-radius: 8px;
}

aside.disclaimer {
    font-size: 0.95rem;
    color: #666;
    background-color: #f1f1f1;
    padding: 0.5rem 1rem;
    border-top: 1px dashed #ccc;
    margin: 2rem auto;
    max-width: 800px;
}

section.featured-music figure {
    margin: 1rem auto;
    text-align: center;
    max-width: 900px;
}

section.featured-music figcaption {
    font-size: 0.95rem;
    color: #555;
    margin-top: 0.5rem;
    font-style: italic;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 100;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
    width: auto;
    height: auto;
    padding: 0.5em 1em;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    z-index: 1000;
}

details {
    margin-bottom: 1.5rem;
}

details summary {
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

table caption {
    caption-side: top;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: left;
    display: table-caption;
    color: #777;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #f9f9f9;
    color: #111;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(128, 0, 128, 0.5);
}

.contact-form label {
    display: inline-block;
    margin-bottom: 0.2rem;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form textarea {
    margin-top: 0;
    display: block;
    width: 35ch;
    max-width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--purple);
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
}

.contact-form textarea {
    height: 8rem;
}

.contact-form input[type="radio"],
.contact-form input[type="checkbox"] {
    margin-right: 0.5rem;
}

.contact-form input[type="submit"] {
    background-color: var(--purple);
    color: var(--yellow);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
    background-color: var(--light-purple);
}

main a:link {
    color: var(--yellow);
    text-decoration: underline;
    font-weight: bold;
}

main a:visited {
    color: #999999;
    text-decoration: underline;
    font-weight: normal
}

h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}