* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.fixed-header > * {
    pointer-events: auto;
}

main {
    margin-top: calc(max(200px, min(400px, 28.125vw)) + 61px);
}

.banner-section {
    position: relative;
    width: 100%;
    min-height: 200px;
    max-height: 400px;
    height: 28.125vw;
    background-size: auto 100%;
    background-position: left top;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
}

.banner-logo {
    height: clamp(60px, 15vw, 160px);
    max-height: 25%;
    width: auto;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8));
    flex-shrink: 1;
}


.main-nav {
    background-color: #000000;
    border-bottom: 1px solid #333333;
    position: relative;
    width: 100%;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 20px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: #1a1a1a;
}

.composer-name {
    font-size: clamp(1.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    padding: 0 20px;
    max-width: 100%;
    text-align: center;
    overflow-wrap: normal;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    scroll-margin-top: calc(max(200px, min(400px, 28.125vw)) + 61px);
}

#news {
    background-color: #0a0e1a;
    margin-bottom: 30px;
}

.news-item {
    margin-bottom: 30px;
}

.news-item:last-child {
    margin-bottom: 0;
}

.news-date {
    font-size: 0.85rem;
    color: #999999;
    margin-bottom: 10px;
    font-weight: 400;
}

.news-item a {
    color: #ffb347;
    text-decoration: none;
}

.news-item a:hover {
    text-decoration: underline;
}

#songs {
    background-color: #0d1420;
    margin-bottom: 30px;
}

#about {
    background-color: #0f1826;
    margin-bottom: 30px;
}

#about a {
    color: #ffb347;
    text-decoration: none;
}

#about a:hover {
    text-decoration: underline;
}

#about h2 {
    margin-left: calc(25% + 20px);
}

#artists h3 {
    margin-left: calc(25% + 20px);
    margin-bottom: 15px;
}

#artists h3 a {
    color: #ffb347;
    text-decoration: none;
}

#artists h3 a:hover {
    text-decoration: underline;
}

.about-container {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.about-image {
    flex: 0 0 25%;
}

.about-profile-picture {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-text {
    flex: 1;
}

#artists .about-text h3 {
    margin-left: 0;
}

#contact {
    background-color: #0a0e1a;
}

#contact p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
}
.content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content p:last-child {
    margin-bottom: 0;
}

.video-accordion {
    margin-top: 30px;
}

.video-item {
    margin-bottom: 15px;
    border: 1px solid #333333;
    border-radius: 4px;
    overflow: hidden;
}

.video-title {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-thumbnail {
    width: 160px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.video-title:hover {
    background-color: #2a2a2a;
}

.video-item.active .video-title {
    background-color: #333333;
}

.video-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.video-item.active .video-content {
    max-height: 1000px;
}

.video-description {
    padding: 20px;
    padding-top: 0;
}

.video-description p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.video-description p:last-child {
    margin-bottom: 0;
}

.video-wrapper {
    position: relative;
    padding: 20px 20px 0 20px;
    padding-bottom: calc(56.25% + 20px);
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}

#contact {
    margin-top: 30px;
}

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

#contact a:hover {
    text-decoration: underline;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.contact-column h2 {
    margin-top: 0;
    font-size: 1.3rem;
}

.song-list {
    margin-top: 30px;
}

.song-item {
    margin-bottom: 15px;
    border: 1px solid #333333;
    border-radius: 4px;
    overflow: hidden;
    background-color: #1a1a1a;
    scroll-margin-top: calc(max(200px, min(400px, 28.125vw)) + 61px + 20px);
}

.song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-wrap: wrap;
    gap: 15px;
}

.song-header:hover {
    background-color: #2a2a2a;
}

.song-item.active .song-header {
    background-color: #333333;
}

.song-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
}

.song-title a {
    color: #ffffff;
    text-decoration: none;
}

.song-title a:hover {
    color: #ffb347;
}

.song-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.streaming-link {
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.streaming-link:hover {
    color: #4a9eff;
}

.song-lyrics {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.song-item.active .song-lyrics {
    max-height: 3000px;
    padding: 0 20px 20px 20px;
}

.song-lyrics p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.release-list {
    margin-top: 30px;
}

.release-item {
    margin-bottom: 15px;
    border: 1px solid #333333;
    border-radius: 4px;
    overflow: hidden;
    background-color: #1a1a1a;
    scroll-margin-top: calc(max(200px, min(400px, 28.125vw)) + 61px + 20px);
}

.release-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-wrap: wrap;
}

.release-header:hover {
    background-color: #2a2a2a;
}

.release-item.active .release-header {
    background-color: #333333;
}

.album-cover {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.release-info {
    flex-grow: 1;
}

.album-title {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 300;
    color: #ffffff;
}

.artist-name {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: #cccccc;
}

.release-year {
    margin: 0;
    font-size: 0.85rem;
    color: #999999;
}

.release-links {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.release-tracks {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.release-item.active .release-tracks {
    max-height: 5000px;
}

.track-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid #2a2a2a;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.track-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    flex: 1;
    min-width: 200px;
}

.track-item audio {
    flex-shrink: 0;
}

.track-item:hover {
    background-color: #222222;
}

.track-item:last-child {
    padding-bottom: 20px;
}

.track-number {
    font-size: 0.95rem;
    color: #999999;
    min-width: 30px;
    flex-shrink: 0;
}

.track-title {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
}

.track-item .song-item {
    flex-grow: 1;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.track-item .song-item .song-header {
    padding: 20px 0;
}

@media (max-width: 768px) {
    .composer-name {
        letter-spacing: 0.1em;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}   

.main-nav {
    background-color: #000000;
    border-bottom: 1px solid #333333;
    position: relative;
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 20px;
    cursor: pointer;
    z-index: 101;
}

.hamburger:hover {
    background-color: #1a1a1a;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    padding: 20px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        min-height: 61px;
    }

    .main-nav ul {
        position: fixed;
        top: calc(max(200px, min(400px, 28.125vw)) + 61px);
        left: -100%;
        width: 100%;
        height: calc(100vh - max(200px, min(400px, 28.125vw)) - 61px);
        background-color: #000000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        border-right: 1px solid #333333;
    }

    .main-nav ul.active {
        left: 0;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #333333;
    }

    .main-nav a {
        padding: 20px;
        text-align: left;
    }

    .composer-name {
        letter-spacing: 0.1em;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


.aletta-font {
  font-family: "adlery-pro-swash", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.jane-font {
  font-family: "p22-flw-midway-two", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* font-size: 5rem; */
}

.joe-font {
  font-family: "cc-spellcaster", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.marigold-font {
  /* font-family: "dream-big-narrow", sans-serif;
  font-weight: 300;
  font-style: normal; */
  font-family: "dream-big-regular", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* font-family: "dream-big-wide", sans-serif;
  font-weight: 700;
  font-style: normal; */
}

.tom-font {
  /* font-family: "brushberry-sans-one", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-family: "brushberry-sans-two", sans-serif;
  font-weight: 400;
  font-style: normal; */
  font-family: "brushberry-script", sans-serif;
  font-weight: 400;
  font-style: normal;
}
