@charset "utf-8";
/* CSS Document */
body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #111;
}
.hero {
    background: url('imagenes/gerardo-cajiga-estrada-on-stage.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}
.hero img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-bottom: 20px;
}
.album-card {
    background: #222;
    border: none;
    border-radius: 10px;
}
.footer {
    background: #000;
    padding: 20px 0;
    text-align: center;
}
.footer a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}
.footer a:hover {
    color: #f39c12;
}

.internal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.author-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.back-link {
  font-size: 1rem;
  text-decoration: none;
  color: #ff4081;
  font-weight: bold;
  transition: color 0.3s ease;
}
.back-link:hover {
  color: #e91e63;
}

.lyrics-card {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
}

.lyrics-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

.lyrics-text p {
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.lyrics-credit {
  margin-top: 2rem;
  font-style: italic;
  text-align: right;
}

.listen-section {
  margin-top: 2rem;
  text-align: center;
}

.platform-logos {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.platform-logos img {
  width: 40px;
  height: auto;
  transition: transform 0.3s ease;
}

.platform-logos img:hover {
  transform: scale(1.1);
}
.platform-logos img {
    height: 50px;   /* o el alto que quieras */
    width: auto;    /* mantiene proporción */
    vertical-align: middle;
  }
.lyrics-card {
  background-color: #1c1c1c; /* gris oscuro, consistente con look rock/blues */
  color: #f5f5f5; /* texto claro para contrastar */
  padding: 2rem;
  border-radius: 15px;
}

.lyrics-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 1rem;
}