/* Existing styles */
html {
    margin-top: 110px;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    color: whitesmoke;
    background: linear-gradient(to right, #5B005B, #8B4000);
}

h1, h2, h3, .quirky-text {
    font-family: 'Montserrat', sans-serif;
}

.artist-name {
    font-size: 30px;
    color: whitesmoke;
    padding-left: 10px;
    text-shadow: black 1px 1px 3px;
    position: relative;
    top: -15px;
}

#contact {
    padding-bottom: 50px;
}

#navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #5B005B;
    z-index: 1010;
    justify-content: space-between;
    height: 60px;
}

nav ul {
    position: fixed;
    top: 20px;
    right: 10px;
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 18px;
    transition: color 0.3s;
}

a {
    color: white;
}

nav ul li a:hover {
    color: rgba(234, 220, 220, 0.48);
}

.container {
    max-width: 800px; /* Limits width on wide screens */
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.header {
    font-size: 24px;
    color: #333;
    text-align: center;
}

.subheader {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-top: 10px;
}

.content {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.content ul {
    list-style-type: none;
    padding: 0;
}

.content li {
    margin-bottom: 10px;
}

.navbar-toggler {
    color: #eadcdc;
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 10px;
    outline: none;
    border: 1px solid transparent;
    background-color: transparent;
    display: none;
}

.navbar-nav {
    position: fixed;
    top: 0;
    right: 50px;
    background-color: #5B005B;
    list-style: none;
    padding: 10px;
    width: fit-content;
}

.responsive-video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    margin-bottom: 20px;
}

.responsive-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#jingles {
    margin-bottom: 100px;
}

#podcast {
    margin-top: 200px;
}

#contact {
    margin-bottom: 150px;
}

/* ipad & tablets */
#music, #jingles, #podcast, #contact {
    padding-top: 100px;
    margin-top: -100px;
}

.podcast-links {
    text-align: center;
    padding: 20px;
}

.podcast-links a {
    margin: 0 15px;
    display: inline-block;
    vertical-align: middle;
}

.podcast-links img {
    width: 80px;
    height: auto;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.item {
    border: 1px solid #ddd;
    padding: 10px;
    width: 45%;
    box-sizing: border-box;
}

.item img {
    width: 100%;
    height: auto;
}

.item h3 {
    margin: 10px 0 5px 0;
}

.item p {
    font-size: 0.9em;
}

.vybarista-description {
    color: #eadcdc;
    max-width: 800px;
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .item {
        width: 90%;
    }
}

@media screen and (min-width: 600px) {
    .navbar-toggler {
        visibility: hidden;
    }
    .navbar-nav {
        visibility: hidden;
    }
}

@media screen and (max-width: 600px) {
    nav {
        visibility: hidden;
    }
}

.navbar-toggler {
    display: block;
    cursor: pointer;
}

.navbar-toggler span {
    pointer-events: none;
}

[aria-expanded="false"] ~ ul {
    display: none;
}

[aria-expanded="true"] ~ ul .navbar-nav {
    display: block;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #5B005B;
    padding: 10px 0;
}

footer p {
    margin: 0;
    font-size: 12px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
