@font-face {
    font-family: 'BrittanySignature';
    src: url('fonts/BrittanySignature.ttf') format('truetype');
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("images/smoke.png");  /* or your new bg path */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;  /* keeps background pinned */
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    text-align: center;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1 {
    font-family: 'BrittanySignature', cursive;
    font-size: 4em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1em;
    margin-bottom: 30px;
}

section {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 8px 0;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 30px;
    font-size: 0.9em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.social-icons a:last-child {
    margin-left: -10px; 
}

.title-logo {
    width: 40%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: -20px;
}

/* Blog layout styles */

.blog-layout {
    display: flex;
    min-height: 70vh;
    border: 2px solid transparent;
}

.song-list {
    width: 220px;
    padding: 20px 15px;
    border-right: 2px solid rgba(255,255,255,0.25);
}

.song-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.song-list a {
    display: block;
    font-family: 'BrittanySignature', cursive;
    font-size: 1.4em;
    color: #fff;
    padding: 8px 6px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.song-list a:hover,
.song-list a.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.song-blog {
    flex: 1;
    padding: 20px 30px;
    height: 800px;
    overflow-y: auto;
}

.song-blog article + article {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.song-blog h2 {
    margin-top: 0;
    font-size: 1.8rem;
    color: #fadb5f;
}

.blog-entry.hidden {
  display: none;
}

.song-blog article {
    max-width: 750px;
    margin: 0 auto;
    text-align: justify;
    padding: 30px 20px;
}

.numbered-list {
    padding-left: 1.5em;
    margin-left: 0;
    list-style-position: outside;
    text-align: left;
}

.numbered-list li {
    margin-bottom: 10px;
    padding-left: 0.2em;
}

.song-list {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    padding: 0;
}

.title-logo {
    width: 35%;
    height: auto;
    display: block;
    margin: 40px auto 20px auto;
}

.blog-entry h2 {
    font-family: 'BrittanySignature', cursive;
    color: #fadb5f;
    text-align: center;
    font-size: 3em;
    margin-top: 20px;
}

.blog-track-title {
    font-family: 'BrittanySignature', cursive;
    font-size: 1.5rem;
    color: #fadb5f;
    text-align: center;
    margin-top: 40px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.social-icons img:hover {
    filter: brightness(1.4) saturate(1.4);
    transform: scale(1.1);
}

main h2 {
    color: #fadb5f;
}

.signature-container {
    text-align: left;
    margin-top: 40px;
    margin-left: 20px;
}

.signature-image {
    width: 200px;
}

ol li, ul li {
  margin-bottom: 1em;
}

.blog a {
    color: white;
    text-decoration: none;
}

.blog a:hover {
    color: #fadb5f;
}

main section {
  margin-bottom: 40px;
}

/* ===== Mobile fixes ===== */
@media (max-width: 768px) {
  .blog-layout {
    flex-direction: column;   /* stack sidebar on top */
  }

  .title-logo {
    width: 80%;
    margin-top: 10px;
  }

  .song-list {
    position: relative;
    width: 100%;
    border-right: none;
    border-bottom: 2px solid rgba(255,255,255,0.25);
    padding: 10px;
    text-align: center;
  }

  .song-list a {
    font-size: 1.2em;
    display: inline-block;
    margin: 5px 10px;
  }

  .song-blog {
    padding: 15px;
    height: auto;     /* let content expand naturally */
    overflow-y: visible;
  }

  section {
    margin: 20px auto;
    padding: 0 10px;
  }
}

/* ===== Mobile dropdown menu for Blogs page ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    background: #fadb5f;
    color: black;
    font-size: 1.2em;
    padding: 10px 15px;
    margin: 10px auto;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }

  /* Hide sidebar by default */
  .song-list {
    display: none;
  }

  /* Show when toggled */
  .song-list.open {
    display: block;
    width: 100%;
    border-bottom: 2px solid rgba(255,255,255,0.25);
    padding: 10px;
    margin-bottom: 20px;
  }
}

/* On desktop, keep things as-is */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

.video-container {
  width: 100%;
  max-width: 560px;
  margin: 40px auto;
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border: 0;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #fff6b3 0%, #ffd700 40%, #b8860b 100%);
    border-radius: 50%;
    box-shadow: 0 0 6px #ffd700;
    pointer-events: none;
    animation: sparkleFade 0.6s linear forwards;
}


@keyframes sparkleFade {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(2);
  }
}

.video-embed {
  text-align: center;
}

@media (max-width: 768px) {
  footer {
    padding-bottom: 20px;
  }
}









