@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

/* General Layout */
body {
  font-family: 'Inter', sans-serif;
  margin-left: 100px;
  background: #fff;
  color: #000;
}

.site-header {
  top: 0;
  height: 20%;
  width: 1000px;
  margin-left: 270px;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Footer */
footer {
  font-family: 'Merriweather', serif;
  font-size: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  color: #A9A9A9;
}

/* Menu */
.menu {
  position: relative;
  margin-top: 40px;
  width: 250px;
}

.menu ul,
.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu > ul > li {
  margin-bottom: 25px;
}

.menu > ul > li > a,
.menu-label {
  font-size: 22px;
  font-weight: 700;
  color: black;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 6px 0;
}

.menu-label {
  cursor: default;
  user-select: none;
  font-weight: bold;
  padding: 4px 0;
}

/* Submenus */
.submenu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 2s ease, opacity 2s ease;
  margin-left: 20px;
  margin-bottom: 5px;
}

.has-submenu:hover .submenu {
  max-height: 1000px;
  opacity: 1;
}

.submenu li {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 4px 0 4px 10px;
  cursor: default;
}

.submenu li a {
  color: #000;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

.submenu li a:hover {
  color: #444;
}

/* Link Styling */
a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
}

a:hover,
.menu a:hover,
.submenu li a:hover,
.menu-img a:hover {
  color: #E6E6FA;
  animation: pulseOuterGlowLavender 3s infinite ease-in-out;
  text-decoration: underline;
}

/* Animation */
@keyframes pulseOuterGlowLavender {
  0%, 100% {
    text-shadow:
      0 0 2px rgba(111, 81, 147, 0.3),
      0 0 5px rgba(111, 81, 147, 0.2),
      0 0 15px rgba(111, 81, 147, 0);
  }
  50% {
    text-shadow:
      0 0 8px rgba(111, 81, 147, 0.7),
      0 0 12px rgba(111, 81, 147, 0.5),
      0 0 15px rgba(111, 81, 147, 0.3);
  }
}

/* Page Layout */
.page-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 1000px;
}

.content {
  flex: 1;
}

/* Press Notes */
.press-notes {
  flex: 1;
  max-width: 600px;
  padding-top: 0px;
  padding-bottom: 40px;
  font-size: 12px;
  line-height: 1.6;
}

.post-date {
  display: block;
  margin-top: 0.5em;
  font-size: 0.85em;
  color: #777;
  font-style: italic;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.press-section {
  margin-bottom: 40px;
}

.press-section h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.press-section ul {
  list-style: none;
  padding-left: 1em;
}

.press-section ul > li::before {
  content: '★';
  color: #CCCCFF;
  margin-right: 8px;
}

.press-section ul ul {
  list-style: none;
  padding-left: 1.5em;
  margin-top: 0.25em;
}

.press-section ul ul li::before {
  content: '–';
  color: #999;
  margin-right: 0.5em;
}

/* Shimmer */
.shimmer {
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(to right, #FFB6C1, #E6E6FA);
  background-size: 500% 100%;
  animation: shimmer 0.5s infinite linear;
}

@keyframes shimmer {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 300% 0;
  }
}

/* Releases */
main.release-container {
  flex: 1;
  max-width: 500px;
  margin-left: 0px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 12px;
}

.release-item {
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.release-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.release-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

iframe {
  border: none;
  width: 100%;
  height: 250px;
}

/* Floating Image */
.floating-image {
  position: absolute;
  width: auto;
  height: auto;
  max-width: 30px;
  max-height: 30px;
  transition: left 1.5s ease, top 1.5s ease, opacity 1.5s ease;
  z-index: 10;
}

/* Fixed Return Button */
.fixed-return {
  position: fixed;
  top: 80%;
  left: 100px;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  text-decoration: none;
  color: black;
}


.content-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.content-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .site-header,
  .menu {
    width: 100%;
    margin-left: 0;
    height: auto;
  }

  .page-wrapper {
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }

  .submenu,
  .has-submenu:hover .submenu {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    transition: none !important;
  }
}
