@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&display=swap');

html, body {
  margin: 0;
}

body {
  background-image: url('/images/Difraccion.webp');
  background-size: 230% auto;

  background-position: center;
  background-attachment: fixed;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}


.container {
  padding: 40px;
}

.badge-link {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.badge-link img {
  display: block;
}

.badge-link:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px #00f5ff) drop-shadow(0 0 16px rgba(0,245,255,0.5));
}

.candelabro {
  position: fixed;
  left: 0;
  top: -65px;
  z-index: 2;

}

/* ===== HERO ===== */

.hero {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  box-sizing: border-box;
  /*background-image: url('/images/anuelpresume.png');*/
  background-size: 50% auto;
  background-position: center;
  padding: 40px;
  border-radius: 4px;
  margin-bottom: 48px;
}

.hero-text {
  flex: 1 1 60%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero p {
  max-width: 700px;
  color: #b7b7c9;
  line-height: 1.7;
  margin-top: 24px;
  font-size: 1.1rem;
  text-align: center;
}

/* ===== SECTION ===== */

.section {
  margin-bottom: 48px;
  border-top: 1px dashed rgba(0,245,255,0.12);
  padding-top: 48px;
}

.section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.section-heading {
  display: block;
  margin-bottom: 24px;
}

/* ===== POSTS ===== */

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-image: url('/images/841xq0frqn9mm.jpg');
  background-position: center;
  border-radius: 4px;
}

.post {
  background: rgba(0,0,0,0.18);
  padding: 16px;
  border: 2px inset rgba(255,255,255,0.06);
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.post h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.post hr {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 8px 0;
}

.post p {
  margin: 0;
  color: #d7d7e3;
  line-height: 1.6;
}

/* ===== MUSIC LIST ===== */

.music-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sc-iframe {
  width: calc(33.33% - 7px);
  height: 120px;
  border: none;
  display: block;
}

/* ===== MARQUEE ===== */

.hero-text a img {
  height: 90px;
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0%); }
}

.marquee {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  align-self: flex-start;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: scroll-right 12s linear infinite;
}

.marquee a {
  display: inline-block;
  white-space: nowrap;
  margin-right: 150px;
}

/* ===== MOBILE ===== */

@media (max-width: 760px) {
  .hero { flex-direction: column; align-items: stretch; }
  .hero-text { order: 1; }
}
