@font-face {
    font-family: 'Montserrat';
    src: url('assets/Fonts/Montserrat-Black.ttf') format('ttf');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('assets/Fonts/Montserrat-ExtraBold.ttf') format('ttf');
    font-weight: 800;
    font-style: normal;
}

.NavigationBar {
  background-color: #00000000;
  position: relative;
  top: 30px;
  z-index: 1000;
  height: 60px;
  width: 100%;
}

.Navigation-links {
  list-style: none;
  display: flex;

  justify-content: center;
  gap: 100px;
  font-size: 28px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.Navigation-links li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
  display: inline-block; 
  transition: color 0.3s, transform 0.3s ease;
}

.Navigation-links li a:hover {
  transform: translateY(-10px);
  color: #fff;
}

body {
    background-color: rgba(5, 5, 5, 0.952);
    color: white;
    margin: 0;
    font-family: 'Montserrat', sans-serif;

    background-image: url('/assets/BackgroundLoop.png');
    background-repeat: repeat-y;
    background-size: 100% auto; /* adjust based on image height */
    background-position: top center;

  animation: scrollOverlay 40s linear infinite;
}
h1.page-title {
    font-size: 50px;
    text-align: center;
    margin-top: 20px;
    font-weight: 1000;
    color: #ffffff;
}
h2.page-title {
    line-height: 1;
    font-size: 100px;
    text-align: center;
    margin-top: 20px;
    font-weight: 1000;
    color: #ffffff;
    background: linear-gradient(180deg, #ffffff, #777777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 0.5cap rgba(255, 255, 255, 0.4);
}

h3.artistinfo-title {
    line-height: 1;
    font-size: 52px;
    text-align: center;
    margin-top: 20px;
    font-weight: 1000;
    color: #ffffff;
}

h2, h3 {
  margin: 0;
  padding: 0;
}

p.page-description {
    font-size: 30px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    color: #ffffff;
}
p, div {
    text-align: center;
}

.page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
padding-top: 30px;
padding-left: 30px;
padding-right: 30px;
gap: 20px
}

.header {
    display: flex;
    gap: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.overlay.show {
  display: flex;
}

.songs-list {
    scroll-behavior: auto;
    line-height: 1.6;
    margin-top: 20;
    margin-bottom: 10;
    text-align: center;
    font-size: 18px;
    font-weight: 1000;
    background: linear-gradient(180deg, #ffffff, #777777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 0.5cap rgba(255, 255, 255, 0.4);
}

.TemplateCard_TextBox1 {
    aspect-ratio: 1/1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 5px solid transparent;
    border-radius: 20px;
    padding: 5px;
    margin: 30px;
    background-image: 
    linear-gradient(black, black),
    linear-gradient(90deg,
        var(--frame-dark, #000002),
        var(--frame-color, #ffffff),
        var(--frame-light, #ffffff)
    );

    box-shadow: 0 0 10px 3px #000000,
    0 0 30px 10px var(--frame-light, #ffffff);
    background-clip: content-box, border-box;
    background-origin: border-box;
    color: white;
}

.TemplateCard_MainFrame1:Hover {
    transform: translateY(-20px);
    box-shadow: 0 10px 25px #ffffff;
}

.TemplateCard_MainFrame1 {  
    flex: 0 0 19%;
    aspect-ratio: 1/1;
    position: relative;
    margin: 5px auto;
    background-color: #1a1a1a;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
}

.TemplateCard_InfoPopup {
  background-color: #111;
  padding: 20px 30px;
  border-radius: 20px;
  color: white;
  width: 800px;
  height: 1100px;
  max-width: 90vw;
  position: relative;
}

/* 🔥 Firebase popup frame (matches album card colors) */
.overlay.FirebaseOverlay .TemplateCard_InfoPopup {
  padding: 20px 30px;
  border-radius: 20px;
  color: white;
  width: 800px;
  height: 1100px;
  max-width: 90vw;
  position: relative;

  border: 5px solid transparent;

  background-image:
    linear-gradient(#111, #111),
    linear-gradient(90deg,
      var(--frame-dark, #222),
      var(--frame-color, #ffffff),
      var(--frame-light, #ffffff)
    );

  background-clip: padding-box, border-box;
  background-origin: border-box;

  box-shadow: 0 0 20px var(--frame-light, #ffffff);
}

/* ✅ Make Firebase cards get the SAME "frame glow" behavior as manual cards */
.FirebaseCard .TemplateCard_TextBox1 {
  /* inner frame glow uses your auto-picked colors */
  box-shadow:
    0 0 10px 3px var(--frame-dark, #000000),
    0 0 30px 10px var(--frame-light, #ffffff) !important;
}

/* ✅ Boost inner glow when hovering the firebase card (like manual hover glow) */
.FirebaseCard:hover .TemplateCard_TextBox1 {
  box-shadow:
    0 0 14px 4px var(--frame-dark, #000000),
    0 0 45px 14px var(--frame-light, #ffffff) !important;
}

.TemplateCard_Rating1 {
    text-align: center;
    font-size: 300px;
    background: linear-gradient(180deg, #ffffff,#949494);

}

.TemplateCard_InfoPopup.show {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.TemplateCard_Hover1-number {
    position: absolute;
    bottom: 12px;
    right: 16px;

    font-weight: 900;
    font-size: clamp(18px, 2vw, 36px);

    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 12px;
    backdrop-filter: blur(6px);

    pointer-events: none;
    z-index: 10;
}

.TemplateCard_MainFrame1-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.TemplateCard_TextBox1 img {
    border-radius: 5px;
    max-width: 100%;
    height: auto;  
}

.Glow-Hover {
--glow-color: #E2E2E2; /* default per-box glow */
box-shadow: 0 0 15px var(--glow-color);
transition: box-shadow 0.3s ease;
}

.Grade {
    float: right;
    font-weight: bold;
    -webkit-text-fill-color: initial; /* Reset so JS color works */
    background: none;
    -webkit-background-clip: initial;
    text-shadow: none;
}

/* Image fits nicely inside the fixed container */
.TemplateCard_MainFrame1 img {
  width: 100%;              
  height: 100%;             
  object-fit: cover;        
  display: block;
}

.TemplateCard_MainFrame1:hover {
  transform: scale(1.03);
}

.FirebaseCard {
  flex: 0 0 19%;              
  aspect-ratio: 1 / 1;        
  margin: 5px auto;
  background-color: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px var(--glow-color, #fff);
  position: relative;
}

.FirebaseCard img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 9px;
}

.FirebaseImage {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.FirebaseCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px var(--glow-color);
}

.FirebaseCard .TemplateCard_Hover1-number {
  z-index: 10;
}


#albumContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  margin-top: 40px;
}

/* 🔥 Firebase-specific overlay scaling only */
.overlay.FirebaseOverlay h2.page-title {
  font-size: clamp(40px, 6vw, 100px);
  text-align: center;
  line-height: 1.1;
  margin-bottom: 10px;
}

.overlay.FirebaseOverlay h3.artistinfo-title {
  font-size: clamp(24px, 4vw, 60px);
  text-align: center;
  margin-bottom: 30px;
}

.overlay.FirebaseOverlay .songs-list {
  font-size: clamp(16px, 2vw, 30px);
  line-height: 2;
  padding: 40px;       
  padding-left: 90px;   
  text-align: center;
}


@keyframes scrollOverlay {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: 100%;
  }
}

